Viewing 2 replies - 46 through 47 (of 47 total)
  • @djadan: you must open the restriction for server ip adresses 127.0.0.1 and the other. Because the PHP Connects itself over a http request. The WordPress Cron works simmilar.

    I came accross this problem, it was caused by an .htaccess rule to remove query parameters from URLs:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{QUERY_STRING} !=""
    RewriteCond %{QUERY_STRING} !^p=.*
    RewriteCond %{QUERY_STRING} !^s=.*
    RewriteCond %{REQUEST_URI} !^/wp-admin.*
    RewriteRule ^(.*)$ /$1? [R=301,L]
    </IfModule>
Viewing 2 replies - 46 through 47 (of 47 total)
  • The topic ‘Job “Job with ID 2” has started, but not responded for 10 seconds error’ is closed to new replies.