Symptom:
Cannot log in, not even the first user root.
Cause:
1) In PHP 4.2.0 or higher, register_globals is default
off,
therefore variable posted cannot be pased to the next
page.
2) the variable $school_index is not defined, therefore
not database name can be found and used to connect to
the database.
Fix:
1 a) re-onfigure php with register_globals on
1 b) use superglobals $_POST[] to access the variables
2) add the definition of $school_index into config_inc.php
Logged In: YES
user_id=630011
For 1 a), a quick way is to add the line
php_flag register_globals on
in the file .htaccess