script is installed and i cant login,
after i enter my login details it just puts me back on home page
I had the same problem, my config file was not written during the setup. It worked after I manually edited config. php
$sqerror = "<p><b>MySQL Error:</b></p><p>". mysql_error(). "</p>";
$dbhost = 'localhost';
$dbpass='pass';
$dbname='dbname';
$dbuser= 'username';
mysql_connect($dbhost,$dbuser,$dbpass);
mysql_select_db($dbname) or die(mysql_error());