今天我有一个在 Joomla 中的新项目。我在我的电脑上下载了网站代码。网站管理面板是 cpanel。
我以前从未对 Joomla 网站做过任何事情。
当我在本地机器 (http://localhost/ppp/public_html/index.php) 上打开网站时,它显示数据库连接错误 (2):无法连接到 MySQL。但是,我已经更改了 configuration.php 文件(我猜我需要更改它):
//Before my changes it was the following:
public $host = 'localhost';
public $user = 'reiuser_reiuser';
public $password = 'password';
public $db = 'reiuser_reiuser';
//After my changes:
public $host = '174.121.134.94'; //IP was displayed in cpanel
public $user = 'reiuser_reiuser';
public $password = 'password';
public $db = 'reiuser_reiuser';
我已阅读有关此错误的信息,并且大多数人说要检查连接数据。但是,我可以使用这些连接数据成功连接 HeidiSql(用户/密码/数据库已更改)。
也许这里没有足够的信息,但也许 Joomla 开发人员可以建议做什么?哪个 Joomla 文件正在连接?也许我可以做一些回声来了解错误的原因?网站正在使用 CPanel。
谢谢你。