Viewing 5 replies - 1 through 5 (of 5 total)
  • What’s the error message you are receiving?

    Thread Starter thias79

    (@thias79)

    I do not have the error message in front of me right now. But my guess is it has something with the timeout limit to do, when to load the XML file.

    Edit the wp-config.php file and add the following line before the comment that says:
    /* That’s all, stop editing! Happy blogging. */

    set_time_limit ( 1000 );

    Thread Starter thias79

    (@thias79)

    Just the solution did not work. I wonder if it is in php.in file I will make the changes?

    Thread Starter thias79

    (@thias79)

    I found a solution that follows.
    edit this file wp-includes \ class http.php and then add That code just before 1512 or 1511 like below:

    1511 set_time_limit (5000);
    1512 curl_exec( $handle );
    1513 $theHeaders = WP_Http::processHeaders( $this->headers, $url );
    1514 $theBody = $this->body;
    1515 $bytes_written_total = $this->bytes_written_total;

    The thing is that there is no code that looks like this does. I do not even have that many lines in my own wo-includes / class http.php file.
    Very strange.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Get a error message when I try to run Theme Unit test data’ is closed to new replies.