Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

BRD-75

Pioneers
  • Posts

    11
  • Joined

  • Last visited

Profile Information

  • Real Name
    Brian

BRD-75's Achievements

  1. Here's a post from this thread with the same issue as you. http://www.oscommerce.com/forums/topic/50221-contribution-individual-product-shipping-prices/page__view__findpost__p__1356365 The closest issue I've had to yours was that mine weren't showing up at all. There's a post in this thread on that one too but don't see it right off hand. It had to do with code placement where duplicate codes existed in the same file and I had it pasted on the wrong one. The instructions hadn't indicated exactly where to put the code.
  2. I have installed the latest version (Individual Product Shipping Prices - v.4.5 full) with the update in OSC v2.2 RC2a. I have gone thru installing the module, quadruple checked my work and have read this thread backwards and forwards numerous times but can not seem to get it to work right. I have not come across any errors but am finding it to operate like many have mentioned in this thread but have not found a fix for it. I am interested in using this IPSP mod with FedEx but they are not working in conjunction properly. Is it possible to do this without using a free shipping mod or a multi vendor mod? I have not found a "free shipper" mod and the only multi vendor mod I could find was really old and listed as beta. In addition, I have not found any code in my files or in the code that needs to be added with this mod that refers to freeshipper except in the instructions. Commenting out the code that referred to freeshipper did not sound like it would accomplish what I am after so I have assumed it is not required for this mod and may have come from an older version of OSC. If it is required I need to find full versions of any php files it needs to be included in. My issues are as follows: *IPSP-ON, FedEx-ON -x1 item in cart without an IPSP value added in it's profile and both shipping methods show to be available in checkout_shipping.php. (FedEx shows accurate pricing and IPSP shows $0.00. This allows a customer to select the IPSP=$0.00 charge and skip FedEx charges. If they select the FedEx quote as they should it shows correctly at checkout_confirmation.php.) -x1 item in cart without an IPSP value added in it's profile AND -1x item in cart with a $50 IPSP value added in it's profile (FedEx shows accurate pricing and IPSP shows $50.00. This allows a customer to select either shipping method. If they select the FedEx quote as they should it shows FedEx and IPSP charges correctly at checkout_confirmation.php. If they choose the $50 IPSP it skips the FedEx charge and only charges the $50 IPSP charge.) -1x item in cart with a $50 IPSP value added in it's profile (FedEx still shows as a selectable option and IPSP shows $50.00. If a customer selects the "cheaper" FedEx option they are then charged both the FedEx charge and the IPSP charge at checkout_confirmation.php. In this example the FedEx option should be disabled and not be offered as an option.) I also tested it with IPSP turned-OFF and FedEx-ON and everything works as it should except if any item is added to the cart with an IPSP charge in it's profile, it's charge is added at checkout_confirmation.php. There seems to be no way to disable this mod without removing all IPSP charges from every item profile. I am offering some items shipped out of my stock from my zip code that require FedEx quotes as well as items shipped directly from the manufacturer with a set shipping price. If both types of items are purchased I need it to include both charges but need it to not offer IPSP as a selectable option. It would be great if it could still show the IPSP charge but disable the radio button. If only one item of either type is selected I need it to disable the other method. I will be offering free shipping on some items but would be ok with charging $1 instead if adding a free option makes it even more complicated. I have been working on this module for about 3 weeks now with a live operating store and had to result to modifying the flat rate shipper to a service charge free shipping quote option where it is the only option available and I then bill for shipping after purchases are made via PayPal prior to shipping the items. It is a crude and time consuming method but it seems to be the only way without getting this mod to work. Any and all suggestions would be greatly appreciated! I am stuck and don't have a clue to what I should try next.
  3. I ended up removing the XML mod and installed UPSChoice which seems to be working fine.
  4. Well, I removed the extra line from the UPS XML mod : $value = ereg_replace (", --none--", "", $value); This is all the UPS choice mod uses: if( is_array( $value ) ) $value = implode( ", ", $value); And am now just getting two errors: Admin side- in modules Deprecated: Assigning the return value of new by reference is deprecated in public_html/admin/includes/classes/xml_5.php on line 25 Cust side- shipping checkout Deprecated: Assigning the return value of new by reference is deprecated in public_html/includes/classes/xml_5.php on line 25
  5. I am working to install this module and am coming up with this error during shipping checkout: Deprecated: Function ereg_replace() is deprecated in ....admin/modules.php on line 49 referring to the code I inserted from the install.txt: if (tep_not_null($action)) { switch ($action) { case 'save': while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) { if (is_array($value) ) { $value = implode( ", ", $value); $value = ereg_replace (", --none--", "", $value); } tep_db_query("update " . TABLE_CONFIGURATION . " set configuration_value = '" . $value . "' where configuration_key = '" . $key . "'"); } tep_redirect(tep_href_link(FILENAME_MODULES, 'set=' . $set . '&module=' . $HTTP_GET_VARS['module'])); break; case 'install': I have this error on the admin side: Deprecated: Assigning the return value of new by reference is deprecated in ...admin/includes/classes/xml_5.php on line 25 Changing it to preg_replace I get a missing deliminator
×
×
  • Create New...