Ver Mensaje Individual
  #7 (permalink)  
Antiguo 26/02/2008, 09:35
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: Fallo en envio de cabezeras

Tu problema es que tienes un salto de linea entre:
Código PHP:
<?php 
include_once("fckeditor/fckeditor.php") ; 
?> 
       <- Salto de linea
<?php

function GetSQLValueString($theValue$theType$theDefinedValue ""$theNotDefinedValue ""
{
  
$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue;

  switch (
$theType) {
    case 
"text":
Ese salto de linea hace que las cabeceras se envíen como contenido html y posteriormente ya no puedes hacer el redireccionamiento

Saludos.