警告:session_start():无法发送会话cookie - 已经发送的标头(输出开始于

时间:2014-02-03 07:20:50

标签: php html mysql

登录页面中出现以下警告: 它在localhost中工作但不在远程主机中

警告: session_start()[function.session-start]:无法发送会话cookie - 已经发送的标头(输出从第8行开始)

警告: session_start()[function.session-start]:无法发送会话缓存限制器 - 已发送的标头(从第8行开始输出)

enter image description here

的index.php

<?php
session_start();
if(isset($_SESSION['usr']) && isset($_SESSION['pswd'])){
header('Location: content.php');}
?>
<body>
<center>
<form method='post' action='login.php'>
<!– in this example I link it with login.php to check the password & username–>
<table>
<tr><td>Username:</td><td><input type='text' name='usr'></td></tr>
<tr><td>Password:</td><td><input type='password' name='pswd'></td>
</tr>
<tr><td><input type='submit' name='login' value='Login'></td>
<td><input type='reset' name='reset' value='Reset'></td></tr>
</table>
</form>
</center>
</body>  

content.php

<body>
<a href="resumedownload.php">Click here to Download to Resume</a>
<?php
session_start();
if(!isset($_SESSION["usr"]) || !isset($_SESSION["pswd"])){
 header('Location: index.php');}
include 'logoff.php';
?>
</body>

的login.php

<body>
<?php
session_start();
if($_REQUEST['usr']=='suman.trytek' && $_REQUEST['pswd']=='solutions'){
$_SESSION['usr'] = 'suman.trytek';
$_SESSION['pswd'] = 'solutions';
header('Location: content.php');
}
else{
header('Location: index.php');
}
?>
</body>

3 个答案:

答案 0 :(得分:54)

始终将session_start();移到页面顶部。

<?php
@ob_start();
session_start();
?>

答案 1 :(得分:6)

  1. session_start()必须位于源代码的顶部,没有html或其他输出!
  2. 你只能发送一次session_start()
  3. 通过这种方式if(session_status()!=PHP_SESSION_ACTIVE) session_start()

答案 2 :(得分:2)

你不能session_start();当你的缓冲区已经部分发送时。

这意味着,如果您的脚本已经向客户端发送了信息(您想要的信息或错误报告),则session_start()将失败。