Everybody who is sick of this topic please raise their hand <raises hand high in the air>
This error occurs in the file inc/header.inc.php which is called both by the install program and the cron job. The message usually includes formatting text which right away lets you know that something isn't quite right.
<font color="red">register_globals is On (warning, you should have this param in Off state, or your site will unsafe)</font> <br /> <font color="red">allow_url_include is On (warning, you should have this param in Off state, or your site will unsafe)</font> <br /> <font color="red">get_magic_quotes_gpc is Off, enable it</font> <br />
I've been searching the forum on and off for months now and I've read some very interesting solutions to this issue, none of which were truly solutions. My feeling is if phpinfo.php says that register_globals is off, then its probably off. I've checked phpinfo.php from the Dolphin admin program, ran it from the main dolphin directory, the periodic directory and my root directory of my server and it always reported register_globals as "off".
As of php 4.2.0 the default value for register_globals is "off" and its hard for me to imagine why any shared hosting service would want to turn this on. But I don't want to turn this into a discussion of core php.ini directives because there has been quite enough of that. What we need to talk about is how to fix it.
I really don't want to start quoting solutions because they rarely seem to work. So far some have been able to get around the problem with "creative" cron jobs such as:
cd /home/yourusername/Public_html/yourdomainname.com/community/periodic /user/local/bin/php -c /home/yourusername/public_html/yourdomainname.com/php.ini -q cron.php
But if you're having the issue during install that's not going to help you.
Others have tried moving the php.ini file around (like to the periodic directory in the case of cron jobs) but that doesn't always work.
For me personally, I had the problem with the cron jobs on my hosted Dolphin install and the above command seemed to resolve it. But on my local server it occurred during the install and I have yet to remedy it.
But again, warning messages don't start out with "<font color="red">" and end with "</font> <br />" so most likely when we figure out what's causing the code to fail we'll solve the issue.
We need to get a ticket open on this that's marked something other than "invalid" please.

