Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

johnquest

Archived
  • Posts

    6
  • Joined

  • Last visited

Profile Information

  • Real Name
    Tim Stalker

johnquest's Achievements

  1. This is the XML response I get back from USPS (bold indicates changes in /includes/modules/shipping/usps.php to accomodate) <?xml version="1.0"?> <RateV2Response> <Package ID="0"> <ZipOrigination>68507</ZipOrigination> <ZipDestination>68507</ZipDestination> <Pounds>1</Pounds> <Ounces>8</Ounces> <Size>REGULAR</Size> <Zone>1, local</Zone> <Postage> <MailService>Express Mail PO to Addressee</MailService> <Rate>18.80</Rate> (not sure how to change) </Postage> </Package> <Package ID="1"> <ZipOrigination>68507</ZipOrigination> <ZipDestination>68507</ZipDestination> <Pounds>1</Pounds><Ounces>8</Ounces> <Size>REGULAR</Size> <Zone>1, local</Zone> <Postage> <MailService>Priority Mail</MailService> <Rate>4.20</Rate> </Postage> </Package> <Package ID="2"> <ZipOrigination>68507</ZipOrigination> <ZipDestination>68507</ZipDestination> <Pounds>1</Pounds> <Ounces>8</Ounces> <Size>REGULAR</Size> <Machinable>TRUE</Machinable> <Zone>1, local</Zone> <Postage> <MailService>Parcel Post</MailService> <Rate>3.30</Rate> </Postage> </Package> </RateV2Response> I'm afraid the shipping.php class also might need to be changed as well as shipping_estimator.php but I'm not sure. Any help?
  2. I've been trying to get the USPS module working. I'm using the USPS_2.8c contrib, the latest. I've got it set up right, is working in production but the display isn't showing right: "United States Postal Service (1 x 2.1lbs) (Priority Mail9.00)" I can't figure out how to have the fee appear in the "fee" column instead of next to the shipping method. The fee isn't being calculated either and is 0.00 in the fee column. I went to shipping_estimator.php and into the usps.php files. I'm not sure if there's possibly a mistake in how the XML response from the USPS server is being read into the output of the shipping estimator and order totals or what? Any help out there for a fix? Thanks
  3. Hello, I recently installed the Enhanced Multi Vendor Shipping contrib and I'm having trouble getting it to work. I think it's not knowing exactly how to configure it in the admin interface. I use the CRELoaded6 version. The install seemed to work O.K., though I was getting errors with some of the indvship1,2,3, etc. shipping modules as well as the mltship modules. I can add vendors, create shipping methods, etc. but when I set these to my products in the products edit screens, the shipping mods only show "Free shipping - Downloads." Even though I don't have this mod assigned to the vendor. I have UPS set. "Free shipping - Downloads" shows for all of my products regardless whether or not I have the vendor and shipping mod assigned to a product. What I would like to know is if there are some directions about how to configure this. The directions for installing it are clear but I can't find documentation about how to get it working after it's installed. Any help out there? Thanks, Tim
  4. Note: You also have to change the function called " tep_get_local_path" to "tep_get_path" in all instances. J. Quest
  5. Change the function "get_uploaded_file" to "is_uploaded_file." You have to use the function names set by MS2 in the includes/functions/general.php file This is the most common set of reasons newsdesk 1.4 isn't compatible with MS2. It uses functions that aren't defined in general.php and elsewhere. I've got all of the incompatibility errors resolved but now I can't figure out how to add images successfully through Admin. I get no errors, but also no images are uploaded either. J. Quest
  6. Disabling the notifications box: I'm trying to disable the notifications box in the right column. I'm running STS with the latest version of OScommerce. The only place I see to disable it is in the left_column file. I don't have it set in the right_column file at all. Here is the code in left_column that I put in. I can either disable notifications and the bestsellers box but not just the notifications box: if (isset($HTTP_GET_VARS['products_id'])) { if (tep_session_is_registered('customer_id')) { $check_query = tep_db_query("select count(*) as count from " . TABLE_CUSTOMERS_INFO . " where customers_info_id = '" . (int)$customer_id . "' and global_product_notifications = '1'"); $check = tep_db_fetch_array($check_query); if ($check['count'] > 0) { include(DIR_WS_BOXES . 'best_sellers.php'); } //else { //include(DIR_WS_BOXES . 'product_notifications.php'); } } //else { //include(DIR_WS_BOXES . 'product_notifications.php'); } } else { include(DIR_WS_BOXES . 'best_sellers.php'); } I try this above or I set all possibilities to only include best_sellers.php and still I can't get it to work. I would like to keep bestsellers on all pages but I wan't to completely disable this notifications box. Thanks, JohnQuest
×
×
  • Create New...