django-paypal is a pluggable Django app that implements with PayPal Payments Standard and Payments Pro
0
votes
1answer
14 views
how can i configure paypal for multi-users in django?
I have worked on paypal with django. I integrated it with my app with those settings (settings.py):
PAYPAL_WPP_USER = '****'
PAYPAL_WPP_PASSWORD = ****'
PAYPAL_WPP_SIGNATURE = '*****'
...
0
votes
1answer
41 views
Python-Django Paypal Advanced [closed]
Paypal payments advanced integration with Python-Django. I am creating the ecommerce site in django. I need to integrate the paypal payments advanced . But i can't see any tutorial for that ...
0
votes
0answers
37 views
Django paypal : Can't reach the paypal payment process
I'm using django-paypal and I can't access to the paypal payment process.
I have my view with the paypal form but nothing happens after clicking on buy on paypal button.
here is my code : (view)
...
-1
votes
1answer
40 views
Displaying multiple items on paypal screen using django-paypal [closed]
I've found some links and help that addresses this issue.
1 paying for multiple items (at once) via paypal
2 http://pastebin.com/0hqqxkft
I'm using django-paypal(paypal.standard.pdt) for this and ...
0
votes
1answer
90 views
Unable to get a valid IPN postback with django-paypal
After spending several hours trying to get django-paypal (originally dcramer's fork) to get a 200 OK response from PayPal IPN, I pinpointed the error to PayPal adding an empty, spurious &cmd= ...
0
votes
0answers
61 views
Django paypal notification is not working.
I've declared a signal in models.py of paypal.standard.ipn.views :
def confirm_payment(sender, **kwargs):
# it's important to check that the product exists
try:
user = ...
2
votes
1answer
169 views
Why does Paypal retry IPN when using django-paypal
I have been attempting to get the django-paypal app working within my Django project. I'm using the dcramer fork, with Django 1.4. I am also using a Paypal developer account with business and personal ...
0
votes
0answers
49 views
Is there any way to build unit test for (sandbox) paypal transaction
I am building a (django) site that use chained payments . I am currently using the paypal sandbox to check that the test transactions goes well. I am using ipn and also testing that via the sandbox.
...
0
votes
1answer
144 views
Using Django-PayPal - PayPal IPN getting 401
I'm trying to setup Django-Paypal and have got as far as the return from PayPal. To cut a long story short, in my Apache access logs, I get the following whenever I process a payment through PayPal ...
0
votes
0answers
88 views
Paypal IPN ignoring Custom field value
I am creating a recurring payment profile in paypal but the custom field is returning as blank on the IPN.
I am using the dcramer fork of django-paypal. I have been going through the source code of ...
1
vote
1answer
105 views
Django paypal ipn standard payer address
I am using the DCramer fork of django-paypal: https://github.com/dcramer/django-paypal
I am using IPN standard
What I would like to do is get the payer (customer) address from the IPN. I can see ...
0
votes
0answers
80 views
django-paypal signal update multiple models
When a user has paid through paypal their profile is updated to "paid" and a subscription is logged.
Can I do both these actions with the one signal? I'm not getting the models to update with the ...
0
votes
2answers
161 views
django-paypal signal update
I've been picking my way though django-paypal documentation and have got a signal connecting when I send a IPN from the sandbox simulator.
I can do:
UserProfile.objects.update(has_paid=True)
I can ...
2
votes
0answers
111 views
django formwizard django-paypal
I'm struggling with getting the PayPalPaymentsForm to render in the FormWizard.
[ django 1.3, dcramer's django-paypal ]
The first 2 forms render and validate fine but I don't have the skills to pass ...
0
votes
1answer
252 views
Django Paypal subscriptions
Thanks to anyone who can help me answer this. I'm running a Django e-learning service that requires a one-time payment subscription that lasts 90 days. I have used django-paypal to integrate my ...
0
votes
1answer
211 views
django-paypal signals not firing
I have tried for hours to get my signals to work with django-paypal.
Here is my signals.py (which is imported in my urls.py):
from django.dispatch import receiver
from paypal.standard.ipn.signals ...
4
votes
1answer
406 views
django-paypal: IPN requests are always INVALID
I'm using dcramer's fork of django-paypal, but I always encounter an invalid IPN while working with my sandbox accounts.
I receive the following IPN:
Invalid postback. (INVALID)
I tried everything ...
0
votes
1answer
211 views
Django Paypal IPN Signal for Recurring payment
Our website is using Django Paypal plugin for upfront payment.
We were using paypal for registration and one time fee. This worked fine. Now we have gone ahead and implemented subscription model.
...
0
votes
2answers
243 views
Paypal “_cart” implementation with django-paypal
I am working with django-paypal ipn.standard and am trying to get it working with a paypal's "_cart" option. However, I cannot make it work.
I use this dictionary to initialize the forms:
cart {
...
0
votes
2answers
133 views
django-paypal does not have signal for subscr_payment
I was looking into django-paypal IPN source code and I realized that it does not have a signal for subscr_payment transaction type.
Can I just assume that if I receive a subscr_signup IPN message, ...
0
votes
1answer
188 views
Django form wizard and django-paypal
I am trying to put a paypal form inside a form wizard. The fields are being displayed, but the button is not showing up for some reason.
I wrapped the form wizard inside a view, and it is working. ...
0
votes
2answers
164 views
How to pay my customers with Django PayPal Payment Pro
I want to pay my customers with Paypal Payment Pro , I mean send some money from my Merchant account to a Personnal account . At the momment i just can ask the client to give his credit card ...
0
votes
0answers
319 views
django-paypal ipn not responding
i am using this app to implement paypal into my application. However when i make the payment and everything, django keeps on complaining that i don't have a csrf_token when i already inserted it into ...
0
votes
1answer
209 views
django paypal_ipn table does not exist
I am trying to implement django-paypal (dcramer's version) with IPN and although I get the notification, it is answered with a 500 error. I checked my debug log and I saw this message:
DatabaseError: ...
1
vote
1answer
214 views
django-paypal PDT implementation can't receive signals
I am trying to implement django-paypal (dcramers version from git) using PDT with subscriptions.
It works fine (meaning that the return_url is requested and answered), however signals are not ...
1
vote
0answers
139 views
Customizing Django-PayPal View
I am using django paypal to allow users to make a payment on my site however i have a few queries.
The way how it is currently working for me is that i have a template called profile.html. When a ...
0
votes
1answer
147 views
django-paypal setup for PDT gives me an error
I am using dcramers version of django-paypal[1]. I am trying to use PDT with subscriptions with my sandbox business paypal account xpanta_XXX_biz@paypal.com
this is my views.py[2]:
def ...
0
votes
1answer
131 views
django/commerce/paypal: keeping track of user transactions
currently I wish to integrate paypal payment into my application, so I downloaded django-paypal (dcramer) to test it out with the paypal sandbox. I tried the WPP express checkout payment as my primary ...
0
votes
0answers
217 views
django-paypal empty order summary/price
wanted to integrate paypal payment into my paypal application but hit a snag. I installed dcramer's version of django-paypal and followed the instructions given for WPP (payment pro).
In my view, I ...
1
vote
1answer
90 views
how to change sanbox.paypal site to paypal site in django-merchant?
I am using django-meerchant for paypal payment http://readthedocs.org/docs/django-merchant/en/latest/offsite/paypal.html ...
and my views have this code :
pay_pal = ...
1
vote
1answer
211 views
TemplateSyntaxError : No module named braintree in paypal template?
I am making a project that sells product and
I want to have a payment using paypal in my django. but I got this error :
'billing_tags' is not a valid tag library: ImportError raised loading ...
1
vote
1answer
203 views
Django-paypal doesn't create IPN tables in DB - how to fix?
After installing django-paypal, and doing a syncdb - when I logged in as admin, I didn't see any Paypal IPN tables in the database. After some searching, I found a post on Integrating Django and ...
1
vote
1answer
167 views
How to delay sending activation email in django_registration?
I am integrating django_paypal with my django_registration setup for which I have created a custom backend. I can't seem to find in the code where it sends the activation email. Is this located in the ...
0
votes
2answers
148 views
Can you change/redirect a django form's function by passing in your own function?
I'm dealing with django-paypal and want to change the button src images. So I went the the conf.py file in the source and edited the src destination. However, I really want to leave the source ...
0
votes
2answers
139 views
How to display a template/redirect to a template after processing a django signal?
I'm trying to integrate django-paypal, and I need to process a successful or failed signal.
I've got all my code done, but I now need to display a template telling the user their payment has ...
0
votes
1answer
163 views
PayPal Accounts creation: No redirection to PayPal
I am developing a Django-based website in which each new user creates a wallet to hold his money. I'd like to integrate it with PayPal, so that when the user signs up, a PayPal account is ...
0
votes
1answer
187 views
Adding a Variable To Request Object in Django
How can I add a value to to the request object in django so that is available on redirect. I am trying to sign users up and then redirect them to a paypal link for payment. I want to pass the user id ...
1
vote
3answers
875 views
django-paypal ipn works fine but signal is not received
I have this code at the end of my models.py file
from paypal.standard.ipn.signals import payment_was_successful
def confirm_payment(sender, **kwargs):
# it's important to check that the product ...
0
votes
1answer
359 views
django-paypal: Handling flow before leaving to paypal payment
I don't have the typical shop in which you know what you are selling beforehand. I create custom products on the go (need to fill a couple forms) that people can buy, so before they leave to paypal ...
1
vote
2answers
722 views
django-paypal IPN doesn't work
I'm using django-paypal as a payment solution inside my django application. I'm trying to implement a IPN handler.
What happens when I receive an IPN message at my IPN-handling URL the django server ...
0
votes
1answer
270 views
Secure paypal buttons with django-paypal
I would like to hear you opinion on how to make secure buttons with django-paypal. I do have a subscription based website an, if possible, I do not want to use the encrypted buttons that django-paypal ...
1
vote
1answer
372 views
django-paypal change currency to euro
I'm using django-paypal and I want to charge my users in € not in $. I didn't find a way to change that behavior (the currency is always USD). But I'm very sure there is a way to do that.
0
votes
1answer
440 views
Multiple Items in django-paypal
I am using dcramer's version of django-paypal(but i think it shouldnt matter whether it is dcramer or johnboxall's).
1) How can i specify multiple items in my paypal_dict(to be used in ...
1
vote
2answers
389 views
django-paypal setup for paypal web site pro (wpp) signal issues
I'm using dcramer's fork of django-paypal and I've been successful in setting it up until now. I tried to connect 'paypal.pro.signals.payment_was_successful' to a listener I wrote but it sends the ...
0
votes
1answer
143 views
django-paypal ExpressCheckout second step?
i've been implementing django-paypal but when it return token and payerID where can i handle this? i put the confirm.html template but it doesn't show anything...
By the way, im Using PayPal ...
1
vote
2answers
593 views
Django PayPal & Additional Options
I'm using Django PayPal. PayPal has a list of options you can pass on your button. I'm trying to add some of these to my paypal_dict
paypal_dict = {
# ...
# preopulate paypal checkout page
...
2
votes
2answers
824 views
how to deal with returnurl in django-paypal for paypal WPP
I am now developing my site using django. In integrating my site with paypal, I use pluggable application "http://github.com/johnboxall/django-paypal". Although the document is very clear for "Using ...
5
votes
2answers
2k views
Django & PayPal integration
I am designing a website in Python (using Django), and I need to sell things through it.
Can somebody help me with the source code to integrate the paypal-pro (do-direct payment) or else ...



