Related questions
Increase max execution time for php
I have added set_time_limit(0); function to increase execution time but its executing only 2-3 minutes maximum.
error_reporting(E_ALL);
error_reporting(1);
set_time_limit(0);
I want to search links from a site which is taking a long …
Enabling error display in PHP via htaccess only
I am testing a website online.
Right now, the errors are not being displayed (but I know they exist).
I have access to only the .htaccess file.
How do I make all errors to display using my .htaccess file?
I …
CodeIgniter removing index.php from url
My current urls look like this [mysite]index.php/[rest of the slug].
I want to strip index.php from these urls.
mod_rewrite is enabled on my apache2 server. In config, $config['index_page'] = '';
My codeignitor root .htaccess …