diff -r 299a90e28abc -r 87e08a6e4fec includes/dbal.php --- a/includes/dbal.php Thu Jan 03 18:39:19 2008 -0500 +++ b/includes/dbal.php Wed Jan 16 13:55:49 2008 -0500 @@ -163,14 +163,14 @@ define('scriptPath', $sp); define('contentPath', "$sp/index.php?title="); } - $loc = scriptPath . '/install.php'; + $loc = scriptPath . '/install/index.php'; define('IN_ENANO_INSTALL', 1); $GLOBALS['lang'] = new Language('eng'); global $lang; - $lang->load_file('./language/english/enano.json'); + $lang->load_file('./language/english/core.json'); $lang->load_file('./language/english/install.json'); // header("Location: $loc"); - redirect($loc, 'Enano not installed', 'We can\'t seem to find an Enano installation (valid config file). You will be transferred to the installation wizard momentarily...', 3); + redirect($loc, 'Enano not installed', 'We can\'t seem to find an Enano installation (valid config file). You will be transferred to the installation wizard momentarily...', 0); exit; } } @@ -179,10 +179,14 @@ unset($dbuser); unset($dbpasswd); // Security - if ( !$this->_conn ) + if ( !$this->_conn && !$manual_credentials ) { grinding_halt('Enano is having a problem', '

Error: couldn\'t connect to MySQL.
'.mysql_error().'

'); } + else if ( !$this->_conn && $manual_credentials ) + { + return false; + } // Reset some variables $this->query_backtrace = array(); @@ -677,14 +681,7 @@ function sql_error() { - if ( $this->_conn ) - { - return mysql_error(); - } - else - { - return array(); - } + return mysql_error(); } function sql_escape_string($t) { @@ -865,7 +862,7 @@ } function get_error($t = '') { - header('HTTP/1.1 500 Internal Server Error'); + @header('HTTP/1.1 500 Internal Server Error'); $bt = $this->sql_backtrace(); $e = htmlspecialchars(pg_last_error()); if($e=='') $e='<none>'; @@ -933,10 +930,14 @@ unset($dbuser); unset($dbpasswd); // Security - if ( !$this->_conn ) + if ( !$this->_conn && !$manual_credentials ) { grinding_halt('Enano is having a problem', '

Error: couldn\'t connect to PostgreSQL.
'.pg_last_error().'

'); } + else if ( !$this->_conn && $manual_credentials ) + { + return false; + } // Reset some variables $this->query_backtrace = array(); @@ -1425,11 +1426,11 @@ { if ( $this->_conn ) { - return mysql_error(); + return pg_last_error(); } else { - return array(); + return ( defined('IN_ENANO_INSTALL') ) ? $GLOBALS["lang"]->get('dbpgsql_msg_err_auth') : 'Access to the database was denied. Ensure that your database exists and that your username and password are correct.'; } } function sql_escape_string($t)