gpt4 book ai didi

php - XAMPP 服务器错误(错误 500)

转载 作者:可可西里 更新时间:2023-11-01 08:03:14 32 4
gpt4 key购买 nike

The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there was an error in a CGI script. If you think this is a server error, please contact the webmaster. Error 500 localhost Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30

我打开日志错误,发现问题出在我的 user.inc.php 中的 header():

function getLogin($conn){
if(isset($_POST['login']))
{
$uid=$_POST['uid'];
$pwd=$_POST['pwd'];

$sql= "SELECT * FROM user WHERE uid='$uid' AND pwd ='$pwd'";
$result=$conn->query($sql);
if (mysqli_num_rows($result) == 1){
if($row = $result->fetch_assoc()){

$_SESSION['id'] = $row['id'];
header("Location : index.php?loginsuccess");
exit();
}
}
else{



}
}
}

错误日志:

[Tue Jul 25 10:26:58.464402 2017] [http:error] [pid 2380:tid 1656] [client ::1:49602] AH02429: Response header name 'Location ' contains invalid characters, aborting request, referer: http://localhost/tgss/index.php

请帮忙。

最佳答案

改变这个

header("Location : index.php?loginsuccess");

对此

header("Location: index.php?loginsuccess");

错误来自 Location 和冒号 ( : ) 之间的空格。

我测试了你的 header("Location : index.php?loginsuccess"); 在冒号 ( : ) 之间有空格,它还返回一个 错误 500

关于php - XAMPP 服务器错误(错误 500),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45293050/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com