If you facing the error ‘Fatal error: Maximum execution time of 30 seconds exceeded’
Possible reasons :
– PHP taking too much time to respond to the browser.
– RAM on your desktop/laptop is not enough.
We can fix this by following simple steps:
- Open a file ‘ php.ini ‘ in your Editor, File located under ‘xampp/php/’ folder
- Find a line ‘max_execution_time’ .
- Replace default value of max_execution_time=30 to max_execution_time=120
- Save this file and stop apache server in xamp control panel
- Now re-start apache server in xampp control panel.
- This way we have increased default php execution time in our localserver(XAMPP)
Find Below php.ini file screenshot :

Like this:
Like Loading...
Related