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

后端 未结 8 1577
既然无缘
既然无缘 2021-01-30 11:00

I have a database Un-zipped size 50mb zipped size 7mb So when I try to import the database zipped(7mb) after few minutes it is throwi

8条回答
  •  旧巷少年郎
    2021-01-30 11:36

    for lamp ubuntu :- first go to config.default.php location you can find by execute

    locate config.default.php
    

    in my case its locate at /usr/share/phpmyadmin/libraries

    cd /usr/share/phpmyadmin/libraries
    

    now edit config.default.php file in my case i use gedit you can install by

    sudo apt install gedit
    
    sudo gedit config.default.php
    

    no search for ExecTimeLimit in file change $cfg['ExecTimeLimit'] = 300; to

    $cfg['ExecTimeLimit'] = 0; 
    

    save and close it, restart server by

    sudo service apache2 restart
    

提交回复
热议问题