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

后端 未结 8 1576
既然无缘
既然无缘 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:28

    Instead of XAMPP you may use LAMP(Linux Apache MySQL PHP) mostly. Using LAMP you may also face this problem.

    In my case(using Ubuntu 15.10), I had configured/set post_max_size, upload_max_filesize, max_execution_time, max_input_time, memory_limit following my needs using php.ini file which is located at /etc/php5/apache2/php.ini

    But still I was faced this problem. Then solved the problem using config.default.php file, where you can find out like this line below:

    $cfg['ExecTimeLimit'] = 300; Make it to

    $cfg['ExecTimeLimit'] = 0;

    Note: You can locate config.default.php file via your terminal(Ctrl+Alt+T) by this commandlocate config.default.php possible path is /usr/share/phpmyadmin/libraries/config.default.php

提交回复
热议问题