I'm receiving cron errors every minute in my mailbox specifying the following (and I quote):-

safe_mode is On, disable it
Please go to the GenDolTShooter Dolphin Troubleshooter and solve the problem.

Am I right in saying this is telling me that PHP Safe Mode is switched on and this is the reason for the email? Because in actual fact, safe mode is switched off and it even states this in the host parameters section in the admin tools panel of Boonex Dolphin 7.

Can anyone advise on what I can do to resolve this please? Is it a bug, should I report it in the bugs section?


I'm getting thousands of emails every day due to this.


Thanks
If you are using a local php.ini file to over-ride the master system settings, you can indicate this in your crontab.

Example:

Code:
0 0 * * * php -c /home/username/public_html/periodic/php.ini -q -f /home/username/public_html/periodic/cmd.php
The part you are interested in is:

Code:
-c /home/username/public_html/periodic/php.ini
And when you are sure that problem is fixed, add a

Code:
 >/dev/null 2>&1
to the end of the cron, so you don't get emails from it.
-Smoge