It sounds like you have register_globals=off
in your php.ini
file. Change that to on
and the install should work.
bye, Dirk
Create a file, let's call it test.php
, which contains just this one line:
<? phpinfo(); ?>
Upload it and load it into your browser. It will give you the path to your php.ini
file. In my case, it says:
Configuration File (php.ini) Path: /usr/local/lib/php.ini
bye, Dirk