0

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.

RiggsFolly
  • 93,638
  • 21
  • 103
  • 149
NIrik Shan
  • 25
  • 1
  • 6

1 Answers1

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