Skip to main content

Magento Generate Google Sitemap using Cron

I had a problem with generating the Google sitemap using cron job. To do that you can simply change following database value.


SELECT * FROM core_config_data
WHERE path = 'crontab/jobs/sitemap_generate/schedule/cron_expr'


Change the value as you set time in cron jobs.

EX: Generate the Sitemap for every 5 minutes

value = */5 * * * *


That's it. Now you have to worry about cron is working or not. Just type following in your browser and hit enter.


http://youresite.com/cron.php



Comments