Possible Duplicate:
Headers already sent by PHP
“Cannot send session cache limiter - headers already sent”
So, i'm having some problems getting sessions to work as they should.
this is the site i have a problem with
<?php require '../head.php';?>
<?php require 'functions.php'; ?>
<body>
<div id="centerPage">
<div id="header">
<a href="http://snuletek.com/">
<img alt="Header-Img" src="../../images/MCarchHeader.png" />
</a>
</div>
<div id="topmenu">
<?php include '../topMenu.php'; ?>
</div>
<div id="centerSubMenu">
<div id="mcSubMenu">
<?php include 'mcSubMenu.php'; ?>
</div>
</div>
<div id="bodydiv">
<div id="content">
<?php include 'mcArchContent.php'; ?>
</div>
</div>
<div id="footer">
<?php include '../footer.php'; ?>
</div>
</div>
<script type="text/javascript" src="http://snuletek.org/scripts/mc.js"></script>
</body>
</html>
I have a common head.php for all my pages on my site, and as the very first thing in that head.php, I call session_start();
<?php session_start();?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<meta http-equiv="pragma" content="no-cahce" />
<title>Snuletek.org</title>
<link href="http://snuletek.org/Styles/main.css" rel="stylesheet" type="text/css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="http://snuletek.org/scripts/main.js"></script>
</head>
I get no error on any pages but this (the one the first code was for): http://snuletek.org/site/mc/mcArch.php
removeing the session in the head works, but of course stops sesssions from working, keeping it there however, allows sessions to works as they should and puts in the remaining html.
So why on earth am i getting the?:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/s/n/ftp_snuletekorg/site/mc/mcArch.php:1) in /home/s/n/ftp_snuletekorg/site/head.php on line 1
Even putting the session_start() in the main script, before calling the head, still yields the same result :/
session_start()). – Carsten Dec 31 '12 at 15:56