Reputation: 101
Fatal error: Maximum execution time of 30 seconds exceeded in E:\xampp\phpMyAdmin\libraries\select_lang.lib.php on line 458
i changed max_execution_time = 6000 in php.ini file. After changing also same error.
Upvotes: 1
Views: 24547
Reputation: 1978
There is an easy way to solve this problem.
Steps:
Open XAMPP Control Panel.
Click on CONFIG tab of APACHE Service.
Select PHP (php.ini) from the DropDown.
Now a file will open in your default Text Editor.
Search for the keyword MAX_EXECUTION_TIME.
By default it is set to : 30 , make it a higher value. (160 Worked for me).
Save the file (CTRL+S).
Stop All service in XAMPP Control Panel.
Quit XAMPP.
Restart XAMPP.
Restart ALL Services (i.e. APACHE)
Refresh your WordPress Dashboard.
You are done.
Upvotes: 2
Reputation: 69
I had the same error and this is what i found helpful, just in case someone stumbles upon this. 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.
credits to @user1900623 and simon-east
Upvotes: 3
Reputation: 583
You can change the max_execution_time
in your php.ini. The path should be E:\xampp\php\phpVERSION\php.ini if i'm correct.
Upvotes: 2