Zurück   xt:Commerce Webshop Shop Support > xt:Commerce Shopsoftware Community Area > Installation und Konfiguration

Antwort
 
LinkBack Themen-Optionen Ansicht
  #1 (permalink)  
Alt 18.06.2008, 12:43
Neuer Benutzer
 
Registriert seit: 25.04.2008
Beiträge: 17
Frage Fehler, wenn ich die Artikel nach Hersteller anschauen möchte

Wenn ich mir die Artikel nach Hersteller anzeigen lassen möchte, erhalte ich folgende Fehlermeldung:

1054 - Unknown column 'p.products_id' in 'on clause'

select count(p.products_id) as total from products p, products_description pd, manufacturers m left join specials s on p.products_id = s.products_id where p.products_status = '1' and pd.products_id = p.products_id and pd.language_id = '2' and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = '35'

[XT SQL Error]

Weiss jemand, was das bedeuten könnte?

Gruss
Daniel
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #2 (permalink)  
Alt 18.06.2008, 12:53
xt:Commerce Support Kunde
 
Registriert seit: 15.06.2008
Ort: Herne
Beiträge: 49
Standard

Hallo,

welche version von xt:c benutzt du?

Es wird an der mySQL 5 Datenbank liegen,

Bitte ersetze den Inhalt der default.php unter "includes/modules/" mit dem folgenden Code.

Backup anlegen!!

PHP-Code:
<?php 

/* ----------------------------------------------------------------------------------------- 
   $Id: default.php 1238 2005-09-24 10:51:19Z mz $    

   XT-Commerce - community made shopping 
   http://www.xt-commerce.com 

   Copyright (c) 2003 XT-Commerce 
   ----------------------------------------------------------------------------------------- 
   based on: 
   (c) 2000-2001 The Exchange Project  (earlier name of osCommerce) 
   (c) 2002-2003 osCommerce(default.php,v 1.84 2003/05/07); www.oscommerce.com 
   (c) 2003     nextcommerce (default.php,v 1.11 2003/08/22); www.nextcommerce.org 

   Released under the GNU General Public License 
   ----------------------------------------------------------------------------------------- 
   Third Party contributions: 
   Enable_Disable_Categories 1.3            Autor: Mikel Williams | mikel@ladykatcostumes.com 
   Customers Status v3.x  (c) 2002-2003 Copyright Elari elari@free.fr | www.unlockgsm.com/dload-osc/ | CVS : http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/elari/?sortby=date#dirlist 

   Released under the GNU General Public License 
   ---------------------------------------------------------------------------------------*/ 

$default_smarty = new smarty
$default_smarty->assign('tpl_path''templates/'.CURRENT_TEMPLATE.'/'); 
$default_smarty->assign('session'session_id()); 
$main_content ''
// include needed functions 
require_once (DIR_FS_INC.'xtc_customer_greeting.inc.php'); 
require_once (
DIR_FS_INC.'xtc_get_path.inc.php'); 
require_once (
DIR_FS_INC.'xtc_check_categories_status.inc.php'); 

if (
xtc_check_categories_status($current_category_id) >= 1) { 

    
$error CATEGORIE_NOT_FOUND
    include (
DIR_WS_MODULES.FILENAME_ERROR_HANDLER); 

} else { 

    if (
$category_depth == 'nested') { 
        if (
GROUP_CHECK == 'true') { 
            
$group_check "and c.group_permission_".$_SESSION['customers_status']['customers_status_id']."=1 "
        } 
        
$category_query "select 
                                            cd.categories_description, 
                                            cd.categories_name, 
                            cd.categories_heading_title,                     
                                            c.categories_template, 
                                            c.categories_image from "
.TABLE_CATEGORIES." c, ".TABLE_CATEGORIES_DESCRIPTION." cd 
                                            where c.categories_id = '"
.$current_category_id."' 
                                            and cd.categories_id = '"
.$current_category_id."' 
                                            "
.$group_check.
                                            and cd.language_id = '"
.(int) $_SESSION['languages_id']."'"

        
$category_query xtDBquery($category_query); 

        
$category xtc_db_fetch_array($category_querytrue); 

        if (isset (
$cPath) && ereg('_'$cPath)) { 
            
// check to see if there are deeper categories within the current category 
            
$category_links array_reverse($cPath_array); 
            for (
$i 0$n sizeof($category_links); $i $n$i ++) { 
                if (
GROUP_CHECK == 'true') { 
                    
$group_check "and c.group_permission_".$_SESSION['customers_status']['customers_status_id']."=1 "
                } 
                
$categories_query "select       cd.categories_description, 
                                                          c.categories_id, 
                                                          cd.categories_name, 
                                      cd.categories_heading_title, 
                                                          c.categories_image, 
                                                          c.parent_id from "
.TABLE_CATEGORIES." c, ".TABLE_CATEGORIES_DESCRIPTION." cd 
                                                          where c.categories_status = '1' 
                                                          and c.parent_id = '"
.$category_links[$i]."' 
                                                          and c.categories_id = cd.categories_id 
                                                          "
.$group_check.
                                                          and cd.language_id = '"
.(int) $_SESSION['languages_id']."' 
                                                          order by sort_order, cd.categories_name"

                
$categories_query xtDBquery($categories_query); 

                if (
xtc_db_num_rows($categories_querytrue) < 1) { 
                    
// do nothing, go through the loop 
                
} else { 
                    break; 
// we've found the deepest category the customer is in 
                

            } 
        } else { 
            if (
GROUP_CHECK == 'true') { 
                
$group_check "and c.group_permission_".$_SESSION['customers_status']['customers_status_id']."=1 "
            } 
            
$categories_query "select       cd.categories_description, 
                                                    c.categories_id, 
                                                    cd.categories_name, 
                                cd.categories_heading_title, 
                                                    c.categories_image, 
                                                    c.parent_id from "
.TABLE_CATEGORIES." c, ".TABLE_CATEGORIES_DESCRIPTION." cd 
                                                    where c.categories_status = '1' 
                                                    and c.parent_id = '"
.$current_category_id."' 
                                                    and c.categories_id = cd.categories_id 
                                                    "
.$group_check.
                                                    and cd.language_id = '"
.(int) $_SESSION['languages_id']."' 
                                                    order by sort_order, cd.categories_name"

            
$categories_query xtDBquery($categories_query); 
        } 

        
$rows 0
        while (
$categories xtc_db_fetch_array($categories_querytrue)) { 
            
$rows ++; 
             
            
$cPath_new xtc_category_link($categories['categories_id'],$categories['categories_name']); 
             
            
$width = (int) (100 MAX_DISPLAY_CATEGORIES_PER_ROW).'%'
            
$image ''
            if (
$categories['categories_image'] != '') { 
                
$image DIR_WS_IMAGES.'categories/'.$categories['categories_image']; 
            } 

            
$categories_content[] = array ('CATEGORIES_NAME' => $categories['categories_name'], 'CATEGORIES_HEADING_TITLE' => $categories['categories_heading_title'], 'CATEGORIES_IMAGE' => $image'CATEGORIES_LINK' => xtc_href_link(FILENAME_DEFAULT$cPath_new), 'CATEGORIES_DESCRIPTION' => $categories['categories_description']); 

        } 
        
$new_products_category_id $current_category_id
        include (
DIR_WS_MODULES.FILENAME_NEW_PRODUCTS); 

        
$image ''
        if (
$category['categories_image'] != '') { 
            
$image DIR_WS_IMAGES.'categories/'.$category['categories_image']; 
        } 
        
$default_smarty->assign('CATEGORIES_NAME'$category['categories_name']); 
        
$default_smarty->assign('CATEGORIES_HEADING_TITLE'$category['categories_heading_title']); 

        
$default_smarty->assign('CATEGORIES_IMAGE'$image); 
        
$default_smarty->assign('CATEGORIES_DESCRIPTION'$category['categories_description']); 

        
$default_smarty->assign('language'$_SESSION['language']); 
        
$default_smarty->assign('module_content'$categories_content); 

        
// get default template 
        
if ($category['categories_template'] == '' or $category['categories_template'] == 'default') { 
            
$files = array (); 
            if (
$dir opendir(DIR_FS_CATALOG.'templates/'.CURRENT_TEMPLATE.'/module/categorie_listing/')) { 
                while ((
$file readdir($dir)) !== false) { 
                    if (
is_file(DIR_FS_CATALOG.'templates/'.CURRENT_TEMPLATE.'/module/categorie_listing/'.$file) and ($file != "index.html") and (substr($file01) !=".")) { 
                        
$files[] = array ('id' => $file'text' => $file); 
                    } 
//if 
                
// while 
                
closedir($dir); 
            } 
            
$category['categories_template'] = $files[0]['id']; 
        } 

        
$default_smarty->caching 0
        
$main_content $default_smarty->fetch(CURRENT_TEMPLATE.'/module/categorie_listing/'.$category['categories_template']); 
        
$smarty->assign('main_content'$main_content); 

    } 
    elseif (
$category_depth == 'products' || $_GET['manufacturers_id']) { 
        
//fsk18 lock 
        
$fsk_lock ''
        if (
$_SESSION['customers_status']['customers_fsk18_display'] == '0') { 
            
$fsk_lock ' and p.products_fsk18!=1'
        } 
        
// show the products of a specified manufacturer 
        
if (isset ($_GET['manufacturers_id'])) { 
            if (isset (
$_GET['filter_id']) && xtc_not_null($_GET['filter_id'])) { 

                
// sorting query 
                
$sorting_query xtDBquery("SELECT products_sorting, 
                                                            products_sorting2 FROM "
.TABLE_CATEGORIES.
                                                            where categories_id='"
.(int) $_GET['filter_id']."'"); 
                
$sorting_data xtc_db_fetch_array($sorting_query,true); 
                if (!
$sorting_data['products_sorting']) 
                    
$sorting_data['products_sorting'] = 'pd.products_name'
                
$sorting ' ORDER BY '.$sorting_data['products_sorting'].' '.$sorting_data['products_sorting2'].' '
                
// We are asked to show only a specific category 
                
if (GROUP_CHECK == 'true') { 
                    
$group_check "and p.group_permission_".$_SESSION['customers_status']['customers_status_id']."=1 "
                } 
                
$listing_sql "select DISTINCT p.products_fsk18, 
                                               p.products_shippingtime, 
                                               p.products_model, 
                                               pd.products_name, 
                                               p.products_ean, 
                                               p.products_price, 
                                               p.products_tax_class_id, 
                                               m.manufacturers_name, 
                                               p.products_quantity, 
                                               p.products_image, 
                                               p.products_weight, 
                                               pd.products_short_description, 
                                               pd.products_description, 
                                               p.products_id, 
                                               p.manufacturers_id, 
                                               p.products_price, 
                                               p.products_vpe, 
                                               p.products_vpe_status, 
                                               p.products_vpe_value, 
                                               p.products_discount_allowed, 
                                               p.products_tax_class_id 
                                               from ("
.TABLE_PRODUCTS." p, ".TABLE_PRODUCTS_DESCRIPTION." pd, ".TABLE_MANUFACTURERS." m, ".TABLE_PRODUCTS_TO_CATEGORIES." p2c )left join ".TABLE_SPECIALS." s on p.products_id = s.products_id 
                                               where p.products_status = '1' 
                                               and p.manufacturers_id = m.manufacturers_id 
                                               and m.manufacturers_id = '"
.(int) $_GET['manufacturers_id']."' 
                                               and p.products_id = p2c.products_id 
                                               and pd.products_id = p2c.products_id 
                                               "
.$group_check.
                                               "
.$fsk_lock.
                                               and pd.language_id = '"
.(int) $_SESSION['languages_id']."' 
                                               and p2c.categories_id = '"
.(int) $_GET['filter_id']."'".$sorting
            } else { 
                
// We show them all 
                
if (GROUP_CHECK == 'true') { 
                    
$group_check "and p.group_permission_".$_SESSION['customers_status']['customers_status_id']."=1 "
                } 
                
$listing_sql "select p.products_fsk18, 
                                        p.products_shippingtime, 
                                        p.products_model, 
                                        p.products_ean, 
                                        pd.products_name, 
                                        p.products_id, 
                                        p.products_price, 
                                        m.manufacturers_name, 
                                        p.products_quantity, 
                                        p.products_image, 
                                        p.products_weight, 
                                        pd.products_short_description, 
                                        pd.products_description, 
                                        p.manufacturers_id, 
                                        p.products_vpe, 
                                        p.products_vpe_status, 
                                        p.products_vpe_value,        
                                        p.products_discount_allowed, 
                                        p.products_tax_class_id 
                                        from( "
.TABLE_PRODUCTS." p, ".TABLE_PRODUCTS_DESCRIPTION." pd, ".TABLE_MANUFACTURERS." m )left join ".TABLE_SPECIALS." s on p.products_id = s.products_id 
                                        where p.products_status = '1' 
                                        and pd.products_id = p.products_id 
                                        "
.$group_check.
                                        "
.$fsk_lock.
                                        and pd.language_id = '"
.(int) $_SESSION['languages_id']."' 
                                        and p.manufacturers_id = m.manufacturers_id 
                                        and m.manufacturers_id = '"
.(int) $_GET['manufacturers_id']."'"
            } 
        } else { 
            
// show the products in a given categorie 
            
if (isset ($_GET['filter_id']) && xtc_not_null($_GET['filter_id'])) { 

                
// sorting query 
                
$sorting_query xtDBquery("SELECT products_sorting, 
                                                            products_sorting2 FROM "
.TABLE_CATEGORIES.
                                                            where categories_id='"
.$current_category_id."'"); 
                
$sorting_data xtc_db_fetch_array($sorting_query,true); 
                if (!
$sorting_data['products_sorting']) 
                    
$sorting_data['products_sorting'] = 'pd.products_name'
                
$sorting ' ORDER BY '.$sorting_data['products_sorting'].' '.$sorting_data['products_sorting2'].' '
                
// We are asked to show only specific catgeory 
                
if (GROUP_CHECK == 'true') { 
                    
$group_check "and p.group_permission_".$_SESSION['customers_status']['customers_status_id']."=1 "
                } 
                
$listing_sql "select p.products_fsk18, 
                                               p.products_shippingtime, 
                                               p.products_model, 
                                               p.products_ean, 
                                               pd.products_name, 
                                               p.products_id, 
                                               m.manufacturers_name, 
                                               p.products_quantity, 
                                               p.products_image, 
                                               p.products_weight, 
                                               pd.products_short_description, 
                                               pd.products_description, 
                                               p.manufacturers_id, 
                                               p.products_price, 
                                               p.products_vpe, 
                                               p.products_vpe_status, 
                                               p.products_vpe_value,                             
                                               p.products_discount_allowed, 
                                               p.products_tax_class_id 
                                               from ("
.TABLE_PRODUCTS." p, ".TABLE_PRODUCTS_DESCRIPTION." pd, ".TABLE_MANUFACTURERS." m, ".TABLE_PRODUCTS_TO_CATEGORIES." p2c )left join ".TABLE_SPECIALS." s on p.products_id = s.products_id 
                                               where p.products_status = '1' 
                                               and p.manufacturers_id = m.manufacturers_id 
                                               and m.manufacturers_id = '"
.(int) $_GET['filter_id']."' 
                                               and p.products_id = p2c.products_id 
                                               and pd.products_id = p2c.products_id 
                                               "
.$group_check.
                                               "
.$fsk_lock.
                                               and pd.language_id = '"
.(int) $_SESSION['languages_id']."' 
                                               and p2c.categories_id = '"
.$current_category_id."'".$sorting
            } else { 

                
// sorting query 
                
$sorting_query xtDBquery("SELECT products_sorting, 
                                                            products_sorting2 FROM "
.TABLE_CATEGORIES.
                                                            where categories_id='"
.$current_category_id."'"); 
                
$sorting_data xtc_db_fetch_array($sorting_query,true); 
                if (!
$sorting_data['products_sorting']) 
                    
$sorting_data['products_sorting'] = 'pd.products_name'
                
$sorting ' ORDER BY '.$sorting_data['products_sorting'].' '.$sorting_data['products_sorting2'].' '
                
// We show them all 
                
if (GROUP_CHECK == 'true') { 
                    
$group_check "and p.group_permission_".$_SESSION['customers_status']['customers_status_id']."=1 "
                } 
                
$listing_sql "select p.products_fsk18, 
                                               p.products_shippingtime, 
                                               p.products_model, 
                                               p.products_ean, 
                                               pd.products_name, 
                                               m.manufacturers_name, 
                                               p.products_quantity, 
                                               p.products_image, 
                                               p.products_weight, 
                                               pd.products_short_description, 
                                               pd.products_description, 
                                               p.products_id, 
                                               p.manufacturers_id, 
                                               p.products_price, 
                                               p.products_vpe, 
                                               p.products_vpe_status, 
                                               p.products_vpe_value,                               
                                               p.products_discount_allowed, 
                                               p.products_tax_class_id 
                                               from (("
.TABLE_PRODUCTS_DESCRIPTION." pd, ".TABLE_PRODUCTS." p )left join ".TABLE_MANUFACTURERS." m on p.manufacturers_id = m.manufacturers_id, ".TABLE_PRODUCTS_TO_CATEGORIES." p2c 
                                               )left join "
.TABLE_SPECIALS." s on p.products_id = s.products_id 
                                               where p.products_status = '1' 
                                               and p.products_id = p2c.products_id 
                                               and pd.products_id = p2c.products_id 
                                               "
.$group_check.
                                               "
.$fsk_lock."                                
                                               and pd.language_id = '"
.(int) $_SESSION['languages_id']."' 
                                               and p2c.categories_id = '"
.$current_category_id."'".$sorting
            } 
        } 
        
// optional Product List Filter 
        
if (PRODUCT_LIST_FILTER 0) { 
            if (isset (
$_GET['manufacturers_id'])) { 
                
$filterlist_sql "select distinct c.categories_id as id, cd.categories_name as name from ".TABLE_PRODUCTS." p, ".TABLE_PRODUCTS_TO_CATEGORIES." p2c, ".TABLE_CATEGORIES." c, ".TABLE_CATEGORIES_DESCRIPTION." cd where p.products_status = '1' and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and p2c.categories_id = cd.categories_id and cd.language_id = '".(int) $_SESSION['languages_id']."' and p.manufacturers_id = '".(int) $_GET['manufacturers_id']."' order by cd.categories_name"
            } else { 
                
$filterlist_sql "select distinct m.manufacturers_id as id, m.manufacturers_name as name from ".TABLE_PRODUCTS." p, ".TABLE_PRODUCTS_TO_CATEGORIES." p2c, ".TABLE_MANUFACTURERS." m where p.products_status = '1' and p.manufacturers_id = m.manufacturers_id and p.products_id = p2c.products_id and p2c.categories_id = '".$current_category_id."' order by m.manufacturers_name"
            } 
            
$filterlist_query xtDBquery($filterlist_sql); 
            if (
xtc_db_num_rows($filterlist_querytrue) > 1) { 
                
$manufacturer_dropdown xtc_draw_form('filter'FILENAME_DEFAULT'get'); 
                if (isset (
$_GET['manufacturers_id'])) { 
                    
$manufacturer_dropdown .= xtc_draw_hidden_field('manufacturers_id'$_GET['manufacturers_id']); 
                    
$options = array (array ('text' => TEXT_ALL_CATEGORIES)); 
                } else { 
                    
$manufacturer_dropdown .= xtc_draw_hidden_field('cPath'$cPath); 
                    
$options = array (array ('text' => TEXT_ALL_MANUFACTURERS)); 
                } 
                
$manufacturer_dropdown .= xtc_draw_hidden_field('sort'$_GET['sort']); 
                
$manufacturer_dropdown .= xtc_draw_hidden_field(xtc_session_name(), xtc_session_id()); 
                while (
$filterlist xtc_db_fetch_array($filterlist_querytrue)) { 
                    
$options[] = array ('id' => $filterlist['id'], 'text' => $filterlist['name']); 
                } 
                
$manufacturer_dropdown .= xtc_draw_pull_down_menu('filter_id'$options$_GET['filter_id'], 'onchange="this.form.submit()"'); 
                
$manufacturer_dropdown .= '</form>'."\n"
            } 
        } 

        
// Get the right image for the top-right 
        
$image DIR_WS_IMAGES.'table_background_list.gif'
        if (isset (
$_GET['manufacturers_id'])) { 
            
$image xtDBquery("select manufacturers_image from ".TABLE_MANUFACTURERS." where manufacturers_id = '".(int) $_GET['manufacturers_id']."'"); 
            
$image xtc_db_fetch_array($image,true); 
            
$image $image['manufacturers_image']; 
        } 
        elseif (
$current_category_id) { 
            
$image xtDBquery("select categories_image from ".TABLE_CATEGORIES." where categories_id = '".$current_category_id."'"); 
            
$image xtc_db_fetch_array($image,true); 
            
$image $image['categories_image']; 
        } 

        include (
DIR_WS_MODULES.FILENAME_PRODUCT_LISTING); 

    } else { 
// default page 
        
if (GROUP_CHECK == 'true') { 
            
$group_check "and group_ids LIKE '%c_".$_SESSION['customers_status']['customers_status_id']."_group%'"
        } 
        
$shop_content_query xtDBquery("SELECT 
                             content_title, 
                             content_heading, 
                             content_text, 
                             content_file 
                             FROM "
.TABLE_CONTENT_MANAGER.
                             WHERE content_group='5' 
                             "
.$group_check.
                             AND languages_id='"
.$_SESSION['languages_id']."'"); 
        
$shop_content_data xtc_db_fetch_array($shop_content_query,true); 

        
$default_smarty->assign('title'$shop_content_data['content_heading']); 
        include (
DIR_WS_INCLUDES.FILENAME_CENTER_MODULES); 

        if (
$shop_content_data['content_file'] != '') { 
            
ob_start(); 
            if (
strpos($shop_content_data['content_file'], '.txt')) 
                echo 
'<pre>'
            include (
DIR_FS_CATALOG.'media/content/'.$shop_content_data['content_file']); 
            if (
strpos($shop_content_data['content_file'], '.txt')) 
                echo 
'</pre>'
            
$shop_content_data['content_text'] = ob_get_contents(); 
            
ob_end_clean(); 
        } 

        
$default_smarty->assign('text'str_replace('{$greeting}'xtc_customer_greeting(), $shop_content_data['content_text'])); 
        
$default_smarty->assign('language'$_SESSION['language']); 

        
// set cache ID 
         
if (!CacheCheck()) { 
            
$default_smarty->caching 0
            
$main_content $default_smarty->fetch(CURRENT_TEMPLATE.'/module/main_content.html'); 
        } else { 
            
$default_smarty->caching 1
            
$default_smarty->cache_lifetime CACHE_LIFETIME
            
$default_smarty->cache_modified_check CACHE_CHECK
            
$cache_id $_SESSION['language'].$_SESSION['currency'].$_SESSION['customer_id']; 
            
$main_content $default_smarty->fetch(CURRENT_TEMPLATE.'/module/main_content.html'$cache_id); 
        } 

        
$smarty->assign('main_content'$main_content); 
    } 

?>
Grüße
Andreas
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #3 (permalink)  
Alt 19.06.2008, 10:18
Neuer Benutzer
 
Registriert seit: 25.04.2008
Beiträge: 17
Standard

Hallo Andreas

Vielen Dank für den Tipp. Hab's gemacht. Danach erhielt ich nur noch eine weisse Startseite. Hab deshalb die Backup-Datei wieder eingespielt.

Welche xt-Version ich habe, weiss ich leider nicht. Kann man das irgendwo nachschauen? Wird aber eine ältere sein, weil ich sie eins zu eins kopiert und die Datenbank wieder eingespielt habe. Mein Kunde wollte seinen Shop bei einem neuen Hoster hosten lassen.

Kann mich z.B. auch nicht als Admin anmelden. Erhalte immer einen HTTP 500-Fehler.

Kann das alles an der Datenbank liegen?

Seite: http://www.old-toys.ch/
Original-Seite (wo alles funktioniert): http://www.antikspielzeug.ch/

Gruss
Daniel
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #4 (permalink)  
Alt 19.06.2008, 10:37
Neuer Benutzer
 
Registriert seit: 25.04.2008
Beiträge: 17
Standard Zeichencodierung der Datei beim Import

Habe ich eventuell beim Import die falsche Zeichencodierung gewählt? Welche müsste ich nehmen?

Gruss
Daniel
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
Antwort

Lesezeichen

Stichworte
anschauen, artikel, fehler, hersteller

Themen-Optionen
Ansicht

Forumregeln
Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are aus
Pingbacks are aus
Refbacks are aus


Ähnliche Themen
Thema Autor Forum Antworten Letzter Beitrag
Fehler: Artikel können nicht in der gleichen Kategorie verlinkt werden. Robin2411 Admininterface 3 05.11.2008 12:42
Artikel Attribute Fehler bei der Eingabe bigfoot Installation und Konfiguration 0 03.09.2007 13:50


Alle Zeitangaben in WEZ +1. Es ist jetzt 12:49 Uhr.

Copyright © 2011 xt:Commerce GmbH / xt:Commerce International Ltd. - All Rights Reserved

xt:Commerce is a SafeCharge brand