Grüsst Euch
Anhand meines Smilyes erkennt Ihr meine Stimmung heute. Dank Euch habe ich die grössten Fehler beseitigen können. Bestellungen sind nun wieder möglich und nun geht's an die Feinarbeiten. Ein Fehler macht mir aber noch etwas Kopfzerbrechen. Und zwar entsteht dieser im Backend bei den Sessions. Hier mal die Fehlermeldung:
Code: Alles auswählen
Warning: constant() [function.constant]: Couldn't find constant SESSION_WRITE_DIRECTORY_TITLE in /home/httpd/vhosts/engelis-naturshop.ch/httpdocs/webs15/admin/configuration.php on line 249
Warning: constant() [function.constant]: Couldn't find constant SESSION_WRITE_DIRECTORY_DESC in /home/httpd/vhosts/engelis-naturshop.ch/httpdocs/webs15/admin/configuration.php on line 256
Warning: constant() [function.constant]: Couldn't find constant SESSION_FORCE_COOKIE_USE_TITLE in /home/httpd/vhosts/engelis-naturshop.ch/httpdocs/webs15/admin/configuration.php on line 249
Warning: constant() [function.constant]: Couldn't find constant SESSION_FORCE_COOKIE_USE_DESC in /home/httpd/vhosts/engelis-naturshop.ch/httpdocs/webs15/admin/configuration.php on line 256
Warning: constant() [function.constant]: Couldn't find constant SESSION_CHECK_SSL_SESSION_ID_TITLE in /home/httpd/vhosts/engelis-naturshop.ch/httpdocs/webs15/admin/configuration.php on line 249
Warning: constant() [function.constant]: Couldn't find constant SESSION_CHECK_SSL_SESSION_ID_DESC in /home/httpd/vhosts/engelis-naturshop.ch/httpdocs/webs15/admin/configuration.php on line 256
Warning: constant() [function.constant]: Couldn't find constant SESSION_CHECK_USER_AGENT_TITLE in /home/httpd/vhosts/engelis-naturshop.ch/httpdocs/webs15/admin/configuration.php on line 249
Warning: constant() [function.constant]: Couldn't find constant SESSION_CHECK_USER_AGENT_DESC in /home/httpd/vhosts/engelis-naturshop.ch/httpdocs/webs15/admin/configuration.php on line 256
Warning: constant() [function.constant]: Couldn't find constant SESSION_CHECK_IP_ADDRESS_TITLE in /home/httpd/vhosts/engelis-naturshop.ch/httpdocs/webs15/admin/configuration.php on line 249
Warning: constant() [function.constant]: Couldn't find constant SESSION_CHECK_IP_ADDRESS_DESC in /home/httpd/vhosts/engelis-naturshop.ch/httpdocs/webs15/admin/configuration.php on line 256
Warning: constant() [function.constant]: Couldn't find constant SESSION_RECREATE_TITLE in /home/httpd/vhosts/engelis-naturshop.ch/httpdocs/webs15/admin/configuration.php on line 249
Warning: constant() [function.constant]: Couldn't find constant SESSION_RECREATE_DESC in /home/httpd/vhosts/engelis-naturshop.ch/httpdocs/webs15/admin/configuration.php on line 256
Zuerst habe ich gedacht, dass ich beim Datenbank Import etwas in der "configuration" Tabelle übersehen habe. Doch da gibt es diese Konstanten eben nicht. In der aktuellsten Webs werden diese jedoch in der lang\german\admin\configuration.php wie folgt definiert:
Code: Alles auswählen
define('SESSION_WRITE_DIRECTORY_TITLE' , 'Session Speicherort');
define('SESSION_WRITE_DIRECTORY_DESC' , 'Wenn Sessions als Files gespeichert werden sollen, benutzen Sie folgenden Ordner.');
define('SESSION_FORCE_COOKIE_USE_TITLE' , 'Cookie Benutzung erzwingen! (Ohne Cookie kein Einkauf möglich.)');
define('SESSION_FORCE_COOKIE_USE_DESC' , 'Session starten falls Cookies vom Browser erlaubt werden.');
define('SESSION_CHECK_SSL_SESSION_ID_TITLE' , 'Checken der SSL Session ID');
define('SESSION_CHECK_SSL_SESSION_ID_DESC' , 'Überprüfen der SSL_SESSION_ID bei jedem HTTPS Seitenaufruf.');
define('SESSION_CHECK_USER_AGENT_TITLE' , 'Checken des User Browsers');
define('SESSION_CHECK_USER_AGENT_DESC' , 'Überprüfen des Browsers den der User benutzt, bei jedem Seitenaufruf.');
define('SESSION_CHECK_IP_ADDRESS_TITLE' , 'Checken der IP Adresse');
define('SESSION_CHECK_IP_ADDRESS_DESC' , 'Überprüfen der IP Adresse des Users bei jedem Seitenaufruf.');
define('SESSION_RECREATE_TITLE' , 'Session erneuern');
define('SESSION_RECREATE_DESC' , 'Erneuern der Session und Zuweisung einer neuen Session ID sobald ein User einloggt oder sich registriert (PHP >=4.1 needed).');
Habe ich da etwas übersehen, oder ist das ein Fehler der sich da in die neue Version eingeschlichen hat?