How to Increase the timeout in phpMyAdmin
At times when you are busy running some query or importing/exporting some data it is very annoying to see the script timeout with default 300sec processing time. Well there is a simple solution to fix that. Modify or add the following variable in the config.inc.php file located under C:\xampp\phpMyAdmin folder for a xamp installation on Windows.
$cfg['ExecTimeLimit'] = 0; /* 0 stands for unlimited time of execution*/
You can also just extend the time to what ever you want if unlimited is not your way of doing things. Here is another example:
$cfg['ExecTimeLimit'] = 600; /* 600 seconds */
The file config.inc.php may be found under different paths based on your OS and installations. On my GNU/Linux server the path is /etc/phpMyAdmin/config.inc.php
$cfg['ExecTimeLimit'] = 0; /* 0 stands for unlimited time of execution*/
You can also just extend the time to what ever you want if unlimited is not your way of doing things. Here is another example:
$cfg['ExecTimeLimit'] = 600; /* 600 seconds */
The file config.inc.php may be found under different paths based on your OS and installations. On my GNU/Linux server the path is /etc/phpMyAdmin/config.inc.php
Comments
Post a Comment