Home > Database > Mysql Tutorial > How Can I Resolve the 'Maximum Execution Time Exceeded' Error in phpMyAdmin?

How Can I Resolve the 'Maximum Execution Time Exceeded' Error in phpMyAdmin?

Patricia Arquette
Release: 2024-12-05 02:31:11
Original
330 people have browsed it

How Can I Resolve the

PHPMyAdmin Maximum Execution Time Limit

When attempting to execute certain queries in phpMyAdmin, users may encounter the error:

"Fatal error: Maximum execution time of 60 seconds exceeded."

This error typically occurs due to excessively large tables containing millions of records.

While editing the "max execution time" value in php.ini may not resolve the issue, there is an alternative solution. Navigate to the file at the following path:

  • xamppphpMyAdminlibrariesconfig.default.php

Locate the line:

  • $cfg['ExecTimeLimit'] = 600;

Modify the value after '600' to a higher number, such as '6000'. This extends the maximum execution time limit.

By adjusting the $cfg['ExecTimeLimit'] value in config.default.php, the error associated with the maximum execution time in phpMyAdmin can be resolved. Please note that setting this value to '0' removes any time limit restrictions.

The above is the detailed content of How Can I Resolve the 'Maximum Execution Time Exceeded' Error in phpMyAdmin?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template