Hallo Leute,
Fehlermeldung:
Notice: Use of undefined constant WERT_1- assumed 'WERT_1' in /srv/www/vhosts/xxxxx.de/subdomains/test/httpdocs/config/config.php on line 2
ich verwende folgendes kleines Script und erhalte o.g. Fehler bei error_reporting(E_ALL):
Die Ausgabe in der Textdatei ist dann folgende:
define(WERT_1,'definition von wert 1');
...
...
...
Ich kapier leider nicht was ich am Script ändern soll.
Vielleicht kann mir ja jemand helfen.
Ich habe mir auch schon die offizielle Seite dazu angeschaut, aber leider werde ich daraus nicht schlau.
Gruss
Fehlermeldung:
Notice: Use of undefined constant WERT_1- assumed 'WERT_1' in /srv/www/vhosts/xxxxx.de/subdomains/test/httpdocs/config/config.php on line 2
ich verwende folgendes kleines Script und erhalte o.g. Fehler bei error_reporting(E_ALL):
PHP:
//----------------------------------------------------------
// BEGINN: Konfig-Cache
//----------------------------------------------------------
$config_cache_file = DIR_FS_CATALOG.'config_cache/config.php'; // this should be to a file in a folder *outside* of your webroot with 777 permissions.
$config_cache_read = false;
if (isset($config_cache_file) && $config_cache_file != '') {
if (file_exists($config_cache_file)) {
include($config_cache_file);
$config_cache_read = true;
}
}
if ($config_cache_read == false) {
$configuration_query = tep_db_query('select configuration_key as cfgKey, configuration_value as cfgValue from ' . TABLE_CONFIGURATION);
while ($configuration = tep_db_fetch_array($configuration_query)) {
define($configuration['cfgKey'], $configuration['cfgValue']);
}
}
//----------------------------------------------------------
// END: Konfig-Cache
//----------------------------------------------------------
Die Ausgabe in der Textdatei ist dann folgende:
define(WERT_1,'definition von wert 1');
...
...
...
Ich kapier leider nicht was ich am Script ändern soll.
Vielleicht kann mir ja jemand helfen.
Ich habe mir auch schon die offizielle Seite dazu angeschaut, aber leider werde ich daraus nicht schlau.
Gruss