Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

kt357

Archived
  • Posts

    4
  • Joined

  • Last visited

Profile Information

  • Real Name
    Kevin Tidwell

kt357's Achievements

  1. I had the same problem. It's most likely you left something out of your admin/categories.php file. Do you have this line in it's entirety; $sql_shipping_array = array('products_ship_zip' => tep_db_prepare_input($_POST['products_ship_zip']),'products_ship_methods_id' => tep_db_prepare_input($_POST['products_ship_methods_id']),'products_ship_price' => round(tep_db_prepare_input($_POST['products_ship_price']),4),'products_ship_price_two' => round(tep_db_prepare_input($_POST['products_ship_price_two']),4));//psm Mine is around line 289. Hope this helps.
  2. Looks like you're missing your get_shiptotal definition. Check post 449. He posted his shipping.php and it includes the definition. Search for 'function get_shiptotal() {'
  3. It should be defined in includes/application_top.php like this: function tep_get_configuration_key_value($lookup) { $configuration_query_raw= tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key='" . $lookup . "'"); $configuration_query= tep_db_fetch_array($configuration_query_raw); $lookup_value= $configuration_query['configuration_value']; return $lookup_value; }
  4. It looks like you left off a ) on line 173 of your order.php file.
×
×
  • Create New...