Paypal IPN (Instant Payment Notification) is PayPal's message service that sends a notification when a transaction is affected.
0
votes
0answers
20 views
PayPal sandbox accounts have disappeared
I was using the paypal sandbox accounts yesterday with no issues whatsoever.
I just logged in now to do some more testing, and my paypal sandbox accounts have disappeared.
Is anyone else ...
0
votes
2answers
22 views
Matching user email with PayPal email from IPN
I'm configuring a PayPal IPN listener from this tutorial and ipnlistener.php.
When I need a user to pay, I show him this form
<form name="_xclick" ...
0
votes
0answers
26 views
call php page before submiting to paypal
what am trying to do is , once a person click on paypal button, I hash his username and db from session and I save it to Transactions and send it as custom to paypal ,so when the payment is done I can ...
0
votes
0answers
24 views
PayPal 403 Forbidden - Access to resource on the server is denied
My website has been working correctly for many years. However, today my paypal integration stopped working. Normally it shows the buy now button but now instead it is giving the following error:
403 ...
0
votes
1answer
30 views
PayPal IPN not updating MySQL database
please excuse my ignorance in advance, but i'm fairly new to php, and this one has been bugging me for a while.
i'm trying to write an IPN script for an online store that sells individual items. once ...
0
votes
0answers
22 views
PayPal IPN Listener won't work anymore
First, Thanks for your attention.
Comes to prob.
I'm using this IPN Listener code:
// IPN LISTENER
// intercetta le variabili IPN inviate da PayPal
$req = 'cmd=_notify-validate';
// legge ...
0
votes
3answers
42 views
Can I test PayPal IPN without actually making a purchase?
Can I test the PayPal IPN without actually making a purchase?
Is there a developer sandbox for testing the Request/Response functionality prior to actual implementation?
Basically, I have my server ...
0
votes
0answers
14 views
PayPay IPN and chained payments - receiver_email not coming from PayPal
I've been struggling with this for the past 2 days.
I'm using Adaptive (chained) payments and IPN for getting the notifications.
Now, the problem is checking for the receiver_email field.
Paypal ...
1
vote
1answer
32 views
Reset DB table if PayPal payment not received
I'm working on a site where people can sign up for "time slots" for classes. The available date/time slots are stored in a database. When the page opens, the PHP script checks for all entries where ...
0
votes
1answer
13 views
Paypal IPN and Custom ID in new iOS SDK?
I've been using the MPL iOS SDK for some time and now I'm trying to migrate to the new Paypal iOS SDK (Mainly because MPL crashes under iOS7).
I can't seem to find the option to use IPN (Instant ...
0
votes
1answer
15 views
Paypal IP Recurring Subscriptions - custom field
I am working on a Paypal IPN script for notifications.
When creating subcriptions through Paypal, is the 'custom' field returned with each IPN response? eg. when a recurring payment is made.
0
votes
2answers
26 views
PayPal Buy Now button on my site with redirection issue
I must be going crazy, or I'm completely lost when it comes to understanding what is doable when it comes to PayPal buttons on my site - either way I must apologise if this seems obtuse.
I'm building ...
0
votes
2answers
24 views
payment from paypal account to another paypal account using php
i have website with credit`s user,
when have to user credits he can convert them to really money,
for exmple:
i am the user and i have 500 credits,
1 credit == 1$
the user press on "convert to ...
0
votes
1answer
54 views
Paypal recurring payment IPN messages
I'm unsure as to what IPN messages I should be expecting when a recurring payment is setup through the Express Checkout API.
The period is three months with the first three months free.
When the ...
0
votes
0answers
14 views
IPN simulator returns address information but sandbox doesn't
I'm using PayPal IPN from a buy button
<input type="hidden" name="cmd" value="_xclick" />
I've got my IPN listener to work & it tests 100% correctly using the IPN Simulator BUT when I ...
0
votes
0answers
39 views
PayPal: alternative to ConfigManager.getInstance().load()
I'm trying to create an IPN listener by following this example:
public class IPNListenerServlet extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse ...
0
votes
1answer
34 views
PayPal IPN not working
I'm setting up so that my customers can subscribe for x amount a month for a service.
When a payment is made, everything is fine. But it seems that when somebody cancels a subscription it still goes ...
0
votes
0answers
24 views
IPN for Recurring Payment using PayPal Payments Pro
I am using nopCommerce shopping cart, there is no current implementation of IPN for Recurring Payment if i use PayPal Payment Pro (PayPal Direct) as Payment Method, however IPN works and change the ...
1
vote
2answers
76 views
PayPal Sandbox history redirects to REAL history
In the new PayPal Sandbox, we want to test the IPN, with a payment_status of denied.
The old PayPal sandbox used to allow us to view the transaction history and Accept/Deny a transaction.
Seems ...
0
votes
1answer
36 views
What are the variables I need to know when using a cart?
I am currently in the mood to develop my order system i have created for my game. This time I would like to add a cart system, so a user can purchase more than 1 item at a time!
I understand the ...
0
votes
1answer
69 views
PayPal Sandbox IPN Responds With HTTP Code 0 Since June 1, 2013
The PayPal Sandbox IPN worked perfectly on Friday, May 31, 2013. Since Saturday, June 1, 2013, it refuses IPN verification calls with an HTTP response code of 0 (using cURL for the IPN verification ...
0
votes
0answers
19 views
paypal ipn not returning variables with cart, only buy now
When I use the buy now (_xclick) all of the variable are processed, i.e. item_name, item_number, options, etc. But when I use the shopping cart (_cart) the only variables that are processed are ...
0
votes
1answer
26 views
How to know MaxFailedPayments has reahced from IPN message?
I am working on the paypal recurring payment and I have set the MaxFailedPayments as 3. I want to send email to user when the this maximum failed payment has reahced 3. So from which status field in ...
0
votes
1answer
57 views
Pay to 3rd Party PayPal account from website, and confirm success
Question:
How can I have a visitor to my site pay to a 3rd party PayPal account (one I do not have access to) and have PayPal return the visitor to my site, confirming that the payment was a success ...
0
votes
1answer
38 views
Node.js and expressjs paypal ipn listener gives error 500
I have created a paypal ipn listener by using node.js and express.
Here is my listener code:
exports.ipn = function(req, res, next) {
console.log('Paypal');
var ipn = require('paypal-ipn');
...
0
votes
1answer
13 views
Charged amounts with recurring_payment_profile_created and Initial Amount
I've got a really quick question ;)
I have setup a recurring monthly profile to bill at $29.97/month, and I've set an initial amount of $29.97 to be charged immediately.
Is PayPal going to bill ...
0
votes
1answer
44 views
django-paypal IPN signals not being received
At the bottom of models.py I have:
from paypal.standard.ipn.signals import payment_was_successful, payment_was_flagged
import pay
payment_was_successful.connect(pay.paypal_success)
...
0
votes
0answers
32 views
Paypal IPN custom variables
My Paypal IPN payement is working (buy now button) but now I have to add some variables, like the discount name, the user ID, etc... in my database for each transaction. In the past I used the custom ...
0
votes
1answer
60 views
PayPal payments: Default to 'Pay with Credit Card' instead of loggin in with a PayPal Account
I have seen this done before so I know it's possible - when you redirect to a PayPal checkout from your site, paypal presents you with 2 options to make a payment. One is "Login with PayPal Account" ...
0
votes
1answer
41 views
Paypal button not working in hotmail emails
I'm having an issue with the paypal button code below not working when sent to a Hotmail address. It shows in the email source code and in the email message just fine. But when you click on it, it ...
1
vote
1answer
66 views
Paypal IPN beginner - not working at all
First off, I'm trying to create a premium content area on my website. I'm not entirely sure if this is the right way to go about this, but nevertheless I've been at this for several hours. I'm really ...
0
votes
0answers
70 views
PayPal IPN Simulator and Sandbox account
Im making an ipn handler for my iOS Application.
Im using classic paypal api with my app.
The thing is when i test from the PayPal IPN Simulator it works fine.
I got the post message below from the ...
0
votes
1answer
38 views
IPN response is blank when verifying the IPN
According to this paypal document after we send back the message to Paypal when using a IPN then we get back:-
PayPal will then send one single-word message, VERIFIED, if the message is valid; ...
0
votes
1answer
18 views
use same paypal ipn for multiple stores
I am building a WordPress website using:
Sugar Events Calendar & Sugar Events Calendar & Gravity Forms Integration plugin
WooCommerce store selling a couple of products
I have enabled the ...
0
votes
0answers
77 views
Implementing PayPal - C# ASP.Net StreamWriter is blocked
I am using the code described here: http://www.codeproject.com/Articles/42894/Introduction-to-PayPal-for-C-ASP-NET-developers#GettingStarted and most of it works for me. However, I run into an issue ...
0
votes
0answers
19 views
paypal IPN script called on and off - maybe missing IP addresses for firewall
The past few days some transactions are failing in the sense that the IPN script is not being called to complete and verify
the transaction.
Some go thru and some do not.
Either there is something ...
0
votes
1answer
52 views
Paypal IPN listener is crashing our site
I'm trying to set up Paypal so that when a customer buys a subscription to our site, their account gets approved. Unfortunately when testing my IPN listener I believe I accidentally managed to make ...
0
votes
0answers
31 views
Paypal IPN returned INVALID curl exec response but was previously OK
I have a site which has been working without problem processing paypal IPNs. Yesterday it failed with a CURL exec response of invalid (status was 200 as normal). I tried resending the IPN but got ...
0
votes
0answers
17 views
ThreadAbortException suddenly appears after godaddy changed servers
Recently, one of my clients informed me that GoDaddy had contacted them to let them know they were going to move their hosting account from one server to another. When they did that, they failed to ...
0
votes
1answer
99 views
cancel paypal recurring payment with instant payment notification
From my gathering of several stackoverflow posts, when a user cancels a paypal recurring payment, an instant payment notification is sent to a specified url set up in the IPN settings. But what I ...
0
votes
1answer
75 views
Paypal and recurring payments notifications
I've been fighting with paypal's documentation for a few days and I have several doubts about how it could fit my needs.
In the site we are developing, we need to handle subscriptions, and we are ...
0
votes
1answer
42 views
Passing custom variables to the PayPal API/IPN FLASH AS3
I'm trying to find a solution to my checkout. It's for a customisation app that I have made, in which users choose a T shirt, design, ink colours, sizes ect. This is a pure as3 flash application, that ...
1
vote
1answer
46 views
How to insert a variable into an array for every loop count and then print the array/variables in a mail?
I have an IPN script which does a number of things and today it fetches data from PayPal and uses it to send a mail receipt to customers. PayPal has a IPN simulator which lets you simulate purchases ...
0
votes
1answer
69 views
PayPal send and receive money
I want to recieve payments directly on my web site, so customer enters his credit card information not being redirected to paypal's site. For this purpose i can use Paypal Payments Pro. But also i ...
0
votes
1answer
95 views
PayPal IPN Sandbox Script
I have a PayPal IPN script that I'm testing in the sandbox. I have inserted the mail function everywhere possible just so that I know whats going on, and I always get an "Invalid Response" from ...
0
votes
0answers
13 views
trouble in Paypal Subcription Code
i need you help.i have implemented paypal subcription code in php on my website
like user signup for any membership plan then after time period(6 month or one year) his subcription plan automically ...
0
votes
1answer
77 views
New PayPal Sandbox, Where to input IPN url in sandbox “Test Site” UI
In another post (closed as not a real question ) the OP did a poor job of asking the question I would like very much to know the answer to. Can you or can you NOT specify an IPN url within a "Test ...
0
votes
2answers
34 views
Does PayPal use the same Transaction ID when Retrying failed payments?
I'm building a recurring/subscription payment system with PayPal and all is going well.
Can anyone share the IPN data for when PayPal sends a retry payment? Specifically I need to know if paypal is ...
3
votes
1answer
125 views
How to set an IPN URL for PayPal Recurring Payments using ExpressCheckout?
According to the PayPal documentation, it is not possible to have Instant Payment Notifications (IPN) for Recurring Payments when using ExpressCheckout.
Here is how I come up with that conclusion:
...
0
votes
1answer
58 views
Going from sandbox environment to Live PayPal
I am experiencing some problems going Live with the webshop i created.
In sandbox:
Im able to use both IPN/PDT and at the pdt.php page the user is sent to after a purchase is showing the products ...



