我让XAMPP在一台计算机上正常工作。然后我将它安装在另一个并使用相同的文件我有以下问题。
localhost:82调出index.php文件(实际上可以重定向到index3.html)。我在那里输入我的密码,通常它会将我重定向到localhost:82 / home.php(它在我的另一台计算机上)但是在这一个上,它需要大约10秒的等待,然后我得到一个连接错误的页面chrome和IE。我注意到这是由于此时XAMPP apache服务器在返回绿色状态之前短暂地变黄了。
我无法直接连接到localhost:82 / home.php。我犯了同样的错误。
我在每个.php页面的开头都有这个。删除它并没有解决问题。
<?php
session_start();
//Check to make sure the person is loggedin
if (isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] == true) {
//if logged in then do nothing
} else {
//if not logged int he redirect to the login page
header("Location: http://localhost:82/index2.php");
}
?>
它在我的第一台计算机上工作得很好,这里发生了什么?
============================
编辑:这是我的INDEX.PHP上的代码
<?php
//Connect to a database
$host_name = "localhost";
$database = "db608008888";
$user_name = "ABC";
$password = "123";
$connect = mysqli_connect($host_name, $user_name, $password, $database);
//Take the values from the html form and assign them to variables
$ID = $_POST['name'];
$userpassword = $_POST['password'];
//If no passsowrd entered then go straight to index.php
echo "<script type='text/javascript'>alert($userpassword);</script>";
if ($userpassword == null) {
header("Location: http://localhost:82/index3.php");
die();
}
//Check to see if the password matches the hashes
if (md5($userpassword) === '5b5c45f1b9e444d9e441211cfb325270'
or md5($userpassword) === '17434cf0d4ba816cd776ff8b0ec532f1'
or md5($userpassword) === '7a94fda2a6e81a1693533e6dc8501b37'
or md5($userpassword) === '2d8b2ba14eeb0ac1fe474d468b720771')
{
//Add the visitor name to our list
mysqli_query($connect, "INSERT INTO `visitor list` (`Visitor Name`) VALUES ('$ID')") or die("Error in INSERT: ".mysqli_error($connect));
// Start the session so they can access other pages
session_start();
$_SESSION['loggedIn'] = true;
// Redirect them to rest of site
header("Location: http://localhost:82/home.php");
die();
}
else {
header("Refresh: 0; url=index2.php");
echo "<script type='text/javascript'>alert(\"Wrong Password. .\");</script>";
}
?>
答案 0 :(得分:0)
使用您喜欢的文本编辑器打开apache的配置文件。配置文件通常位于:
.find_next('p').text)
如果您使用的是XAMPP或WAMP软件包,则可以在以下位置找到该文件:
{apache_dir}/conf/httpd.conf
搜索以下字符串:
{xampp_dir}/apache/conf/httpd.conf
{wamp_dir}/apache/conf/httpd.conf
并取消注释(删除'#'符号)。 现在搜索另一个字符串AllowOverride None并将其替换为AllowOverride All
重启Apache!
完成