I am getting an error "script timeout passed..." when trying to import a database.
I have already tried increasing various limits like max_size max_filesize max_time mem_limit in php.ini. But the problem remains.
Any help appreciated.
I am getting an error "script timeout passed..." when trying to import a database.
I have already tried increasing various limits like max_size max_filesize max_time mem_limit in php.ini. But the problem remains.
Any help appreciated.
Pretty easy and simple step could be a solution:
Execution Time Limit needs to be set as 0
in config.default.php
file. Which looks like $cfg['ExecTimeLimit'] = 300;
Make it to
$cfg['ExecTimeLimit'] = 0;
Location of that file supposed to be at /usr/share/phpmyadmin/libraries
Hope this helps.
The accepted answer did not resolve this issue for me, but after some research I found a solution that did; in nginx server default config file after listen port #
, add these lines:
fastcgi_read_timeout 3600; //ms to wait
fastcgi_send_timeout 3600;
<?php phpinfo() ?>
for those values? – Jun 03 '16 at 15:23