0
votes

I use XAMPP and changed the php.ini in C:\xampp\php\php.ini:

from -> max_execution_time=30

to -> max_execution_time=3000

I still get the error: Fatal error: Maximum execution time of 30 seconds exceeded

What can I do?

1
Have you restarted apache service? - Ravi
Please refer this link: stackoverflow.com/questions/5164930/… - Ravi

1 Answers

1
votes

Ok, it is not php.ini only. I had to add ini_set('max_execution_time', 120); to my php file too.