GeraldE Posted July 8, 2009 Report Share Posted July 8, 2009 Hallo, ich habe aktuell ein Problem beim Bestellen von Waren mit XT:Commerce. Bis zur Seite /checkout_process.php funktioniert alles einwandfrei, auf dieser Seite tritt auf einmal der Fehler auf das nur mehr eine weiße Seite angezeigt wird. Im Forum habe ich bereits gelesen das bei einer PayPal Erweiterung dieser Fehler auch auftritt. Allerdings habe ich diese Erweiterung gar nicht in Verwendung - ich verwende Vorkasse und Nachnahme. Den Code, den das Programm nicht ausführen kann habe ich im Quelltext gefunden.(siehe unten) Wenn ich diesen ausklammere kommt die "Bestellung durchgeführt" Seite, allerdings fehlen in der Bestellung dann die Produkte. Ich habe schon einiges ausprobiert, leider ohne Erfolg. Ich möchte um eureHilfe bitten. Installiert habe ich xt:Commerce v3.0.3 // Update products_ordered (for bestsellers list) xtc_db_query("update " . TABLE_PRODUCTS . " set products_ordered = products_ordered + " . sprintf('%d', $order->products[$i]['qty']) . " where products_id = '" . xtc_get_prid($order->products[$i]['id']) . "'"); $sql_data_array = array('orders_id' => $insert_id, 'products_id' => xtc_get_prid($order->products[$i]['id']), 'products_model' => $order->products[$i]['model'], 'products_name' => $order->products[$i]['name'], 'products_price' => $order->products[$i]['price'], 'final_price' => $order->products[$i]['final_price'], 'products_tax' => $order->products[$i]['tax'], 'products_discount_made' => $order->$products[$i]['discount_allowed'], 'products_quantity' => $order->products[$i]['qty'], 'allow_tax' => $_SESSION['customers_status']['customers_status_show_price_tax']); xtc_db_perform(TABLE_ORDERS_PRODUCTS, $sql_data_array); $order_products_id = xtc_db_insert_id(); Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.