* 警告:mysqli_connect():( HY000 / 1045):拒绝访问用户'测试' @' 192.xx.4.36' (使用密码:YES)在第59行的C:\ xampp \ htdocs \ UI \ db.class.php *
当我尝试通过php连接时显示此错误。我输入的详细信息在oracle sql developer中工作,我可以在其中访问数据库。需要注意的一件事是我输入 192.xx.1.45 (这是正确的工作)但错误消息给了我另一个主机名。
可能是什么错误?您可能希望看到第59行和第60行。它应该是正确的..
$this->connection = mysqli_connect($this->config->hostname, $this->config->username, $this->config->password);
$this->selectdb = mysqli_select_db($this->connection, $this->config->database);
答案 0 :(得分:4)
第59行的db.class.php中设置的密码错误。
我建议您转到C:\ xampp \ htdocs \ UI \ db.class.php并向下滚动到第59行并更改mysql设置。