所以,我正在尝试将外部网站的CMS连接到我的VPS上的数据库。之前工作正常,现在它突然给了我这个错误。
Warning: mysql_connect(): Can't connect to MySQL server on 'IP' (4) in /.../inc/class.db.mysql.php on line 49
这是第49行:
$this->link = mysql_connect($this->hostname, $this->username, $this->password) or $this->error(mysql_error());`
这是正确的连接信息(我明显改变了一些部分):
$config['MySQL']['hostname'] = "IP";
$config['MySQL']['username'] = "root";
$config['MySQL']['password'] = "password";
$config['MySQL']['database'] = "database";
我已经允许MySQL服务器上的IP地址,就像我之前说的那样,但它已经不存在了。我认为它可能与太多的联系有关。
非常感谢任何帮助!