DVWA无法使用MAMP连接到数据库


-1

我使用MAMP在我的mac上安装了Dam Vulnerable Web Application(DVWA)。 这是我的配置文件设置:

$_DVWA = array();

$_DVWA[ 'db_server' ]   = '127.0.0.1';

$_DVWA[ 'db_database' ] = 'dvwa';

$_DVWA[ 'db_user' ]     = 'root';

$_DVWA[ 'db_password' ] = '';

当我在浏览器上加载DVWA时,我收到错误“无法连接到数据库”,如图所示。

我已经看过这个论坛并通过设置密码为空白它似乎解决了xampp的问题,但它不适用于mamp。

我浏览使用MAMP的网址是:localhost:8888 / dvwa

我知道哪里出错了?

enter image description here

Answers:


0

固定它。这些是MAMP所需的配置设置:

$_DVWA = array();
$_DVWA[ 'db_server' ]   = 'localhost';
$_DVWA[ 'db_database' ] = 'dvwa';
$_DVWA[ 'db_user' ]     = 'root';
$_DVWA[ 'db_password' ] = 'root';
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.