-5

Fatal error: Maximum execution time of 30 seconds exceeded in -

D:\xampp\htdocs\website.com\wp-includes\class-http.php on line 1513

1513 line $theHeaders = WP_Http::processHeaders( $this->headers, $url );
Hirdesh Vishwdewa
  • 2,334
  • 1
  • 19
  • 33
  • 4
    Yes, and......? Do you expect us to be able to slow down time or something? – Marc B Aug 14 '15 at 19:47
  • @MarcB Wonderful comment. Thanks. – arkascha Aug 14 '15 at 19:48
  • possible duplicate of [Fatal error: Maximum execution time of 30 seconds exceeded](http://stackoverflow.com/questions/5164930/fatal-error-maximum-execution-time-of-30-seconds-exceeded) – rnevius Aug 14 '15 at 20:35

1 Answers1

2

Seems that $this->headers is holding tons of headers. that WP function loops over the headers in order to process them. Either increase the execution time in your ini or by ini_set (which I don't recommend), or check why $this->headers takes so long to process.

And, add more code, with that single line of code it will be impossible to SO users to detect the root cause of your problem.

taxicala
  • 21,408
  • 7
  • 37
  • 66