2
As stated in README file, the module requires that "register_globals" in PHP are "On" to work properly.
Most of the times, a wrong setting (i.e. register_globals = Off) is respondible of the behaviour reported.
To check this out:
1.create an empty php file, i.e. phpinfo.php and put into it the string:
2.Save the file and upload it on your root directory;
3.Access it through:
http://www.yoursite.com/phpinfo.php4.A very long file will show you your settings. Locate the key we're looking for and see how the setting is.
In the hypothesys of register_globals = Off, you should do the following:
HOME SERVER
1.Go to your Apache directory and locate your php.ini;
2.Locate the string register_globals = Off and change it to register_globals = On;
3.Save the file;
4.Restart the server.
WEB SPACE ON A SHARED SERVER
Ask your provider whether they could change that.
Hope this helps.
Bye,
ft