Jump to content
xt:Commerce Community Forum

Fehlermeldung in My Shop


ad2002

Recommended Posts

Warning: constant(): Couldn't find constant ALLOW_CATEGORY_DESCRIPTIONS_TITLE in /var/www/vhosts/megamusicshop.com/httpdocs/html/xtcommerce3/admin/configuration.php on line 174

Warning: constant(): Couldn't find constant ALLOW_CATEGORY_DESCRIPTIONS_DESC in /var/www/vhosts/megamusicshop.com/httpdocs/html/xtcommerce3/admin/configuration.php on line 181

Kann mir einer sagen woran das liegt ?

Link to comment
Share on other sites

Ich habe die Fehlermeldung auch seitdem ich ein Template installiert habe. Nur weiss ich nicht ob es am Template liegt. Es ist ein Template von xtc-layouts. Was hast du getan bevor der Fehler auftrat und hast du es behoben?

Hier dick gedruckt sind die entsprechenden Zeilen 174 und 181 im PHP Code:

                //move multi_categories

                if (is_array($_POST['multi_categories']) && xtc_not_null($_POST['move_to_category_id'])) {

                    foreach ($_POST['multi_categories'] AS $category_id) {

                        $dest_category_id = xtc_db_prepare_input($_POST['move_to_category_id']);

                        if ($category_id != $dest_category_id) {

                            [B]$catfunc->move_category($category_id, $dest_category_id);[/B]

                        }

                    }

                }

                //move multi_products

                if (is_array($_POST['multi_products']) && xtc_not_null($_POST['move_to_category_id']) && xtc_not_null($_POST['src_category_id'])) {

                    foreach ($_POST['multi_products'] AS $product_id) {

                        [B]$product_id = xtc_db_prepare_input($product_id);[/B]

                        $src_category_id = xtc_db_prepare_input($_POST['src_category_id']);

                        $dest_category_id = xtc_db_prepare_input($_POST['move_to_category_id']);

                        $catfunc->move_product($product_id, $src_category_id, $dest_category_id);

                    }

                }

BR

Kay

Link to comment
Share on other sites

Du hast da wohl die falsche Datei offen. Die Zeilen 174 und 181 in admin/configuration.php lauten:


<td width="300" valign="top" class="dataTableContent"><b>'.@constant(strtoupper($configuration['configuration_key'].'_TITLE')).'</b></td>
[...]
<br />'.@constant(strtoupper( $configuration['configuration_key'].'_DESC')).'</td>
[/php]

In deinen beiden Zeilen kommen die bemängelten Konstanten gar nicht vor.

Offensichtlich fehlen dir in [b]lang/[sPRACHE]/admin/configuration.php[/b] die zwei Einträge. Die scheint nämlich das Template zu benötigen bzw. zu ergänzen, für die Standardinstallation sind sie nicht nötig.

Matt

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...