mysql_real_escape_string():用户'root'@'localhost&#


mysql_real_escape_string(): Access denied for user 'root'@'localhost' (using password: NO)

我发现这个错误在我的错误日志中反复出现,我相信它会导致内存泄漏,导致我的网站停机。

PHP Warning:  mysql_query(): Access denied for user 'root'@'localhost' (using password: NO) in /mysql.class.php on line 74
PHP Warning:  mysql_query(): A link to the server could not be established in /mysql.class.php on line 74
PHP Warning:  mysql_real_escape_string(): Access denied for user 'root'@'localhost' (using password: NO) in /functions.php on line 380
PHP Warning:  mysql_real_escape_string(): A link to the server could not be established in /functions.php on line 380
PHP Warning:  mysql_query(): Access denied for user 'root'@'localhost' (using password: NO) in /mysql.class.php on line 100
PHP Warning:  mysql_query(): A link to the server could not be established in /home/glo/mysql.class.php on line 100

在mysql.class.php中,下面是从72行到104行的代码

function &execute () {
    $query = $this->read();
    **$res = mysql_query($query);** // line 74
    if ($res || mysql_errno() == 1062) {
        return $res;
    }
    $mysql_error = mysql_error();
    $mysql_errno = mysql_errno();
    // If debug_backtrace() is available, we can find exactly where the query was called from
    if (function_exists("debug_backtrace")) {
        $bt = debug_backtrace();
        $i = 1;
        if ($bt[$i]["function"] == "SQL_Query_exec_cached" || $bt[$i]["function"] == "get_row_count_cached" || $bt[$i]["function"] == "get_row_count")
            $i++;
        $line = $bt[$i]["line"];
        $file = str_replace(getcwd().DIRECTORY_SEPARATOR, "", $bt[$i]["file"]);
        $msg = "Database Error in $file on line $line: $mysql_error. Query was: $query.";
    } else {
        $file = str_replace(getcwd().DIRECTORY_SEPARATOR, "", $_SERVER["SCRIPT_FILENAME"]);
        $msg = "Database Error in $file: $mysql_error. Query was: $query";
    }
    mysql_query("INSERT INTO `sqlerr` (`txt`, `time`) 
                 **VALUES (".sqlesc($msg).", '".get_date_time()."')");** // line 100
    if ( function_exists('show_error_msg') )
         show_error_msg("Database Error", "Database Error. Please report this to an Admin.", 1);
}

在functions.php中,这里是代码

// MySQL escaping
function sqlesc($x) {
if (!is_numeric($x)) {
   $x = "'".mysql_real_escape_string($x)."'"; // Line 380
}
return $x;
}
我的连接代码是
function_exists("mysql_connect") or die("MySQL support not available.");
@mysql_connect($mysql_host, $mysql_user, $mysql_pass) or die('DATABASE: mysql_connect: ' . mysql_error());
@mysql_select_db($mysql_db) or die('DATABASE: mysql_select_db: ' . mysql_error());

任何帮助调试这些错误是非常感谢....

看起来这里的问题是连接在函数的作用域之外,所以mysql函数试图在没有任何凭据的情况下创建一个新的连接。

尝试将你的连接分配给一个变量,然后在你的函数中作为全局变量调用它。

$conn = @mysql_connect($mysql_host, $mysql_user, $mysql_pass);
function &execute () {
    global $conn;
    $query = $this->read();
    $res = mysql_query($query, $conn); 
    ....

你可以在PHP手册中阅读更多关于作用域的内容http://www.php.net/manual/en/language.variables.scope.php

注意:不建议使用全局变量-最好使用更面向对象的方法并在MySQL类中创建连接,例如:

public function connect ($host, $user, $pass) {
    $this->connection = mysql_connect($host, $user, $pass);
}
function &execute () {
    $query = $this->read();
    $res = mysql_query($query, $this->connection); 
    ....

,然后使用类似这样的东西连接

$db = new MysqlClassName();
$db->connect($mysql_host, $mysql_user, $mysql_pass);

显示错误可以在php.ini或您的apache配置文件中关闭。

你可以在脚本中打开它:

   <?php 
          error_reporting(E_ALL);
          ini_set('display_errors', 1);
    ?>

把上面的脚本写在页面的顶部,你会看到错误信息。您应该在php错误日志中看到相同的消息。