Answer the question
In order to leave comments, you need to log in
Django-paypal not writing to database?
Docks to the module
When someone uses this button to buy something PayPal makes a HTTP POST to your “notify_url”. PayPal calls this Instant Payment Notification (IPN). The view paypal.standard.ipn.views.ipn handles IPN processing. To set the correct notify_url add the following to your urls.py:
from django.conf.urls import url, include
urlpatterns = [
url(r'^paypal/', include('paypal.standard.ipn.urls')),
]
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question