14/05/2010, 11:40
|
| | | Fecha de Ingreso: septiembre-2009
Mensajes: 36
Antigüedad: 15 años, 2 meses Puntos: 0 | |
Respuesta: Publicar Aplicacion Web Ayuda!!!! Hola de nuevo, ya migre la aplicacion pero ahora mi problema es que no me deja autenticarme, me explico, ahora la pag index de mi aplicacion en donde debia salir user y password, sale un warning, aqui se los dejo por si a alguno le ha pasado y pueda ayudarme:
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at C:\AppServ\www\CNCI-RH\Index.php:2) in C:\AppServ\www\CNCI-RH\Index.php on line 85
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\AppServ\www\CNCI-RH\Index.php:2) in C:\AppServ\www\CNCI-RH\Index.php on line 85
Aqui les pongo esa linea 85:
84 <?php 85 session_start();
86 if (isset($_GET['err']))
87 {
88 $_SESSION['logueado'] = 0;
89 echo $err[$_GET['err']]; //si esta definido imprimo
90
91 }
92 if(isset($_POST['user'])){
93 echo $_POST['user'];
94 }
95 ?>
estuve revisando el php.ini del servidor pero no vi nada mal configurado, no se que pueda hacer. |