Unsere FAQs sind derzeit nur in englischer Sprache verfügbar. Wir sind dabei, diese Seiten zu übersetzen und veröffentlichen sie auch in Deutsch, wenn sie verfügbar sind.
Nuestra base de conocimientos sólo está disponible actualmente en inglés. Estamos en el proceso de traducir estas páginas y las publicaremos cuando estén disponibles.
Knowledge Base
Cron jobs do not run on Magento 1.8 after upgrade
This article describes how to resolve a problem that may occur after you upgrade a Magento installation to version 1.8.
Problem
After you upgrade a Magento installation to version 1.8, cron jobs do not appear to run. For example, you may notice that the following occurs:
- Catalog price rules are not updated.
- Newsletters are not sent.
- Google Sitemaps are not generated.
- Customer alerts are not sent.
- Currency rates are not updated.
Resolution
To work around this problem, follow these steps:
- Open the Magento cron.php file in a text editor. You can do this by logging in to your account using SSH, or if your account includes cPanel, from the cPanel File Manager.
- Locate the following code block around line 45:
$disabledFuncs = explode(',', ini_get('disable_functions'));
$isShellDisabled = is_array($disabledFuncs) ? in_array('shell_exec', $disabledFuncs) : true;
$isShellDisabled = (stripos(PHP_OS, 'win') === false) ? $isShellDisabled : true;
Copy the following line of code and paste it after the code block you located in step 2:
$isShellDisabled = true;
- Save the changes to the cron.php file and exit the text editor. The cron job should now run correctly.