Me too still no cron jobs working, I assume it requires an update as other people have the same issue so I’m thinking it’s not a conflict of another plug-in or widget. Perhaps it’s the new version of WordPress 3.7.1 that is stopping the cron job.
hey guys… try to make Cron with this code:
/usr/bin/wget -O – -q -t 1 http://yoursite.org/wp-content/plugins/wp-o-matic/cron.php?code=fe012233
dont forget change domain name 😀
My host blocks a lot of commands from cron such as wget. Neither could I run a cron script with a GET parameter. I ended up running a command line script from cron…
/usr/local/bin/php -f /home/MyWebsite/croncall.php
This script accesses the wp-o-matic cron.php webpage via a file_get_contents
<?php
// croncall.php
file_get_contents('http://example.com/wp-content/plugins/wp-o-matic/cron.php?code=1234567b');
?>
Its just another way of automating the script. I hope it helps someone. Note that the paths may change for different hosts.