I noticed that Bad Behaviour did block my WordPress’ wp-cron requests. There is a solution: Add your server’s IP address to the whitelist.inc.php variable $bb2_whitelist_ip_ranges:
$bb2_whitelist_ip_ranges = array( "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16", "<your-ip-here>", ); |