Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

mef-u

Pioneers
  • Posts

    2
  • Joined

  • Last visited

Profile Information

  • Real Name
    Mathias Wächter

mef-u's Achievements

  1. no one out there who uses this contribution in combination with ipayment?!?! Do i have to modify includes/modules/payment/ipayment_cc.php !?
  2. hi out there! I am using this contribution and it really works fine. Expect in the case when a customer is paying via IPAYMENT... the contribution doesn't write all the database-records! The text-options are written into the table "customer_basket_text_attributes" but are not transferred to "orders_text_attributes". in my checkout_process.php there are the following lines: // denuz text attr $attr_q = tep_db_query("select * from customers_basket_text_attributes where session_id = '$osCsid' and products_id = " . tep_get_prid($order->products[$i]['id'])); while ($attr = tep_db_fetch_array($attr_q)) { tep_db_query("insert into orders_text_attributes values ($insert_id, " . tep_get_prid($order->products[$i]['id']) . ", " . $attr['products_text_attributes_id'] . ", '" . $attr['products_text_attributes_text'] . "')"); } tep_db_query("delete from customers_basket_text_attributes where products_id = " . tep_get_prid($order->products[$i]['id']) . " and session_id = '" . $osCsid . "'"); // eof denuz text attr but the query doesn't seem to be fired... Any clues about solving this problem?
×
×
  • Create New...