MAMP phpmyadmin 上的脚本超时传递错误

Script timeout passed error on MAMP phpmyadmin

我正在尝试使用 MAMP 将这个 225MB 的 sql 文件上传到 phpmyadmin。 但是,我不断收到此错误

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

我已经像这样更改了 MAMP 中的 php.ini 文件:

max_execution_time = 6000
max_input_time = 6000
memory_limit = 1000M
post_max_size = 750M
upload_max_filesize = 750M

我还更改了 \phpmyadmin\libraries\config.default.php 中的设置,如下所示:

$cfg['ExecTimeLimit'] = 0;

是否有任何其他解决方案可以解决此问题?

谢谢。

我认为您需要将 config.default.php 中的执行时间限制更改如下:

$cfg['ExecTimeLimit'] = 3600; // whatever time you want to put as execution time

由于脚本 运行 超时,因此您必须增加其在 MAMP 中的执行时间并重新启动。

我自己 运行 遇到了这个问题,这是我的解决方法。

我正在使用 Mamp Pro,所以我在 mac 上使用 Finder 搜索栏搜索了 phpmyadmin

它找到了一个名为 config.inc.php 的文件。该文件位于 /Library/Application Support/appsolute/MAMP PRO/phpMyAdmin

然后我找到 $cfg['ExecTimeLimit'] 行并将值更改为 3600

保存文件。重新启动 Mamp Pro。数据库导入成功。