See if you can install Enano 1.1.5 and get it to load. There might be a problem with your PHP configuration or possibly an issue with an outdated MySQL client library. Also try installing another web application - phpBB is a good one to test with - and see if it throws any errors.
I'm not sure what's happening here because there's only one situation under which Enano throws this error:
dbal.php, line 173 wrote:$this->_conn = @mysql_connect($dbhost, $dbuser, $dbpasswd);
unset($dbuser);
unset($dbpasswd); // Security
if ( !$this->_conn )
{
grinding_halt('Enano is having a problem', '<p>Error: couldn\'t connect to MySQL.<br />'.mysql_error().'</p>');
}
If the MySQL connection resource is bad, it dies out. The thing that confuses me is, where is the MySQL error string? Something is returning a nonstandard value and thus preventing Enano from figuring out if its connection works or not.
Also try removing the "if ( !$this->_conn ) { ... }" part, and post back here with the result.
--Dan