Applauz Posted December 11, 2005 Share Posted December 11, 2005 I have never used this IPN stuff and am really confused how to set it up. I have installed the module no problem. Can someone give me user friendly instructions what to do for the settings of this module. Thank You Quote Link to comment Share on other sites More sharing options...
Applauz Posted December 11, 2005 Share Posted December 11, 2005 OK .... I dont get it .... Ive setup the module ... I got the cert_key_pem.txt and the paypal_cert_pem.txt uploaded.... Im not using SSL .. When I process an order it goes to the pay pal screen and says the cart is empty. Please Help! Quote Link to comment Share on other sites More sharing options...
Applauz Posted December 11, 2005 Share Posted December 11, 2005 OK .. I managed to get the certificates uploaded and in the right spots... I am using the encrypted option ... Im not getting errors anymore.... however the total price is NOT being passed onto the PayPal page. Quote Link to comment Share on other sites More sharing options...
surroundsfx Posted December 11, 2005 Share Posted December 11, 2005 Hi everybody :-) i've just read this entire (loooong) thread looking for a solution to a little problem i'm having, but i didn't find one... i'm running ms2.2 with the current ipn contrib, download manager 5.3 and the email subject order number status contrib with sandbox. IF i have autoreturn deactivated in the paypal profile, the following steps execute ok: 1) on confirmation stage, an order with "preparing" status is generated, as intended without customer notification 2) upon payment, status is updated to the status selected in the ipn payment module settings (which is the status that will allow download of the purchased file, set in the download manager settings)...so ipn basically works 3)when the customer returns to the checkout success page by clicking continue, he receives an order confirmation email (with the order number in the subject) and is able to download the file (if paypal hasn't been lagging with the ipn verification, that is). Note that this happens *after* the status was set to "confirmed" by the ipn verification executing correctly. So far so good....nearly. The customer *does* receive the checkout-success confirmation email, but he *does not* get notified that the order status has been updated to "verified" status. Actually, in the order admin history, the order of things is reversed: Date Added Customer Notified Status Comments 12/11/2005 20:42:14 X Confirmed PayPal IPN Verified [Completed (Unverified; 1.16EUR)] 12/11/2005 20:42:22 yes Preparing status: confirmed (before ipn verification was completed, entry #1 had status "preparing") This is obviously not much of a problem when ipn lag is near-zero, as the customer will be able to immediately download his file and will probably not care much wether he gets another "status updated" notification email or not....but if the verification process takes a while, the cutomer will first see that "downloads are not available before payment is verified" and will obviously want to be notified when the verification is done and he can download his files (as he would usually be when the status of his order is updated manually). Actually i suspect that this issue may not arise at all when the ipn verification *is* laggy as it will probably usually be in a live setting ( it looks like returning to the checkout succes triggers the second entry listed above after the ipn verification set the status to confirmed, which seems to be a result of ipn verification being faster than the customer returing to the site)....but this needs to be tested before the shop can go online. Now i thought i'd be smart and just force returning to the site to happen before the ipn verification process completes by enabling auto-return in the paypal profile. This basically results in the status not being updated at all, though the comment contains "paypal ipn verified..." Date Added Customer Notified Status Comments 12/11/2005 20:42:14 X Preparing PayPal IPN Verified [Completed (Unverified; 1.16EUR)] 12/11/2005 20:42:22 yes Preparing status: preparing So this seems like a no-go route....argh Any ideas how i can cause a status-update notification to be sent? thx in advance, denis Quote Link to comment Share on other sites More sharing options...
Applauz Posted December 11, 2005 Share Posted December 11, 2005 This is driving me crazy!!!!! I have no errors anymore ... just the dollar value is not being passed to PayPal ... .. and I need it so that people cannot alter the price on the Pay Pal screen as well. Quote Link to comment Share on other sites More sharing options...
Applauz Posted December 11, 2005 Share Posted December 11, 2005 This module is horrible! .... The person can simply close the PayPal screen then go back and re-log into the store and the download link is now available for them without paying. Quote Link to comment Share on other sites More sharing options...
Applauz Posted December 12, 2005 Share Posted December 12, 2005 No one knows why the dollar value is not passed to the pay pal screen ?????? Quote Link to comment Share on other sites More sharing options...
Anna Posted December 12, 2005 Share Posted December 12, 2005 (edited) PayPal IPN Address Change During Checkout, Not updating Order (osc PayPal IPN contribution) I think this might be related to this bug report but I'm not sure if anyone has come up with a workaround: http://www.oscommerce.com/community/bugs,2498 (A) Customer places order with Ship-to address 'A' (B) Changes address during checkout to 'B' (C ) Pays in Paypal - Paypal has correct address 'B' (D) Info is returned from PayPal - order status is updated but order info still has 'A' address (E) Order email and PayPal email have correct 'B' address but order record still has 'A' address When you print out the order or packing slip, it's showing the old 'A' ship address, so you end up mistakingly shipping to the incorrect address unless you manually compare the email. Any suggestions on how to update the order with the revised 'B' shipping address? Thanks ... Hiya, I've hit this too and seem to have fixed it. I have messed hugely with my checkout code so unfortunately can't guarantee this'll work for others, but for what it's worth: add $cart->cartID = $cart->generate_cart_id(); into checkout_shipping.php at about line 47: if (!tep_session_is_registered('cartID')) tep_session_register('cartID'); $cart->cartID = $cart->generate_cart_id(); //<- this is the new line $cartID = $cart->cartID; Please do & backup & test it well! Let me know if it works & I'll update the bug report. The problem also affects the billing address so I'm going to see if the same approach will solve that too. annA Edited December 12, 2005 by Anna Quote Link to comment Share on other sites More sharing options...
Applauz Posted December 12, 2005 Share Posted December 12, 2005 Nope .. this doesnt work. The thing thats strange tho ... is that once you go to the first PayPal screen .. the dollar value is at $0.00 If the person changes their mind and just clicks the BACK button to go back to the store... then clicks on My Account ... the item is listed as a purchased item. If it was a Downloadable Item .. the item is now showing the download link and they can get it for free. Quote Link to comment Share on other sites More sharing options...
Anna Posted December 12, 2005 Share Posted December 12, 2005 Nope .. this doesnt work. Hi Applauz I hope you weren't reading my code as a solution for your $0 problem - which I'm sorry I have no idea about - as my code was in reply to the earlier post I quoted! annA Quote Link to comment Share on other sites More sharing options...
Guest Posted December 13, 2005 Share Posted December 13, 2005 $cart->cartID = $cart->generate_cart_id();into checkout_shipping.php at about line 47: if (!tep_session_is_registered('cartID')) tep_session_register('cartID'); $cart->cartID = $cart->generate_cart_id(); //<- this is the new line $cartID = $cart->cartID; Please do & backup & test it well! Let me know if it works & I'll update the bug report. The problem also affects the billing address so I'm going to see if the same approach will solve that too. annA Seems to work for me. Quote Link to comment Share on other sites More sharing options...
Anna Posted December 13, 2005 Share Posted December 13, 2005 (Re: PayPal IPN Address Change During Checkout, Not updating Order & http://www.oscommerce.com/community/bugs,2498 ) Seems to work for me.Great news thanks. :) I'm less sure when it comes to the billing address as I don't use checkout_payment.php, so my untested suggestion would be to add $cart->cartID = $cart->generate_cart_id(); $cartID = $cart->cartID; at line 37 i.e. just after the "// avoid hack attempts" block. I hope these changes don't affect the hack detection, which I've yet to check, but frankly it's more important to me that the correct addresses get saved! anNa Quote Link to comment Share on other sites More sharing options...
Applauz Posted December 13, 2005 Share Posted December 13, 2005 Can someone PLEASSSSSSSSSSSSSSSSSSSEEEEEEEEEEEEEEEEEEEE help me with this problem I am having! .... I have a store set to launch in 3 days .. and I am screwed right now. Quote Link to comment Share on other sites More sharing options...
Anna Posted December 13, 2005 Share Posted December 13, 2005 Can someone PLEASSSSSSSSSSSSSSSSSSSEEEEEEEEEEEEEEEEEEEE help me with this problem I am having! .... Do you get the same problem with encryption switched offF? Quote Link to comment Share on other sites More sharing options...
Guest Posted December 13, 2005 Share Posted December 13, 2005 (Re: PayPal IPN Address Change During Checkout, Not updating Order & http://www.oscommerce.com/community/bugs,2498 ) Great news thanks. :) I'm less sure when it comes to the billing address as I don't use checkout_payment.php, so my untested suggestion would be to add $cart->cartID = $cart->generate_cart_id(); $cartID = $cart->cartID; at line 37 i.e. just after the "// avoid hack attempts" block. I hope these changes don't affect the hack detection, which I've yet to check, but frankly it's more important to me that the correct addresses get saved! anNa As far as I can tell this works. I went to the confirmation page and then edited my billing address and then went through paypal and the invoice has the correct billing address. this is my block of code. Please correct anything that may look wrong. // avoid hack attempts during the checkout procedure by checking the internal cartID if (isset($cart->cartID) && tep_session_is_registered('cartID')) { if ($cart->cartID != $cartID) { tep_redirect(tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL')); } } // added to fix billing address change bug from post http://www.oscommerce.com/forums/index.php?s=&showtopic=179917&view=findpost&p=757486 $cart->cartID = $cart->generate_cart_id(); $cartID = $cart->cartID; Quote Link to comment Share on other sites More sharing options...
Applauz Posted December 13, 2005 Share Posted December 13, 2005 Do you get the same problem with encryption switched offF? Yes it is the exact same thing with encryption on and off. Quote Link to comment Share on other sites More sharing options...
metricbikes Posted December 13, 2005 Share Posted December 13, 2005 Hello All, Paypal is working great on my site! One issue - is there a way to add a handling fee for PayPal orders to offset the higher rates? The idea would be to add $5.00 to every order total when purchased with PayPal and not add when purchased through our credit card portal. Any ideas would be appreciated. Steve Quote Link to comment Share on other sites More sharing options...
Guest Posted December 17, 2005 Share Posted December 17, 2005 this paypal inp is a complete nightmare. i went back to a new installation of oscommerce and paypal settings and went through it step by step. no matter what i do when i click confirm order the amount reads zero. payapl does not copy the cart amount. i have been trying for weeks to get this working with every module availible and cannot find any answers anywhere to this problem. trying new installations and different modules the problem is the same so must have something to do with the notify_url post but i do not understand how it works yet. anyone know how to fix this problem please let me know. Quote Link to comment Share on other sites More sharing options...
Applauz Posted December 17, 2005 Share Posted December 17, 2005 By any chance are you using Canadian funds ? Quote Link to comment Share on other sites More sharing options...
RollingStone Posted December 17, 2005 Share Posted December 17, 2005 Anyone having issues with customers saying they are getting an error that says their billing address is not confirmed. I dont seem to get this message from customers when the PayPal IPN is disabled. Any thoughts on this? :blink: Quote Link to comment Share on other sites More sharing options...
surroundsfx Posted December 18, 2005 Share Posted December 18, 2005 hi everybody.... as noone replied to my earlier question, let me re-phrase it (maybe no-one liked to read such a long post? ;-) ) i'm using ms2.2 with the ipn module and download manager. the idea is to enable downloads only after the payment has been confirmed via ipn. this basically works, as long as payment isn't verified, the cutomer will see the "red link", once payment *is* verified, he can download the files. the problem i'm having is that the order-status update generated by the ipn module does not trigger a customer-notification of this status update....so either a)he'll have to keep coming back to his account to see wether he now may download his product (which isn't a very customer-friendly thing) or B) i have to manually set his order status to an even higher status like "shipping" to trigger the notification....which means the customer will have to wait for me to do that and if he's in a different time-zone that may take a while (not exactly instant graftification). i guess either i'm doing something wrong or i need to edit the paypal_ipn.php....how would i go about this? thx in advance. denis Quote Link to comment Share on other sites More sharing options...
Skeetergirl Posted January 4, 2006 Share Posted January 4, 2006 Is there a way to get the customers email address and phone number to be added to the confirmation email sent to customer and store owner? Thanks in advance!! Quote Link to comment Share on other sites More sharing options...
mkaiserfl Posted January 4, 2006 Share Posted January 4, 2006 No message--just can't find any other way to subscribe to this thread other than posting it. :) Quote Mike in Key West Link to comment Share on other sites More sharing options...
surroundsfx Posted January 9, 2006 Share Posted January 9, 2006 well i figured out a not-so-elegant temporary solution to the customer notification-on-automated-status-change (i'm doing it *manually* now...great :-( ) BUT paypal ipn module seems to sometimes not pass on the sales tax to paypal....somewhat randomly the customer will be charged the net amount only. now this *is* a show-stopper. is this a known issue with osc or paypal? any ideas? please help, my shop is live and this is costing me real-world cash. cheers, ssfx Quote Link to comment Share on other sites More sharing options...
Jos Medinger Posted January 9, 2006 Share Posted January 9, 2006 Could someone offer some help please :-) We have a live store on www.lingerie-confidential.co.uk which has been running PayPal IPN version 2.8 for over a year without fault. All of a sudden we have stopped receiveing papypal orders and this can be tracked to a problem with the system when it sends the customer over to the Paypal site. At the point at which the customer selects to pay by Paypal and clicks continue, this takes them to the Paypal site - but nothing more - they are asked to log in on the standard homeapge and are given no order details or anything to pay... Can anyone hazard a suggestion as to why this may be? I have disabled and re-enabled the contribution and re-uploaded the paypal module file to ensure all the correct files are in place however the issue continues... I would appreciate some help! The only other changes made to the store recently are the osCommerce 2.2 Milestone 2 Update 051113 which addressed the security issues in OsC. Thanks Jos Quote =============== Simple yet Creative Get Online Web Design : getonlinedesign.com =============== Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.