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.