Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Giving script timeout passed on database import

I am using wamp server.I am trying to import the database in phpmyadmin. but its showing

Script timeout passed, if you want to finish import, please resubmit same file and import will resume.

And if i check the database tables only few tables are imported..How to resolve this.Thanks in advance

like image 595
user2720197 Avatar asked Nov 22 '13 08:11

user2720197


1 Answers

Add following code

$cfg['ExecTimeLimit'] = 0;

in your phpmyadmin config.inc.php and it will solve your timeout problem, this should work on both XAMPP and WAMP

like image 90
Adrian Avatar answered Nov 03 '22 14:11

Adrian