Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am downloading a JSON file from an online source and and when it runs through the loop I am getting this error:

Fatal error: Maximum execution time of 30 seconds exceeded in C:\wamp\www\temp\fetch.php on line 24

Here is my code: http://pastebin.com/z2znKUMt

share|improve this question
2  
possible duplicate of Maximum execution time of 60 seconds exceeded which is a duplicate of three others already. Please use the search function before asking. – Gordon Mar 2 '11 at 8:14
@Gordon sorry will keep it in mind next time – Harsha M V Mar 2 '11 at 8:23

4 Answers

up vote 57 down vote accepted

Your loop might be endless. If it is not, you could extend the maximum execution time like this:

ini_set('max_execution_time', 300); //300 seconds = 5 minutes
share|improve this answer
1  
Thanks you. no it has just 300 off loops to do :) – Harsha M V Mar 2 '11 at 8:16
Yeah thanks. solved the error :) – Harsha M V Mar 2 '11 at 8:48
Thanks, that did it ;) – Mirko May 14 at 16:28

I had the same problem and solved it by changing the value for the param max_execution_time in php.ini, like this:

max_execution_time = 360     ; Maximum execution time of each script, in seconds (I CHANGED THIS VALUE)
max_input_time = 120    ; Maximum amount of time each script may spend parsing request data
;max_input_nesting_level = 64 ; Maximum input variable nesting level
memory_limit = 128M      ; Maximum amount of memory a script may consume (128MB by default)

I hope this could help you.

Güilber J. Castillo

share|improve this answer

Your script is timing out. Take a look at the set_time_limit() function to up the execution time. Or profile the script to make it run faster :)

share|improve this answer
can u explain what u mean by profile the script plz – Harsha M V Mar 2 '11 at 8:22

you cando it easily with whm . jusst got to whm----->service configuration---------->php configuration editor-------max_execution_time----->30(it is default change it to whatever value u want)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.