📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv11.demodesign.com.tr
/
catalog
/
controller
/
event
📝
debug.php
← Geri Dön
<?php class ControllerEventDebug extends Controller { public function before(&$route, &$args) { if ($route == 'common/home') { // add the route you want to test $this->session->data['debug'][$route] = microtime(); } } public function after($route, &$args, &$output) { if ($route == 'common/home') { // add the route you want to test if (isset($this->session->data['debug'][$route])) { $log_data = array( 'route' => $route, 'time' => microtime() - $this->session->data['debug'][$route] ); $this->log->write($log_data); } } } }
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula