| Author |
register_globals Problem again..... |
|
Anonymous
|
Posted: 2003-05-08 18:26
Hello,
first: yes i read the manual and the forum, yes i turned register_globals in php.ini on, yes i restarted the server.
It does not work !!!!!!!!!!!!!!!!
Fault: at install.php: register_globals must be set on ......
My Server: Win2k Apache 1.3.27, PHP 4.x, MySQL.
Please help me !!!
zhx cipher
sorry about the bad englisch
Quote
|
|
trini0
MPN Developer Joined: 18-Jul-2001 Posts: 5096
From: FL USA
|
Posted: 2003-05-08 18:43
Can you provide a link to a phpinfo() file..
phpinfo();
?> ----------------- trini0... mPN2 Test Bed
|
|
Anonymous
|
Posted: 2003-05-08 20:32
Sorry its on a lokal Server !!!
cipher
Quote
|
|
espart
MPN Developer Joined: 10-Jul-2001 Posts: 209
From: Virginia, US
|
Posted: 2003-05-09 12:04
as trini0 has stated create a php page, open notpad and copy
phpinfo();
?>
and save it as php file (e.g phpinfo.php)
put it in your webfolder and call it from the browser like http://www.yourdomain.com/phpinfo.php
and check the settings.
|
|
ciph3r
Just popping in Joined: 09-May-2003 Posts: 1
|
Posted: 2003-05-09 13:23
I will do this this evening and then post it !!! thx a lot
cipher
|
|
gary
Just popping in Joined: 11-May-2003 Posts: 2
|
Posted: 2003-05-11 10:23
|
|
trini0
MPN Developer Joined: 18-Jul-2001 Posts: 5096
From: FL USA
|
Posted: 2003-05-11 14:41
I just visited your installer page.
Since the check with ini_get() failed, that is what is causing your problem with register_globals.
Open up install.php and comment out ->
-------
/* CHECK TO SEE IF REGISTER_GLOBALS IS OFF */
if (ini_get('register_globals') == '0' || ini_get('register_globals') == '')
{
echo ' Register Globals Must be turned On. Contact your System Admin to fix this issue.';
$pass = FALSE;
}
---------
and it should skip the step to check for register_globals.
Comment them out by putting // at the beginning of each line.
----------------- trini0... mPN2 Test Bed
|