-1

可能重复:
PHP 已发送的标头

警告:session_start() [function.session-start]:无法发送会话 cookie - 标头已由 D:\USBWebserver_v8_en\root\pages 中的(输出开始于 D:\USBWebserver_v8_en\root\pages\login.php:1)发送\login.php 在第 0 行

我用 html 代码创建了一个登录表单,我的服务器全部设置了所有设置和所有这些东西,我使用 USB Webserver V8,它具有 phpmyadmin 功能,所以我在上面创建了一个数据库并使用了 dreamweaver为了链接数据库字段和内容,我使用了 Dream Weaver 上的登录验证字段功能,使页面在成功或失败时转到它所在的位置。

当我在我的服务器上打开它时,我什至在输入任何内容之前都会收到以下错误

警告:session_start() [function.session-start]:无法发送会话 cookie - 标头已由 D:\USBWebserver_v8_en\root\pages 中的(输出开始于 D:\USBWebserver_v8_en\root\pages\login.php:1)发送\login.php 在第 0 行

警告:session_start() [function.session-start]:无法发送会话缓存限制器 - 标头已发送(输出开始于 D:\USBWebserver_v8_en\root\pages\login.php:1)在 D:\USBWebserver_v8_en\root\pages \login.php 在第 0 行

警告:session_regenerate_id() [function.session-regenerate-id]:无法重新生成会话 id - 标头已在第 62 行的 D:\USBWebserver_v8_en\root\pages\login.php 中发送

当输入某些内容时,不会发生验证,并且我也收到另一条消息警告:无法修改标头信息 - 标头已由 D:\USBWebserver_v8_en\ 中的(输出开始于 D:\USBWebserver_v8_en\root\pages\login.php:1)发送第 70 行的 root\pages\login.php

这是我表格上的代码

<form METHOD="POST" action="<?php echo $loginFormAction; ?>" id="form2">
<p>&nbsp;</p>
<p><span class="letter">Username:</span>
<input type="text"name="username""username id="username"">
</p>
<p><span class="letter">Password: </span>
<input type="password"name="password"/>
</p>
<p>
<input name="submit" type="submit" class="content1" value="Login" />
</p>
<p>&nbsp;</p>
<!-- end .content -->
</form>

这是我的 php 代码

<?php virtual('/Connections/reuben1.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "",  $theNotDefinedValue = "") 
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}

$theValue = function_exists("mysql_real_escape_string") ?  mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;    
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
?>
<?php
//*** Validate request to login to this site.
if (!isset($_SESSION)) {
session_start();
}

$loginFormAction = $_SERVER['PHP_SELF'];
if(isset($_GET['accesscheck'])) {
$_SESSION['PrevUrl'] = $_GET['accesscheck'];
}

if(isset($_POST['username'])) {
$loginUsername=$_POST['username'];
$password=$_POST['password'];
$MM_fldUserAuthorization = "";
$MM_redirectLoginSuccess = "/Pages/Home.html";
$MM_redirectLoginFailed = "/Pages/Help.html";
$MM_redirecttoReferrer = false;
mysql_select_db($database_reuben1, $reuben1);

$LoginRS__query=sprintf("SELECT username, passwowrd FROM users WHERE username=%s AND   passwowrd=%s",
GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text")); 

$LoginRS = mysql_query($LoginRS__query, $reuben1) or die(mysql_error());
$loginFoundUser = mysql_num_rows($LoginRS);
if ($loginFoundUser) {
$loginStrGroup = "";
if (PHP_VERSION >= 5.1) {session_regenerate_id(true);} else {session_regenerate_id();}
//declare two session variables and assign them
$_SESSION['MM_Username'] = $loginUsername;
$_SESSION['MM_UserGroup'] = $loginStrGroup;       

if (isset($_SESSION['PrevUrl']) && false) {
$MM_redirectLoginSuccess = $_SESSION['PrevUrl'];    
}
header("Location: " . $MM_redirectLoginSuccess );
}
else {
header("Location: ". $MM_redirectLoginFailed );
}
}
?>

我不知道它为什么不起作用:(

4

2 回答 2

0

查看 D:\USBWebserver_v8_en\root\pages\login.php 的第 1 行

它在那里输出一些东西,阻止它开始会话。这可能是开始 php 标记之前的空行或空格

于 2012-05-03T19:30:23.470 回答
0
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent

这意味着 PHP 已经向浏览器输出了一些数据,这意味着它不能设置任何标题(在发送任何 HTML 之前设置的东西)。在这种情况下,通常意味着在第一个 PHP 标签之前有一些代码。在 login.php 中,确保在第一个打开 PHP 标记之前没有任何内容-甚至是空格(空格、新行等)。同样的规则也适用/Connections/reuben1.php- 确保它的开头也没有任何空格。

于 2012-05-03T19:33:32.767 回答