Hallo!
Ich komme nicht mehr in den Admin wegen folgenden Fehlermeldungen:
Code:
Warning: session_start() [function.session-start]: open(tmp/sess_8ef5731e166678308479e9b73d884f05, O_RDWR) failed: No such file or directory (2) in /.../includes/application_top.php on line 350
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /..includes/application_top.php:350) in /home/duftikus-com/htdocs/admin/includes/application_top.php on line 350
Warning: Cannot modify header information - headers already sent by (output started at /home/duftikus-com/htdocs/admin/includes/application_top.php:350) in /..includes/functions/general.php on line 130
Das tmp-Verzeichnis wurde im Hauptverzeichnis aber angelegt und die rechte auf 777 gesetzt
Zeile 350 in der Appication_top.php
Code:
} else {
session_start();
$session_started = false;
}
// verify the ssl_session_id if the feature is enabled
if ( ($request_type == 'SSL') && (SESSION_CHECK_SSL_SESSION_ID == 'True') && (ENABLE_SSL == true) && ($session_started == true) ) {
$ssl_session_id = getenv('SSL_SESSION_ID');
if (!session_is_registered('SSL_SESSION_ID')) {
$_SESSION['SESSION_SSL_ID'] = $ssl_session_id;
}
if ($_SESSION['SESSION_SSL_ID'] != $ssl_session_id) {
session_destroy();
xtc_redirect(xtc_href_link(FILENAME_SSL_CHECK));
}
}
Wenn ich nun true eingebe funktioniert es auch nicht.
Was Kann der fehler sein?