Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p><strong>1. Configuration scope</strong></p> <p>Check you configured the sitemap generation frequency in the right scope (default, website or storefront) and the other configuration scopes do not have other values.</p> <p><strong>2. Cron scheduling settings</strong></p> <p>Maybe unlikely, but possibly there might still be some cron tasks scheduled. The settings for this can be found under <code>Admin &gt; System &gt; Configuration &gt; System &gt; Cron</code>. Though you'd have to set those values pretty high. I believe the defaults (or at least sane) values are 15 / 20 / 15 / 10 / 60 / 600.</p> <p><strong>3. Cache? / Bugs</strong></p> <p>Another issue, as always with Magento, might be cache, clear the cache (sounds unlikely to me too).</p> <p>I do not know of any problems relating to this system, nor other things you might be able to do to fix this.</p> <p><strong>4. Debugging</strong></p> <p>The frequency option depends on a backend model to implement an <code>_afterSave()</code> method to handle the option. What it does is figure out the selected frequency / times and it makes a string that can be used for the cron configuration. It then saves this in <code>core_config_data</code>.</p> <p>To debug the aftersave function (to check why it is maybe not saving correcty) you will need to have the following class: <code>Mage_Adminhtml_Model_System_Config_Backend_Sitemap_Cron</code></p> <p>To check if the value is properly saved in the database you need to search for the following path: <code>crontab/jobs/sitemap_generate/schedule/cron_expr</code></p> <p>If you edit the database directly it will be overridden next time you save the sitemap generation settings.</p> <p><strong>Other</strong></p> <p>Next to that I can recommend this plugin to inspect the cron schedule table in the database. All it does is read the data in there (and offer some other neat little features) but it can be fairly usefull if you're not very familiar with the Magento code / database architecture. <a href="http://www.magentocommerce.com/magento-connect/aoe-scheduler.html" rel="nofollow">http://www.magentocommerce.com/magento-connect/aoe-scheduler.html</a></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload