Quote:
Originally Posted by rendel12
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\xampp\htdocs\templates\header.php:51) in C:\xampp\htdocs\templates\header.php on line 52
|
1. If you have saved your file in UTF-8 format, be sure to check if it is UTF-8 without BOM.
2. Use session_start() directly after your opening tag, before any other information is outputted/sent to the browser.
3. header('Cache-control: private'); add this code like this:
Code:
<?php
session_start();
header('Cache-control: private');
without the code, and other information, maybe something of this can help u