Tema: IIS>>Apache
Ver Mensaje Individual
  #5 (permalink)  
Antiguo 27/03/2004, 15:30
killerchess
 
Fecha de Ingreso: noviembre-2003
Mensajes: 61
Antigüedad: 20 años, 5 meses
Puntos: 0
Un ultimo detalle

Muchas gracias Luis, tengo ahora esto utilizando los cambios que me distes:

Notice: A session had already been started - ignoring session_start() in

C:\xxxx\access.php on line 2

el access.php es este:

<?php
session_start();
ob_start(); // eliminas el WARNING
if (isset($_SESSION['check'])) // eliminas el NOTICE
{
if($_SESSION['check'] != "s")
{
header("Location:index.php");
exit();
}
}
?>

y lo tengo agregado de primero y sin espacios en las paginas.