Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

phpmyadmin: how to remove time limit to import big databases

how can I remove the time limit for the import operation in phpmyadmin ?

I'm not able to upload a big database because of the limit and I have to login again in the database.

Thanks

like image 517
aneuryzm Avatar asked Feb 27 '23 13:02

aneuryzm


2 Answers

I use MySQL BigDump

Worked well for me yesterday!

like image 70
Liam Spencer Avatar answered Mar 15 '23 09:03

Liam Spencer


you must open config.inc.php file in phpmyadmin root folder. add this line:

$cfg["ExecTimeLimit"]=36000;

adjusted the time limit will be 10 hours.

if you want to set an infinity time for timelimit you can use this

$cfg['ExecTimeLimit'] = 0;
like image 43
Ahmet Erkan ÇELİK Avatar answered Mar 15 '23 10:03

Ahmet Erkan ÇELİK