Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

adanob

Pioneers
  • Posts

    43
  • Joined

  • Last visited

Profile Information

  • Real Name
    Adanob
  • Gender
    Male
  • Location
    Florida

adanob's Achievements

  1. Where do I locate the link to download "2.3.4 BS responsive community version?"
  2. I also got this error: 1366 - Incorrect integer value: '' for column 'configuration_group_id' at row 1 INSERT INTO `configuration_group` VALUES ( '', 'Related Products', 'Optional Related Products module', '999', '1' ) [TEP STOP]
  3. This is a great module. I just installed OS 2.34 and the module was included. When I clicked the "Upgrade Earlier Version to Version 4.0" the Configuration page disappeared. How do I delete the module so I can do a complete re-install?
  4. No - I mistakenly uploaded the modules.php file into the incorrect directory. What does this mean? Cannot redeclare class usps .......catalog/includes/modules/shipping/usps.php on line 16..... The class file reads (on line 16) class usps { var $code, $title, $description, $icon, $enabled, $usps_weight, $xml_errors; // The server URL and DLL are here in case they ever need to be changed var $usps_server = 'production.shippingapis.com'; var $api_page = '/shippingapi.dll'; where else is this declared?
  5. Thanks Jim, That got rid of the error. Unfortunately this contribution does not show in the shopping cart. It says: Shipping MethodThis is currently the only shipping method available to use on this order. Add Comments About Your Order
  6. This may be an easy fix but I am do not where to start. This is a fresh install error reads: 1406 - Data too long for column 'configuration_description' at row 1 insert into configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Shipping Methods (Domestic and International)', 'MODULE_SHIPPING_USPS_TYPES', '0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00, 0, 70, 0.00', 'Checkbox: Select the services to be offered Minimum Weight (lbs)first input field Maximum Weight (lbs):second input field USPS returns methods based on cart weights. These settings will allow further control (particularly helpful for flat rate methods) but will not override USPS limits', '6', '0', 'tep_cfg_usps_services(array( \'First-Class MailRM Stamped Letter\', \'First-Class MailRM Large Envelope\', \'First-Class MailRM Parcel\', \'Media Mail Parcel\', \'Library Mail Parcel\', \'USPS Retail GroundTM\', \'Priority MailTM\', \'Priority MailTM Flat Rate Envelope\', \'Priority MailTM Legal Flat Rate Envelope\', \'Priority MailTM Padded Flat Rate Envelope\', \'Priority MailTM Small Flat Rate Box\', \'Priority MailTM Medium Flat Rate Box\', \'Priority MailTM Large Flat Rate Box\', \'Priority MailTM Regional Rate Box A\', \'Priority MailTM Regional Rate Box B\', \'Priority Mail ExpressTM\', \'Priority Mail ExpressTM Flat Rate Envelope\', \'Priority Mail ExpressTM Legal Flat Rate Envelope\', \'First-Class MailRM International Letter\', \'First-Class MailRM International Large Envelope\', \'First-Class Package International ServiceTM\', \'Priority Mail InternationalRM\', \'Priority Mail InternationalRM Flat Rate Envelope\', \'Priority Mail InternationalRM Small Flat Rate Box\', \'Priority Mail InternationalRM Medium Flat Rate Box\', \'Priority Mail InternationalRM Large Flat Rate Box\', \'Priority Mail Express InternationalTM\', \'Priority Mail Express InternationalTM Flat Rate Envelope\', \'USPS GXGTM Envelopes\', \'Global Express GuaranteedRM (GXG)\' ), ', now())
  7. Answering my own question. That is a first for me. I found the problem. My shipping module for FedEx has a field called products_ready_to_ship. Removed module for now and the error message is gone. I bet I could write a SQL statement to add that field to the database?
  8. I am getting a different 1054 error. This just showed up today. "1054 - Unknown column 'products_ready_to_ship' in 'field list' SELECT products_ready_to_ship, products_ship_sep, products_weight FROM products WHERE products_id = 2538 LIMIT 1; [TEP STOP]"
  9. I am not sure yet but it may have something to do with this: // check for ready to ship field if (MODULE_SHIPPING_FEDEX_WEB_SERVICES_READY_TO_SHIP == 'true') { if (isset($_SESSION['cart'])) { $products = $_SESSION['cart']->get_products(); } else { $products = $cart->contents; } $packages = array('default' => 0); $product_dim_type = 'in'; $new_shipping_num_boxes = 0; foreach ($products as $product) { $dimensions_query = "SELECT products_ready_to_ship, products_ship_sep, products_weight FROM " . TABLE_PRODUCTS . " WHERE products_id = " . (int)$product['id'] . " LIMIT 1;"; $dimensions = tep_db_query($dimensions_query); if ($product_dimensions = tep_db_fetch_array($dimensions)) { if ($product_dimensions['products_ready_to_ship'] == 1 || $product_dimensions['products_ship_sep'] == 1) { for ($i = 1; $i <= $product['quantity']; $i++) { $packages[] = array('weight' => $product_dimensions['products_weight']); } } else { $packages['default'] += $product_dimensions['products_weight'] * $product['quantity']; } } }
  10. Hi: I am gettting the exact same error. Have you been able to fix yours? I checked the install instructs and the only language file to upload is the /catalog/admin/includes/languages/english/categories.php The "admin/modules.php" is looking for an array.
  11. That's funny. I have attached the source for the module on Ebay. ShippingCenter.html
  12. I am looking for an Administrator's Shipping Module. Does this Add on exist? When I am shipping from Ebay there is a shipping module available. I have attached the edited source to see if anyone knows what I am referring to.
×
×
  • Create New...