Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

bluebozzle

Archived
  • Posts

    2
  • Joined

  • Last visited

About bluebozzle

  • Birthday 05/16/1972

Profile Information

  • Real Name
    Adam Burrough
  • Gender
    Male
  • Location
    Isle of Wight
  • Website

bluebozzle's Achievements

  1. Ignore last post as I had a problem in checkout with: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\xxx\xxx\includes\functions\database.php on line 99 so I commented out the above code and it now works. COPY THIS CODE: if (STOCK_CHECK == 'true') { // $bundle_status_query = tep_db_query("select products_bundle from " . TABLE_PRODUCTS . " where products_id = ''" . tep_get_prid($order->products[$i]['id'])); // $bundle_status = tep_db_fetch_array($bundle_query_raw);
  2. I got the same error and your right, the error is in checkout_confirmation.php. I looked at this forum and found people like yourself with the same problem, but no fixes, so went through the code myself and found the error. Having fixed it, I thought of your entry and so posting my fix to you. if (STOCK_CHECK == 'true') { $bundle_status_query = tep_db_query("SELECT products_bundle FROM " . TABLE_PRODUCTS . " where products_id = '1'" . tep_get_prid($order->products[$i]['id'])); $bundle_status = tep_db_fetch_array($bundle_query_raw);
×
×
  • Create New...