首页 >数据库 >mysql教程 >如何修复大型 SQL 导入期间的 phpMyAdmin 超时?

如何修复大型 SQL 导入期间的 phpMyAdmin 超时?

Barbara Streisand
Barbara Streisand原创
2024-10-31 00:04:03636浏览

How to Fix phpMyAdmin Timeouts During Large SQL Imports?

对 phpMyAdmin 中大型 SQL 导入的超时进行故障排除

尽管调整了 PHP 配置设置,例如 post_max_size、upload_max_filesize、max_execution_time、max_input_time 和 memory_limit,在大型 SQL 脚本导入期间,您仍可能会遇到超时。

解决方案:

在这种情况下,问题可能出在 phpMyAdmin 的配置中。找到文件 phpmyadminlibrariesconfig.default.php 并进行以下更改:

<code class="php">$cfg['ExecTimeLimit'] = 300;</code>

将其更改为:

<code class="php">$cfg['ExecTimeLimit'] = 0;</code>

重新启动 phpMyAdmin 以应用更改。现在,脚本执行时间限制将被有效禁用,允许您导入大型 SQL 脚本而不会遇到超时。

以上是如何修复大型 SQL 导入期间的 phpMyAdmin 超时?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn