Script timeout passed, if you want to finish import, please resubmit the same file and import will resume
If you are importing your database using Phpmyadmin, then there's a configuration file for it:
\phpmyadmin\libraries\config.default.php
Open this configuration file in any editor and change $cfg['ExecTimeLimit'] = 300;
to $cfg['ExecTimeLimit'] = 0;
Restart your localhost, now you don't have any time limit.
Or you can use MySQL command line to import your unzipped SQL file directly, something like below:
mysql -u username -p database_name < my_unzipped_import_file.sql
Go to xampp/phpMyAdmin/libraries/config.default.php
find $cfg['ExecTimeLimit'] = 300;
line no 695 and replace $cfg['ExecTimeLimit'] = 0;
Xampp in Ubuntu
If you are importing your database using PhpMyAdmin
, then there's a configuration file for it:
/opt/lampp/phpmyadmin/libraries/config.default.php
Open this configuration file in any editor and change $cfg['ExecTimeLimit'] = 300
; to $cfg['ExecTimeLimit'] = 0
;
Restart your localhost
, now you don't have any time limit.