phpMyadmin 中的最大执行时间

Maximum execution time in phpMyadmin(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 中的最大执行时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)