Ver Mensaje Individual
  #1 (permalink)  
Antiguo 17/10/2006, 13:59
jgar
 
Fecha de Ingreso: septiembre-2006
Mensajes: 81
Antigüedad: 17 años, 7 meses
Puntos: 0
warning en sessiones

tengo un sistema para iniciar sesión con login y contraseña y está hecho con sesiones.
Funcionaba bien y un día sin más me sale este mensaje cuando quiero iniciar sesión

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/aposting/privat.php:13) in /home/aposting/privat.php on line 15

por si sirve.... cuando pones nombre de usuario y contraseña te envia a check.php quien comprueba si son correctos y si lo son te lleva a privat.php donde pone que hay error. El trozo de codigo de privat.php

<html>
<head>
<title>Privat</title>
<LINK REL="stylesheet" TYPE="text/css" HREF="estil.css">
</head>
<body>
<center>
<IFRAME src="dalt.html" width="610" height="240" scrolling="auto" frameborder="0">
Tu navegador no soporta los marcos en línea.
<A HREF="dalt.html">Haz clic aquí</A>
</IFRAME>
</center>
<strong>
<?php
session_start();
if($_SESSION['logged']!="si"){
header("Location: index.html");
exit;
}
else{
...+código

a ver si alguien me ayuda porque eso de que deje de funcionar de repente es un palo.
gracias