I have an autoresponder and with a cron job I want to schedule broadcast messages to run automatically.
I have this command to do this task:
php -q /home/pixelmo/public_html/radoslaw/atrp/broadcastmailer.php
When I manually run this from a command line it runs ok and my message is broadcasted.
But when I run it through the cron job with the following command:
59 * * * * php -q /home/pixelmo/public_html/radoslaw/atrp/broadcastmailer.php (to run it every hour)
i see that my message is not sent and I get this output in my mailbox:
Subject: Cron <pixelmo@luther> php -q /home/pixelmo/public_html/radoslaw/atrp/broadcastmailer.php
(...)
php: /usr/lib/libmysqlclient.so.14: version `libmysqlclient_14' not found (required
by php)
What could be the problem?