PHP Warning on fresh install (Connection timed out)

The answer is apparently YES, I should worry. After some research, I’ve found that the warning seems to be related to misconfigurations on the server that WordPress is hosted on (ie. a problem with my server, not WordPress).

Common misconfigurations:

  1. Server doesn’t have DNS, and so it can’t figure out who “example.com” is, even though it is itself.
  2. Server administrators, in a misguided attempt at security, have blocked “loopback” requests, so it can’t actually make a call back to itself.
  3. Server is running something called “mod_security” or similar, which actively blocks the call due to brain-dead configuration.

The problem in my case was actually caused by my firewall (pfSense), which has “Disable NAT reflection” by default (listed as common reason #2).

On the server itself, I tried to reach myself using telnet, and the result was as follows:

$ telnet external.server.hostname.com 19235
Trying XXX.XXX.XXX.XXX...
telnet: Unable to connect to remote host: Connection timed out

To fix this, I had to uncheck Disable NAT reflection on my firewall. In my case, this was in the web interface of pfSense under System->Advanced->Firewall/NAT.
Source: http://forum.pfsense.org/index.php?topic=3473.0

enter image description here

Now I can connect to myself (on the server itself) through the firewall just fine:

$ telnet external.server.hostname.com 19235
Trying XXX.XXX.XXX.XXX...
Connected to external.server.hostname.com.
Escape character is '^]'.

and I am no longer getting the PHP warning about wp-cron.


I figured this out after reading this detailed answer regarding wp_cron, explaining how it works.

Short answer: Add this to the defines in your wp-config.php file:
define(‘ALTERNATE_WP_CRON’, true);

Really long answer, for masochists: Scheduled posts are not now, and
have never been, “broken”. The developers of WordPress cannot fix it
because there is nothing to fix.

The problem lies in the fact that your server, for some reason, cannot
properly execute the wp-cron process. This process is WordPress’
timing mechanism, it handles everything from scheduled posts to
sending pingbacks to XMLRPC pings, etc.

The way it works is pretty simple. Whenever a WordPress page loads,
internally WordPress checks to see if it needs to fire off wp-cron (by
comparing the current time with the last time wp-cron ran). If it does
need to run wp-cron, then it tries to make an HTTP connection back to
itself, calling the wp-cron.php file.

This connection back to itself is there for a reason. wp-cron has a
lot of work to do, and that work takes time. Delaying the user seeing
his webpage while it does a bunch of stuff is a bad idea, so by making
that connection back to itself, it can run the wp-cron program in a
separate process. Since WordPress itself doesn’t care about the result
of the wp-cron, it only waits a second, then goes back to rendering
the webpage for the user. Meanwhile, wp-cron, having been launched,
does its work until it’s finished or it runs out of execution time.

That HTTP connection is where some badly configured systems fail.
Basically, WordPress is acting like a web browser. If your site was
http://example.com/blog, then WP will call
http://example.com/blog/wp-cron.php to start the process. However,
some servers simply can’t do that for some reason. Among the possible
reasons:

  1. Server doesn’t have DNS, and so it can’t figure out who “example.com” is, even though it is itself.
  2. Server administrators, in a misguided attempt at security, have blocked “loopback” requests, so it can’t actually make a call back to itself.
  3. Server is running something called “mod_security” or similar, which actively blocks the call due to brain-dead configuration.
  4. Something else.

The point is that for whatever reason, your web server is configured
in some non-standard way that is preventing WordPress from doing its
job. WordPress simply can’t fix that.

However, if you have this condition, there is a workaround. Add this
to the to defines in your wp-config.php file:

define('ALTERNATE_WP_CRON', true);

This alternate method uses a redirection approach, which makes the
users browser get a redirect when the cron needs to run, so that they
come back to the site immediately while cron continues to run in the
connection they just dropped. This method is a bit iffy sometimes,
which is why it’s not the default.

Source: http://wordpress.org/support/topic/scheduled-posts-still-not-working-in-282#post-1175405

As stated in this great and detailed post, if you have no control over your servers configuration or, if applicable, the environment – a workaround is to put

define('ALTERNATE_WP_CRON', true);

in your wp-config.php file.

Leave a Comment