Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/02/2011, 15:32
Avatar de Lopezito
Lopezito
 
Fecha de Ingreso: junio-2010
Mensajes: 367
Antigüedad: 13 años, 10 meses
Puntos: 17
Error: "pluggable.php on line 890"

Buenas, quiero ser breve...
Me salta este error:

Código:
Warning: Cannot modify header information - headers already sent by (output started at d:\archivos de programa\easyphp1-8\www\mozagames\wp-content\themes\twentyten\functions.php:36) in d:\archivos de programa\easyphp1-8\www\mozagames\wp-includes\pluggable.php on line 890
La linea 890 del archivo puggable.php de la carpeta wp-includes:

Código:
header("Location: $location", true, $status);
La linea se encuentra en la siguiente funcion:

Código:
function wp_redirect($location, $status = 302) {
	global $is_IIS;

	$location = apply_filters('wp_redirect', $location, $status);
	$status = apply_filters('wp_redirect_status', $status, $location);

	if ( !$location ) // allows the wp_redirect filter to cancel a redirect
		return false;

	$location = wp_sanitize_redirect($location);

	if ( $is_IIS ) {
		header("Refresh: 0;url=$location");
	} else {
		if ( php_sapi_name() != 'cgi-fcgi' )
			status_header($status); // This causes problems on IIS and some FastCGI setups
		header("Location: $location", true, $status);
	}
}
endif;
Espero respuestas.
Un saludo grande.
Adios.