我们将网站移至新服务器,但现在无法验证用户和管理员身份。
旧服务仍然有效,如果我将 IP 更改为旧服务,我可以毫无问题地以管理员身份登录,但速度很慢。
**Database connection**
function doDB_MySQLi()
{
global $link;
$link = mysqli_connect('127.0.0.1','Username','Password','Database_name','3306') or die(mysql_errors());
if (!$link)
{
printf("Can't connect to MySQL Server. Errorcode: %s\n", mysqli_connect_error());
exit;
}
}
function doMySQLi()
{
global $link;
$link = new mysqli('127.0.0.1','Username','Password','Database_name','3306');
/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
}
?>
服务器为 Windows Server 2008 Web 版。
错误:您无权访问此区域。