Hi Leute,
seit heute bekomme ich eine Fehlermeldung beim Speichern von Einstellungen im Backend. Zuerst ist es mir bei Kategorien aufgefallen, nun tritt es aber auch beim Speichern von Einstellungen auf.
Hier die Fehlermeldung:
Zitat"Warning: Cannot modify header information - headers already sent by (output started at /mnt/webh/d1/67/53188067/htdocs/wp-content/themes/gimikku/functions.php:2) in /mnt/webh/d1/67/53188067/htdocs/wp-test/wp-includes/pluggable.php on line 866"
Und hier die function die in der pluggable.php betroffen ist:
ZitatAlles anzeigenfunction 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 setups***Zeile 866*** header("Location: $location", true, $status);
}
Danke für eure Hilfe!