I just intalled indexu and I can't logon as admin, I already checked my mysqladmin and my username and password are correct, what's the problem?
Most of the times, the problem is your php_flag register_globals is set to off you can confirm this by running phpinfo.php and locating the register_globals line item.
If its set to off, you need to create/edit a file called htaccess.txt and copy this setting into that file
php_flag magic_quotes_gpc on
php_value max_execution_time 60
php_flag magic_quotes_runtime off
php_flag asp_tags off
php_flag register_globals on


