使用JUpgrade将joomla 1.5迁移到1.7后出现错误:数据库错误:无法连接到数据库:无法连接到MySQL.Any Idea
答案 0 :(得分:2)
您应该查看与数据库相关的配置文件,它可能已被重置。
配置文件名为configuration.php,应位于public_html目录中: 像这样的一些代码应该在那里:
var $host = 'localhost'; // Leave it to localhost if you are unsure
var $user = 'your-database-user'; // This should be changed to yours
var $password = 'yourpass'; // Change it to the password for the database user
var $db = 'your-database-name'; // Change it to the name of your database
请编辑这4个条目。
答案 1 :(得分:1)
项目文件夹中会有一个名为configuration.php
的文件。
在该文件中查找变量$host
,$user
,$db
和其他相关变量。