Tagged Questions

0
votes
1answer
31 views

Facebook app - Paypal transaction within facebook?

Is it possible and if so how to do an IPN transaction within a facebook application? I found you can not launch an IPN transaction within an iframe. I will be using facebook's ifr …
0
votes
1answer
27 views

Paypal IPN question (integrating with backend processes)

I am using the Paypal standard to integrate to my website, using HTML form fields. I have enabled IPN notifications on my (sandbox) account, and the Paypal server is able to succe …
0
votes
0answers
27 views

How to Add Tax to Paypal IPN Checkout

I've tried adding the "tax" field, however nothing tax related shows up in my checkout. How do I add the tax amount to my checkout for Paypal?
1
vote
2answers
151 views

PayPal Django

Hello, I am using Django-PayPal plugin (http://github.com/johnboxall/django-paypal/tree/master), which works almost fine with one problem. I followed integration process and think …
1
vote
5answers
643 views

Simple Paypal IPN examples?

I would like to have a text input form with a submit button that goes to paypal, upon payment the contents of the form should go in a mysql database.. This sounds trivial, but I'm …
0
votes
2answers
187 views

Subscriptions with Paypal IPN

I am adding subscriptions to a site using Paypal IPN which works very well, I can successfully create a new subscription and verify it. The subscription has a two week free trial. …
0
votes
2answers
68 views

Getting strack trace error and don’t understand why

Hi I am trying to do PayPal IPN method. So I thought since I am doing asp.net mvc I can just make a method view in my controller like this public void IPN() { // IPN code } S …
3
votes
1answer
98 views

How to password protect an entire website but allow public access to 1 specific file

I've created an e-commerce site that uses paypal to accept payment. I am in the testing phase so I have password protected the entire site using htaccess. The trouble is that I a …
1
vote
2answers
112 views

PayPal like IPN with Google Checkout

I've reading the Google Checkout docs but I haven't found anything similar to PayPal IPN for Google Checkout. Can anyone point me in the right direction to automatically process o …
1
vote
1answer
40 views

Can I retreive a users subscription info from paypal at any time?

I need to determine when a user's paypal subscription is set to end/renew. I know that the easiest way to do this would be to extrapolate it from the time when the initial subscr_ …
1
vote
1answer
276 views

IPN delivery failed. HTTP error code 405: Method Not Allowed

I am trying to test a servlet I wrote that processes a payapal IPN notification (my servlet is very similar to this example) - thing is even after enabling all the settings in the …
0
votes
0answers
31 views

PayPal IPN Subscr Vars

I'm going through my code and making sure I'm not making any glaring mistakes. One thing popped in mind... I'm activating a membership based on receipt of the subscr_signup variab …
2
votes
5answers
301 views

Protect php script that receive paypal IPN notifications! [Solved]

Hello, In my website I've integrated a php script that receive an IPN notification and send a license key to the customer! This script is in a folder with other 2 php files requir …
2
votes
3answers
316 views

PHP HTTP_POST_VARS problem

To start: I am a C++ developer who is roped into making a PHP script (for paypal IPN). I have been incredibly frustrated witht he lack of good working samples from paypal and else …
2
votes
3answers
419 views

How do you connect a Paypal IPN confirmation to a user?

I wanted to use Paypal's IPN service to verify payments for a recurring subscription charge for my website. How do you tie the IPN confirmations to a user in your site? The IPN c …