Error from Cron Deamon

Everything related to Hesk - helpdesk software

Moderator: mkoch227

Post Reply
plarsen
Posts: 1
Joined: Wed Dec 26, 2012 11:54 am

Error from Cron Deamon

Post 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
Klemen
Site Admin
Posts: 10136
Joined: Fri Feb 11, 2005 4:04 pm

Re: Error from Cron Deamon

Post 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.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Post Reply