|
Monday Nov 05, 2007 Solution for script time out. Some time back I had problems when I am uploading files, when I am doing some big process bla bla bla always PHP gives a message "PHP Fatal error: Maximum execution time of xx seconds exceeded".
OK, then I was starting to search and I did many things, but for me the good solution was: adding a small line to top of the script
set_time_limit(0);
0 sets no time limit, else the number is the number of seconds the script is permitted to execute before failing with this error.
Please comment....
Source: SafSoft
|