136

When I try to execute (some) queries in phpMyadmin I get this error

Fatal error: Maximum execution time of 60 seconds exceeded in C:\xampp\phpmyadmin\libraries\dbi\mysql.dbi.lib.php on line 140

because I have a very large table (over 9 millions records)

I have edited the file C:\xampp\php\php.ini

and changed the value of "max execution time" from 60 to 1000 then restarts the PHP and still have the same error.

Any solution?

Community
  • 1
  • 1
ahmed
  • 14,316
  • 30
  • 94
  • 127

12 Answers12

257

I have the same error, please go to

xampp\phpMyAdmin\libraries\config.default.php

Look for : $cfg['ExecTimeLimit'] = 600;

You can change '600' to any higher value, like '6000'.

Maximum execution time in seconds is (0 for no limit).

This will fix your error.

Simon East
  • 55,742
  • 17
  • 139
  • 133
user1900623
  • 2,594
  • 1
  • 13
  • 3
  • 1
    You can use code formatting to make it clear what is code and what is not as well :) – span Dec 13 '12 at 11:07
  • 32
    It is pretty clear (in the header of the file) that you should not edit this file. Instead, you should edit config.inc.php, adding this line, as it says in other answer – dsnunez Apr 16 '15 at 18:25
  • 1
    Check my answer below. That's the way to go ;) – M_R_K Apr 26 '15 at 12:23
  • 3
    Adding this to the `config.inc.php` did not do the job for me. Modifying the `config.default.php` helped and worked. – Spurious Aug 05 '16 at 17:31
  • 3
    For wamp path is `wamp64\apps\phpmyadmin4.6.4\libraries\config.default.php` OR you can find path of your phpmyadmin directory by clicking `wamp tray icon > Apache > Alias Directories` and edit phpmyadmin. Also as mentioned by dsnunez, it's better to edit `config.inc.php` --edit-- editing `config.inc.php` didn't work for me – AbsarAkram Dec 12 '17 at 12:43
  • Just need to edit max_execution_time=60 in php.ini file & restart Apache server. That's worked for me. – Kliptu Nov 01 '18 at 06:48
  • I found config.default.php and I set the value, then restart Wamp but it is still the same. Is there some cache or something? – Čamo May 12 '23 at 21:28
146

For Xampp version on Windows

Add this line to xampp\phpmyadmin\config.inc.php

$cfg['ExecTimeLimit'] = 6000;

And Change xampp\php\php.ini to

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

And change xampp\mysql\bin\my.ini

max_allowed_packet = 200M

Please do not forget to upvote this answer if it was helpful :)

M_R_K
  • 5,929
  • 1
  • 39
  • 40
  • 1
    I've been having the exact same problems except with a much smaller dataset (~120k rows) - your answer definitely made things much better :). – Rob Nov 07 '13 at 11:35
  • I got the script timeout for xampp for Windows instantly when pressing Browse on a table ~ 130mb – Matthew Lock Nov 13 '15 at 08:44
  • 1
    Sadly `$cfg['ExecTimeLimit'] = 6000;` seems to have zero effect on my installation. I'd rather set it locally than in php.ini which applies to the whole server, but maybe that's the only option. – Simon East Jun 16 '17 at 01:15
  • 1
    Not sure what all the does, but you get my vote :-) – Iwan Ross Apr 10 '20 at 11:09
  • 1
    This should be the "perfect" accepted answer. – Eslam Sameh Ahmed Apr 07 '22 at 13:52
  • 1
    This worked for me in my XAMPP, although matched the existing code style: $cfg['Servers'][$i]['ExecTimeLimit'] = 6000; – AdheneManx Aug 01 '23 at 22:52
15

I faced the same problem while executing a curl. I got it right when I changed the following in the php.ini file:

max_execution_time = 1000 ;

and also

max_input_time = 1000 ;

Probably your problem should be solved by making above two changes and restarting the apache server.

Even after changing the above the problem persists and if you think it's because of some database operation using mysql you can try changing this also:

mysql.connect_timeout = 1000 ; // this is not neccessary

All this should be changed in php.ini file and apache server should be restarted to see the changes.

Sony Mathew
  • 2,929
  • 2
  • 22
  • 29
8

Your change should work. However, there are potentially few php.ini configuration files with the 'xampp' stack. Try to identify whether or not there's an 'apache' specific php.ini. One potential location is:

C:\xampp\apache\bin\php.ini

DylanWoods
  • 23
  • 2
Brian
  • 1,337
  • 9
  • 25
  • 1
    on my xampp that file in `C:\xampp\php\php.ini` and goto line number *442* (approximately - some time that line number will be change after the manual edit) `max_execution_time = 1000` but this is not work for me. Then i'll try this on C:\xampp\phpMyAdmin\config.inc.php `$cfg['Servers'][$i]['bs_temp_blob_timeout'] = 1200;` – Elshan Feb 22 '14 at 20:11
6

ini_set('max_execution_time', 0); or create file name called php.ini and enter the first line max_execution_time=0 then save it and put the file in your root folder of your application.

That's it. Good luck.

Karthikeyan
  • 61
  • 1
  • 2
5

Changing php.ini for a web application requires restarting Apache.

You should verify that the change took place by running a PHP script that executes the function phpinfo(). The output of that function will tell you a lot of PHP parameters, including the timeout value.

You might also have changed a copy of php.ini that is not the same file used by Apache.

Bill Karwin
  • 538,548
  • 86
  • 673
  • 828
4

What worked for me on WAMP was modifying file: \Wamp64\alias\phpmyadmin.conf, lines:

 php_admin_value max_execution_time 600
 php_admin_value max_input_time 600

I did not have to change the library file.

Casso
  • 139
  • 6
3

Well for Wamp User,

Go to: wamp\apps\phpmyadmin3.3.9\libraries

Under line 536, locate $cfg['ExecTimeLimit'] = 0;

and change the value from 0 to 6000. e.g

$cfg['ExecTimeLimit'] = 0;

To

$cfg['ExecTimeLimit'] = 6000;

Restart wamp server and phew.

It works like magic !

Sandeep
  • 1,504
  • 7
  • 22
  • 32
Olasunkanmi
  • 902
  • 15
  • 23
3

In php.ini you must check mysql.connect_timeout either. That's responsible for socket closing and returning the Fatal. So, for example, change it to:

mysql.connect_timeout = 3600

That time will be always counted in seconds, so in my example you have 1 hour.

andymnc
  • 103
  • 7
2

'ZERO' for unlimited time.

C:\Apache24\htdocs\phpmyadmin\libraries\Config.class.php

/**
 * maximum execution time in seconds (0 for no limit)
 *
 * @global integer $cfg['ExecTimeLimit']
 */
$cfg['ExecTimeLimit'] = 0;

You could also import the large file right from MySQL as query or a PHP query.

500,000 rows just took me 18 seconds to import on local server, using this method.

(create table first) - then:

LOAD DATA LOCAL INFILE 'Path_To_Your_File.csv' 
INTO TABLE Your_Table_Name 
FIELDS TERMINATED BY ',' 
LINES TERMINATED BY '\n' 
1

Probabily you are using XMAPP as service, to restart XMAPP properly, you have to open XMAPP control panel un-check both "Svc" mdodules against Apache and MySQL. Then click on exit, now restart XMAPP and you are done.

Jamal
  • 306
  • 4
  • 15
1

Go to xampp/php/php.ini

Find this line:

max_execution_time=30

And change its value to any number you want. Restart Apache.

Ari
  • 4,643
  • 5
  • 36
  • 52