Questions tagged [django-paypal]

django-paypal is a pluggable Django app that implements with PayPal Payments Standard and Payments Pro

django-paypal is a pluggable Django app that implements with PayPal Payments Standard and Payments Pro.

123 questions
22
votes
5 answers

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 paypal-standard (express checkout)?
GS.
  • 229
  • 1
  • 2
  • 3
15
votes
7 answers

global name 'reverse' is not defined

I'm using the django-paypal library to use PayPal payments on my site. Following the example, I have set the paypal_dict and added the form. paypal_dict = { "business": settings.PAYPAL_RECEIVER_EMAIL, "amount": "10000000.00", …
Magic
  • 362
  • 1
  • 4
  • 13
10
votes
1 answer

Django-paypal: IPN requests with Invalid Postback

I am building an e-commerce site using django-paypal to accept Paypal payments. 95% of the time, everything works flawlessly, users are able to pay, sandbox or not, and receive what they purchased. The other 5% of the time, however, instead of…
Cojo
  • 101
  • 3
6
votes
1 answer

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 that showed up on google: checked seller & buyer…
ldiqual
  • 15,015
  • 6
  • 52
  • 90
5
votes
1 answer

django-paypal recurring_payment_id is empty

I am using django-paypal into my django application. I am trying to create recurring payment as: paypal_dict = { "cmd": "_xclick-subscriptions", "business": settings.PAYPAL_RECEIVER_EMAIL, "item_name": self.subscription.name, "a3":…
Aamir Rind
  • 38,793
  • 23
  • 126
  • 164
4
votes
3 answers

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: (1146, "Table 'myproject.paypal_ipn' doesn't…
xpanta
  • 8,124
  • 15
  • 60
  • 104
4
votes
2 answers

ModuleNotFoundError: No module named 'paypal'

I'm using, Python: 3.8, Django: 3.0, django-paypal: 1.0.0 I'm trying to implement a simple Payment Gateway using Django-Paypal lib. And I'm getting this error during the migration..... (project-venv) PS J:\jaimin (E)\Programming…
Jaimin Sagar
  • 123
  • 1
  • 3
  • 9
4
votes
1 answer

Good solution for Payment Processing in Django

I am trying to pick a payment processing solution for my Django app and would like to know of some good general solutions. The following look rather promising: https://www.djangopackages.com/grids/g/payment-processing/ (General…
Buck
  • 731
  • 1
  • 11
  • 23
3
votes
1 answer

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 my template form. This is my template:
Stanwin Siow
  • 437
  • 1
  • 8
  • 21
3
votes
1 answer

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 billing.templatetags.billing_tags: No module named…
gadss
  • 21,687
  • 41
  • 104
  • 154
3
votes
1 answer

Paypal sent warning emails for IPN

I have integrated Paypal in my Django(1.10) app using Django-paypal package. Everything works fine even payments processing perfectly well and I'm receiving IPNs from PayPal in Django admin. But PayPal send this email to me as: Hello…
Abdul Rehman
  • 5,326
  • 9
  • 77
  • 150
3
votes
1 answer

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.
Kai
  • 2,205
  • 3
  • 32
  • 43
3
votes
1 answer

Python-Django Paypal Advanced

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 integration.
Muthuvel
  • 39
  • 1
  • 2
3
votes
1 answer

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 accounts, processing transactions through the…
MattRowbum
  • 2,162
  • 1
  • 15
  • 20
2
votes
1 answer

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 Paypal, which said: Just in case anyone is running…
John C
  • 6,285
  • 12
  • 45
  • 69
1
2 3
8 9