Meine Webseiten sind ebenfalls alle bei 1&1 gehosted. Laut deren Angabe ist schon wieder alles in Ordnung. Meine Webseiten funktionieren auch wieder tadellos, leider bis auf eine.
Bei Aufruf der Webseite kommt nun folgende Fehlermeldung:
In der session.php steht in der entsprechende Zeile folgendes:[phpBB Debug] PHP Notice: in file /includes/session.php on line 557: session_create(./includes/auth/auth_.php) [function.session-create]: failed to open stream: No such file or directory
[phpBB Debug] PHP Notice: in file /includes/session.php on line 557: session_create() [function.include]: Failed opening './includes/auth/auth_.php' for inclusion (include_path='.:/usr/lib/php')
[phpBB Debug] PHP Notice: in file /includes/session.php on line 1043: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3509)
[phpBB Debug] PHP Notice: in file /includes/session.php on line 1043: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3509)
[phpBB Debug] PHP Notice: in file /includes/session.php on line 1043: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3509)
Language file ./language//common.php couldn't be opened.
Demnach versucht er die Datei auth_.php zu öffnen, die logischerweise nicht exisitiert. Die Variable $method dient dazu, den korrekten Dateinamen zu erstellen (z.B. auth_db.php, etc), dies wird jedoch nicht berücksichtigt und er versucht nur auth_.php zu öffnen.include_once($phpbb_root_path . 'includes/auth/auth_' . $method . '.' . $phpEx);
$method = 'autologin_' . $method;
if (function_exists($method))
{
$this->data = $method();
if (sizeof($this->data))
{
$this->cookie_data['k'] = '';
$this->cookie_data['u'] = $this->data['user_id'];
}
}
Ich habe vollen Zugriff über FTP und auch vollen Zugriff auf die Datenbank über phpMyAdmin. Alle anderen Webseiten funktionieren. Jede WEbseite hat eine eigene Datenbank.
Ist durch den Crash bei 1&1 nun irgend etwas an den Daten (Datenbank oder Script) beschädigt worden????
Habe 1&1 ebenfalls per Mail kontaktiert, aber noch keine Antwort erhalten und die 0900 Hotline möchte ich nicht anrufen....