将 Dreamweaver 连接到本地主机上的 MySQL

Connecting Dreamweaver to MySQL on localhost

我们 运行 我们的网站在本地 Xampp。我们可以通过 PHPMyAdmin 访问 MySql,但无法通过 DreamWeaver 连接到我们的数据库。 当我们输入详细信息以创建连接时,我们收到以下错误

"An unidentified error has occured"

我们已检查 configuration.php 文件中的连接详细信息

public $host = 'localhost';
public $user = 'richard';
public $password = 'xxxxxxxxx';
public $db = 'theplan8_planes';

但是当我们使用它们时,我们得到了错误。

谢谢 理查德

对于 MySqlServer 条目,我们必须将端口号 3306 添加到本地主机 Localhost:3306

富有