Magento cron not working

Magento cron not working

Adding cron job in magento is very simple. You have to add only few lines of code to run and schedule the cron
job.

add the following lines of code in the config.xml

<crontab>
		<jobs>
			<your_cron_tab>
				<schedule>
					<cron_expr>*/15 * * * *</cron_expr>
				</schedule>
				<run>
					<model>modulename/observer::methodtocall</model>
				</run>
			</your_cron_tab>
		</jobs>
</crontab>


The Above cron will run after each 15 minutes.

If Cron job is not running please check the module name and cron observer or method you are calling.


Advertisements

Add Comment

📖 Read More