Maximum execution time in phpMyadmin(phpMyadmin 中的最大执行时间)
问题描述
当我尝试在 phpMyadmin 中执行(某些)查询时出现此错误
When I try to execute (some) queries in phpMyadmin I get this error
致命错误:超过 60 秒的最大执行时间C:xamppphpmyadminlibrariesdbimysql.dbi.lib.php 在第 140 行
Fatal error: Maximum execution time of 60 seconds exceeded in C:xamppphpmyadminlibrariesdbimysql.dbi.lib.php on line 140
因为我有一个非常大的表(超过 900 万条记录)
because I have a very large table (over 9 millions records)
我已经编辑了文件 C:xamppphpphp.ini
I have edited the file C:xamppphpphp.ini
并将最大执行时间"的值从 60 更改为 1000,然后重新启动 PHP,仍然有同样的错误.
and changed the value of "max execution time" from 60 to 1000 then restarts the PHP and still have the same error.
有什么办法吗?
推荐答案
我也有同样的错误,请转到
I have the same error, please go to
xamppphpMyAdminlibrariesconfig.default.php
xamppphpMyAdminlibrariesconfig.default.php
寻找:$cfg['ExecTimeLimit'] = 600;
您可以将600"更改为任何更高的值,例如6000".
You can change '600' to any higher value, like '6000'.
以秒为单位的最大执行时间为(0 表示无限制).
Maximum execution time in seconds is (0 for no limit).
这将解决您的错误.
这篇关于phpMyadmin 中的最大执行时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:phpMyadmin 中的最大执行时间


基础教程推荐
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01