This is a simple Log Viewer for viewing Code Igniter log files on the browser
Log Viewer for Codeigniter Application generated logs. Supports CI v3.1.9, (*1)
Inspired by https://github.com/SeunMatt/codeigniter-log-viewer, (*2)
Change Log:, (*3)
Release version: v1.0.0 Date: 18-July-2018 * You can change the log viewer path by passing path as constructor., (*4)
Install using composer, (*5)
composer require hi2rashid/codeigniter-log-viewer
, (*6)
Copy following line of code to any of your Codeigniter Controller, (*7)
In Welcome.php
Controller, (*8)
public function index() { $CILogs = new \CILogViewer\CILogViewer("/var/log/localhost/"); echo $CILogs->showLogs(); return; }
In Welcome.php
Controller, (*9)
public function index() { $CILogs = new \CILogViewer\CILogViewer($this->config->item('ci_log_path')); echo $CILogs->showLogs(); return; }
In application/config/config.php
Config file, (*10)
$config['ci_log_path'] = "/var/log/localhost/ci_log_path"
Also you need to make sure the directories /var/log/localhost/ci_log_path
created and writable, (*11)
In Terminal : sudo mkdir -p /var/log/localhost/ci_log_path
sudo chmod -Rf 777 /var/log/localhost/ci_log_path
(Make sure not to use 777 on production systems), (*12)
Just append ?rt=5000
(Example: http://localhost/codeigniter/welcome/logviewer?rt=5000) (5 seconds), (*13)