I wanted to setup a cron job inside my module. I followed the instructions on Magento wiki - how_to_setup_a_cron_job, but my cron job is simply not executing.
This i
In your modules config.xml put the following:
config.xml
Roomstory_Invoice_Model */10 * * * * roomstoryinvoicecron/observer::setStatus
In app/code/local/Roomstory/Invoice/Model/Observer.php add the following:
app/code/local/Roomstory/Invoice/Model/Observer.php
Make sure logging is enabled and it should work, check the log to be sure ;)