Page 1 of 1

Error from Cron Deamon

Posted: Wed Dec 26, 2012 12:01 pm
by plarsen
Hello

I just set up a Cron job (running hesk_pop3.php every 5 minutes) to allow Hesk to read from my POP3 mail account.

Every time the job runs I get a message from Cron Deamon saying:

Cannot load Zend Extension Manager - it was built with configuration 1.2.0, whereas running engine is API220090626,NTS

Does any one have an idea how to solve this issue, so my mailbox isn't overloaded with these messages from Cron Deamon?

Best regards

Peter Larsen

Re: Error from Cron Deamon

Posted: Wed Dec 26, 2012 2:12 pm
by Klemen
It's a PHP startup (configuration) error.

You can add this to the end of your Cron command to ignore any notifications:

Code: Select all

>/dev/null 2>&1
So, instead of for example

Code: Select all

/home/user/public_html/hesk/inc/mail/hesk_pop3.php
use

Code: Select all

/home/user/public_html/hesk/inc/mail/hesk_pop3.php >/dev/null 2>&1
as the Cron command.

This should suppress any messages.