authentication failed * * @global string the MySQL error message PHP returns * @global string the connection type (persistent or not) * @global string the MySQL server port to use * @global string the MySQL socket port to use * @global array the current server settings * @global string the font face to use in case of failure * @global string the default font size to use in case of failure * @global string the big font size to use in case of failure * @global boolean tell the "PMA_mysqlDie()" function headers have been * sent * * @return boolean always true (no return indeed) * * @access public */ function PMA_auth_fails() { global $php_errormsg, $cfg; global $right_font_family, $font_size, $font_bigger; if (PMA_DBI_getError()) { $conn_error = PMA_DBI_getError(); } else if (isset($php_errormsg)) { $conn_error = $php_errormsg; } else { $conn_error = $GLOBALS['strConnectionError']; } // Defines the charset to be used header('Content-Type: text/html; charset=' . $GLOBALS['charset']); // Defines the theme to be used require_once('./libraries/select_theme.lib.php'); /* HTML header */ $page_title = $GLOBALS['strAccessDenied']; require('./libraries/header_meta_style.inc.php'); ?>


' . $GLOBALS['strAccessDenied'] . '

' . "\n"; } else { if (!isset($GLOBALS['errno']) || (isset($GLOBALS['errno']) && $GLOBALS['errno'] != 2002) && $GLOBALS['errno'] != 2003) { echo '

' . $GLOBALS['strAccessDeniedExplanation'] . '

' . "\n"; } PMA_mysqlDie($conn_error, ''); } ?>