Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Lucky#13

Archived
  • Posts

    18
  • Joined

  • Last visited

Profile Information

  • Real Name
    Matt
  • Gender
    Male

Lucky#13's Achievements

  1. Good Afternoon All! I have searched the forums for about 4 hours already, I have found people having the same issues as me but no answers. I have just installed the Newest PayPal IPN Module and now I am not receiving any order notification emails. I do however receive the PayPal payment emails. I was hoping anyone might have an answer to this mystery. Info: Linux PHP 4.3.11 sendmail godaddy (already set the cUrl) IPN is updating order status correctly Business ID (store owner email address) the same as the primary email address in paypal No Error Emails are being sent/received. One modification I have in the checkout_process file was the tracking contribution. Please let me know if I need to post any files. Thanks.
  2. THANK YOU THANK YOU THANK YOU!!!!!! I actually just received and email back from godaddy outlining this change. I guess I must have skipped over it. Thank you, I really really appreciate your support and additions to this contribution JanZ
  3. Good Afternoon All! I have been trying to install this contribution for the better part of 8 hours now and I finally got the checkout_shipping page to quit hanging. I have now encountered a new problem. I am using a Go Daddy hosting account, but I have followed all of the steps outlined in the forums for the cURL problem. I have pasted the lines (GODADDY STUFF) in the catalog/includes/modules/shipping/upsxml.php file so now the code looks like this; curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $xmlRequest); curl_setopt($ch, CURLOPT_TIMEOUT, (int)$timeout); curl_setopt ($ch, CURLOPT_HTTPPROXYTUNNEL, TRUE); //GODADDY STUFF curl_setopt ($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP); curl_setopt ($ch, CURLOPT_PROXY, "http://64.202.165.130:3128"); curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt ($ch, CURLOPT_PORT, 80); //END GODADDY STUFF I also have enabled the error log and I have pasted it below; DATE AND TIME: 2007-06-12 13:54:37 UPS URL: https://www.ups.com:443/ups.app/xml/Rate UPS REQUEST: <?xml version="1.0"?> <AccessRequest xml:lang="en-US"> <AccessLicenseNumber>AC026F8CDA*****</AccessLicenseNumber> <UserId>***********</UserId> <Password>*******</Password> </AccessRequest> <?xml version="1.0"?> <RatingServiceSelectionRequest xml:lang="en-US"> <Request> <TransactionReference> <CustomerContext>Rating and Service</CustomerContext> <XpciVersion>1.0001</XpciVersion> </TransactionReference> <RequestAction>Rate</RequestAction> <RequestOption>shop</RequestOption> </Request> <PickupType> <Code>01</Code> </PickupType> <Shipment> <Shipper> <Address> <City>Waterford</City> <StateProvinceCode>MI</StateProvinceCode> <CountryCode>US</CountryCode> <PostalCode>48328</PostalCode> </Address> </Shipper> <ShipTo> <Address> <City>Commerce</City> <StateProvinceCode>MI</StateProvinceCode> <CountryCode>US</CountryCode> <PostalCode>48382</PostalCode> <ResidentialAddressIndicator/> </Address> </ShipTo> <Package> <PackagingType> <Code>02</Code> </PackagingType> <Dimensions> <UnitOfMeasurement> <Code>IN</Code> </UnitOfMeasurement> <Length>24.00</Length> <Width>24.00</Width> <Height>24.00</Height> </Dimensions> <PackageWeight> <UnitOfMeasurement> <Code>LBS</Code> </UnitOfMeasurement> <Weight>25.5</Weight> </PackageWeight> <PackageServiceOptions> <InsuredValue> <CurrencyCode></CurrencyCode> <MonetaryValue>210</MonetaryValue> </InsuredValue> </PackageServiceOptions> </Package> </Shipment> <CustomerClassification> <Code>01</Code> </CustomerClassification> </RatingServiceSelectionRequest> [b]Error from cURL: Error [3]: UPS RESPONSE: [/b] The error email I received states this; Error from cURL: Error [7]: experienced by customer with id 21 on 2007-06-12 14:19:12 and the user sees the following message: Rating and Service 1.0001 0 An unknown error occured while attempting to contact the UPS gateway : Rating and Service 1.0001 0 An unknown error occured while attempting to contact the UPS gateway If you prefer to use ups as your shipping method, please contact us via Email. I have not been able to get this thing working. It states cURL is enabled, I am losing faith. :'( Here is some server info; PHP Version: 4.3.11 (Zend: 1.3.0) Server OS: Linux 2.4.21-47.0.1.ELsmp CURL support enabled CURL Information libcurl/7.10.6 OpenSSL/0.9.7a ipv6 zlib/1.2.3 --with-curl=/usr/bin/curl I have also made sure the product has a weight and dimensions. Please help!! Matt
  4. Hello Again, I was just wondering if it were possible to add a package qty box in the product entry page; a simple text box that the user could specify the number of boxes the product would ship in. I would think this would have to over-ride the dimensional support. The product weight could then be divided by the number specified in this box. I am not sure how to incorporate this or even where to start as my PHP is at a beginner level. If anyone may know how or where to start any help would be greatly appreciated. Thanks. :D
  5. Satish Thanks for the reply, Well, the products themselves are tires. The idea is a package of tires (meaning 4), but rather than putting them in as separate products and having the customer enter a qty of four, they are put in as 1 product (set). This is where the problem is because there are sometimes 4 packages or 2 packages, depending on tire size. I think this is the answer to your question, sorry if I don't make sense :unsure: . So when i set product dimensions, I put the dimensions of 1 tire and the weight of all tires hoping it would split them accordingly, but I get the maximum package weight error. Thanks again for your reply, please let me know if there is anything else I can try and describe. Matt
  6. Sorry posted in General Forum on accident. Any help would be awesome.
  7. HELLO EVERYBODY! I have been searching for the better part of 2 weeks (in my free time) and I cannot figure out how to fix this issue. I am receiving the maxium package error when I have dimensional support or ready to ship support turned on. I have gone through all of the updates to make sure everything is current to 1.2.6 version. My Problem - I have a product package (4 total peices), weighing a total of 180 lbs, I want it to show 4 packages when UPS XML displays the shipping quote to the customer. With the dimensional support/ready to ship on, it gives me the 150 max package error. With it off, it gives me a quote with 3 packages. I have to leave the max package ship weight (per box) around 70 lbs because I have single items that weight that amount and must ship in one box. I was thinking if it were possible to set the number of packages in the product entry page and still have the ups xml package work? My php is intermediate at best, so I am unsure of where to even start trying to implement.....any help would be GREATLY appreciated. Need help ASAP, if anyone can spare any time. Thanks. The other possiblity is just adding a flat rate for items over a certain weight, but if the UPS XML module could be adapted or if someone could explain to me how to make it work, that would be best. Thanks all. :thumbsup:
×
×
  • Create New...