我从Apphp.com下载了管理员登录面板。 它在localhost上工作正常。
然后我在Parallel Plesk Server [托管我的网站]中创建了一个数据库,为其分配了一个用户,导入了sql文件并创建了表格。
然后我从:
更改了config.inc.php设置 function Config()
{
$this->host = "localhost";
$this->user = "root";
$this->password = "";
$this->database = "testdb";
}
到
function Config()
{
$this->host = "pemysql01.365techsupport.com:3306";
$this->user = "user123";
$this->password = "password";
$this->database = "testdb";
}
正如我已经说过,代码在localhost中运行正常,但是当我将数据库和其他文件上传到服务器时,我无法使用我的用户名和密码登录,即'test'& '测试'。它说,用户名或密码错误。相同的代码在localhost上正常工作。
我还有什么需要做的,或者任何人都可以从任何网站向我推荐一个简单的基于php的登录面板源代码。
答案 0 :(得分:0)
从这里开始尝试:
$ mysql -h pemysql01.365techsupport.com -u test -p
Enter password:
ERROR 1045 (28000): Access denied for user 'test'@'xx.xx.xx.xx' (using password: YES)
你的php机器可能有同样的问题(即你需要授予它访问权限)