我从 Apphp.com 下载了管理员登录面板。它在本地主机上运行良好。
然后我在 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”和“test”登录。它说,错误的用户名或密码。相同的代码在 localhost 上运行良好。
还有什么我必须做的吗,或者任何人都可以从任何站点向我推荐一个简单的基于 php 的登录面板源代码。