Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

jestapher

Archived
  • Posts

    8
  • Joined

  • Last visited

Profile Information

jestapher's Achievements

  1. I don't think you understand how Instant Payment Notification works. The customer should never hit the paypal_notify.php page. When the customer completes a transaction on Paypal, Paypal's servers POST details of the order to paypal_notify.php. Assuming everything is kosher, your site will update the order status and send out the emails -- at least it should. If you're geting blank addresses in the order email, it's because (I think) the code is calling an incorrect function. To fix this, go here: http://www.oscommerce.com/forums/viewtopic.php...p=170917#170917 If you're not getting emails at all, make sure "Set Orders Status" is set to something other than 0 (in my store it was set to "default" which equaled 0). This will cause orders not to be completed.
  2. The current version of this contribution has some bugs and things to watch out for. Here are two things I had issues with: 1. In the Admin, under the details for this module, make sure "Set Order Status" is set to something other than "default" (which is 0). If you can't see orders in the Admin, look in the database table "orders" and make sure orders_status is set to a valid orders_status_id (from the "orders_status" table). Setting orders_status to 1 should work (unless you've messed with your "orders_status" table). Or I'm guessing you can just add an entry to the database table "orders_status" with an orders_status_id of 0 (I haven't tested this). 2. The emails sent with this module do not include the addresses. The function called to generate the addresses either a) uses an incorrect parameter or B) is the wrong function (and parameters). The following is a fix: http://www.oscommerce.com/forums/viewtopic.php...p=170917#170917
  3. I'd suggest replacing it with SHIPPING_ORIGIN_ZIP. Better yet, grab the latest version of ups.php from http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/tep/. In unix, I do something like this: lynx --source 'http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/tep/catalog/catalog/includes/modules/shipping/ups.php?rev=1.54' > /path/to/ups.php
  4. Aha! Thanks for solving my problem. I manually upgraded the UPS module and started getting: Error: Invalid ShipperPostalCode You hit the nail on the head. I fixed this by issuing the following SQL commands: update configuration set configuration_key='SHIPPING_ORIGIN_ZIP' where configuration_key='STORE_ORIGIN_ZIP'; update configuration set configuration_key='SHIPPING_ORIGIN_COUNTRY' where configuration_key='STORE_ORIGIN_COUNTRY'; Thanks again for the help.
×
×
  • Create New...