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
  • 89,708
  • 20
  • 100
  • 143
NIrik Shan
  • 25
  • 5

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,214
  • 20
  • 110
  • 178