Ver Mensaje Individual
  #7 (permalink)  
Antiguo 28/10/2011, 15:34
Avatar de Jandor
Jandor
 
Fecha de Ingreso: septiembre-2009
Mensajes: 71
Antigüedad: 15 años, 3 meses
Puntos: 1
Respuesta: xajax error: ouput has already been sent

Cita:
Iniciado por pateketrueke Ver Mensaje
Pues ahí dice que el archivo /home/model/public_html/siec/dashboard.php en la linea 1 está haciendo algo que produce la salida.

Me pregunto que habrá ahí.
pues es esto:

Código PHP:
<?php
    session_start
();
    if(
$_SESSION["autorizado"] != ""){
        
$id $_SESSION["autorizado"]["logia"];
        
        include_once(
"includes/class_funciones_xajax_inc.php");
        
$metod= new procesos();
        
$metod->iniciar_xajax();
        
        
//iniciando
        
$metod->logia(0$id);
        
$metod->extraer_numero_trazado($id);
        
        
//variables
        
$logias_id $metod->logia_id;
        
$logias_logo $metod->logia_logo;
        
$logias_nombre $metod->logia_nombre;
        
$numero_trazado $metod->numero_trazado;
        
$numero_trazado_letras $metod->numero_trazado_letras;
    }
    else{
        
header("location: index.php");
    }
?>
<!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=utf-8" />
<!-- title -->
<title>MODEL</title>

<!-- css -->
<link rel="stylesheet" rev="general" type="text/css" href="general.css" />
<link rel="stylesheet" rev="detalle" type="text/css" href="detalle.css" />

<!-- xajax js -->
<?php  echo $siec->xajax_js?>

<!-- js -->
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.easing.js"></script>
<script type="text/javascript" src="js/colorbox/jquery.colorbox.js"></script>

<script type="text/javascript" src="js/general.js"></script>

</head>

<body>

.. aqui van contenido HTML + funciones de las clases --

</body>
</html>