PROBLEMA CON wp-includes/pluggable.php on line 881
-
En mi Portal: http://www.esongsentertainment.com/
Cuando quiero visualizarlo me aparece el siguiente aviso:
Warning: Cannot modify header information – headers already sent by (output started at /home/content/22/5260422/html/wp-config.php:1) in /home/content/22/5260422/html/wp-includes/pluggable.php on line 881
Ya he revisado el archivo wp-config.php, de revisar si esta entre: <?php y ?>, ademas que no hayan espacios en blanco. que esta en la configuracion ANSI.
y el extracto del archivo pluggable.php es:
if ( !function_exists(‘wp_redirect’) ) :
/**
* Redirects to another page.
*
* @since 1.5.1
* @uses apply_filters() Calls ‘wp_redirect’ hook on $location and $status.
*
* @param string $location The path to redirect to
* @param int $status Status code to use
* @return bool False if $location is not set
*/
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 && php_sapi_name() != ‘cgi-fcgi’ )
status_header($status); // This causes problems on IIS and some FastCGI setupsheader(«Location: $location», true, $status);
}
endif;Por favor, como arreglo ese error, muchas gracias por su ayuda!
- El debate ‘PROBLEMA CON wp-includes/pluggable.php on line 881’ está cerrado a nuevas respuestas.