Alex V
Постоялец
- Регистрация
- 6 Янв 2007
- Сообщения
- 85
- Реакции
- 4
- Автор темы
- #1
Скачал новую версию от lecactusa, обновил движок, все вроде работает.
Но как только хочу зайти в админку, сразу выводиться такая ошибка:
Вот этот кусок кода:
Кто знает в чем трабла, подскажите
Но как только хочу зайти в админку, сразу выводиться такая ошибка:
Warning: Cannot modify header information - headers already sent by (output started at /home/business/public_html/vra4am/wp-config.php:1) in /home/xxxxxxx/public_html/xxxXxxx/wp-includes/pluggable.php on line 850
Вот этот кусок кода:
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"); 850 Строка
}
}
endif;
Кто знает в чем трабла, подскажите