Why this message appears frequently ? Does it occurs when code is error or server is overloaded ? How can we decrease load in PHP server? How to solve this problem? please help me.
Asked
Active
Viewed 2,661 times
0
-
No it occurs if a script runs for more than 30 seconds – RiggsFolly Mar 25 '17 at 17:14
-
1PS: Dont spam tags, surley you are not using all these frameworks on the same site at the same time!!!!!???????? – RiggsFolly Mar 25 '17 at 17:15
-
And a google search is always a good idea before you ask a question. Or if all else fails a look at the manual – RiggsFolly Mar 25 '17 at 17:16
-
@RiggsFolly Or maybe they are and that's why it's taking too long... – Niet the Dark Absol Mar 25 '17 at 17:19
1 Answers
1
See PHP's set_time_limit(100);
method:
Set the number of seconds a script is allowed to run. If this is reached, the script returns a fatal error. The default limit is 30 seconds or, if it exists, the max_execution_time value defined in the php.ini.

Dave
- 28,833
- 23
- 113
- 183