RE: [PHP] PayPal: Instant Payment Notification

2002-04-28 Thread Chris Montgomery
- From: Lauri Vain [mailto:[EMAIL PROTECTED]] Sent: Saturday, April 27, 2002 11:26 AM To: 'PHP' Subject: [PHP] PayPal: Instant Payment Notification Hello there, Has anybody worked with PayPal's Instant Payment Notification? How exactly does it work -- will the payer ever go

[PHP] PayPal: Instant Payment Notification

2002-04-27 Thread Lauri Vain
Hello there, Has anybody worked with PayPal's Instant Payment Notification? How exactly does it work -- will the payer ever go to PayPal's site itself (and leave my site for a sec) or will all contact with PayPal's servers be handled by my script? I have to write a system that enables

Re: [PHP] PayPal: Instant Payment Notification

2002-04-27 Thread Jason Wong
On Sunday 28 April 2002 00:25, Lauri Vain wrote: Has anybody worked with PayPal's Instant Payment Notification? Not yet, but am about to. How exactly does it work -- will the payer ever go to PayPal's site itself (and leave my site for a sec) or will all contact with PayPal's servers be

Re: [PHP] PayPal: Instant Payment Notification

2002-04-27 Thread Gianluca Baldo
Hi all- Has anybody worked with PayPal's Instant Payment Notification? Not yet, but am about to. we integrated paypal in phpauction. At paypal.com, one you register as developer, you have access to their documentation. That's enough to get it working. How exactly does it work -- will the

Re: re: [PHP] Paypal Instant Payment Notification

2002-01-29 Thread David
simply change the fsocketopen's socket from 80 to 443 (SSL port) I'm thinkin' the problem is that I'm not posting to https://www.paypal.com/blah, but to http://www.paypal.com/. How do I use the posttohost function (or some other function) to post securely? -- PHP General Mailing List

re: [PHP] Paypal Instant Payment Notification

2002-01-28 Thread Sondra Russell
hi guys! i've been working on this darn instant payment notification script for weeks now. I've gotten pretty close based on some recent posts that use the great Rasmus' postToHost function to talk to paypal and get the confirmation. However, the reply from paypal, instead of being one

[PHP] Paypal Instant Payment Notification

2001-12-11 Thread Randall Smith
I'm close to finishing a php script for Paypal's Instant Payment Notification Service. Here is what I have so far. I grapped this function off of the php documentation and added the last line. This forms the response to be posted back to Paypal.

Re: [PHP] Paypal Instant Payment Notification

2001-12-11 Thread Chris Allen
My problem (due to my lack of fundemental understanding) is that I don't know how to read Paypal's response to the post. Paypal describes the response like this, PayPal will respond to the post with a single word, 'VERIFIED' or 'INVALID', in the body of the response. YES EXACTLY. it will be

[PHP] Paypal instant payment notification

2001-08-09 Thread Erica Douglass
Hello, I have a customer who wants to implement Paypal instant payment notification on his website. Basically, he wants a script that emails a custom message once a customer purchases an item. Instant Payment Notification has the ability to do this. However, I have a couple of questions: -- Is

RE: [PHP] Paypal instant payment notification

2001-08-09 Thread Jason Murray
To me, this seems kind of like a hack -- i.e. there should be a better way to do this, perhaps as part of a (free or low-cost) shopping cart and payment prcoessing system. Also, there seems to be no way to test this without sending the Paypal user money. (I am going to contact Paypal

Re: [PHP] Paypal instant payment notification

2001-08-09 Thread Richard Lynch
Actually it doesn't seem like too much of a hack, except that it seems to be not a realtime operation (otherwise why would they need to contact your script?). They contact your script so you can do whatever *YOU* want for each transaction -- Log it, email the customer, ring a bell, whatever.