适用于localhost但不适用于Web服务器.... session_start():无法发送会话缓存限制器 - 已发送的标头

时间:2014-11-06 18:34:38

标签: php

我是PHP的新手并尝试了所有内容,并尝试了论坛帖子尝试修复此问题,但一周之后 - 我觉得我并不接近。

localhost版本运行正常 - 没问题。但是,当我上传它时,它会给我带来以下消息:

  

session_start():无法发送会话缓存限制器 - 已在第41行的/home/idigital123/public_html/index.php中发送的标头(在/home/idigital123/public_html/index.php:2处开始输出)

以下是代码:

<?php require_once('Connections/idigitalconn.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;
}
}

mysql_select_db($database_idigitalconn, $idigitalconn);
$query_Recordset1 = "SELECT login.username, login.password FROM login";
$Recordset1 = mysql_query($query_Recordset1, $idigitalconn) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<?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 = "header/KS3Yr7.html";
  $MM_redirectLoginFailed = "index.php";
  $MM_redirecttoReferrer = false;
  mysql_select_db($database_idigitalconn, $idigitalconn);

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

  $LoginRS = mysql_query($LoginRS__query, $idigitalconn) 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 个答案:

答案 0 :(得分:2)

您需要检查的是:

if (session_status() == PHP_SESSION_NONE) {
    session_start();
}

而不是:

if (!isset($_SESSION)) {
    session_start();
}

还可以将其置于代码之上,如@Jay解释的那样。

编辑:在此部分中,您需要绝对网址(如文档中所述:http://php.net/manual/es/function.header.php

header("Location: " . $file);

因此将其更改为(或您希望绝对路径的方式):

header("Location: http://" . $_SERVER["HTTP_HOST"] . "/" . $file);

答案 1 :(得分:0)

session_start()必须位于所有PHP页面的顶部,而不是经过测试。在开始会话之前检查是否设置了会话变量是&#34;向后&#34;。

don't use mysql_* functions,不再维护它们officially deprecated。请改为了解prepared statements,并使用PDOMySQLiThis article会帮助您做出决定。

答案 2 :(得分:0)

Linux 使用\n作为行结尾。但是,您的文件正在使用\r\n(Windows行结尾)。从服务器向浏览器发送数据时,由于线路结束不良,会发送一些数据。您可以在编辑器中看到它,并显示白色字符:enter image description here

将其更改为unix样式,一切都应该正常。

答案 3 :(得分:0)

顺便说一下,确保您没有附加到源文件的BOM(字节顺序标记)。它会在输出开始时出现不需要的字符。