codeigniter-log-viewer
codeigniter-log-viewer copied to clipboard
cant access previous log files
Hi
I was having a problem where I couldn't access the previous log files, it turned out that it was because I had both these settings as false in the config
$config['allow_get_array'] = FALSE;
$config['enable_query_strings'] = FALSE;
there are security considerations to switching these to true, and it's not required at all for the rest of the app so seems silly to turn it on just for this one function.
Is there any other way of accessing the previous log files without having to turn these on?
Thnaks