Hi, I encountered the same problem and after a curl check discovered it was related to the CSRF Middleware. I just added a ticket on bitbucket but the direct answer is:
An immediate solution is to add the @csrf_exempt decorator to the payments.modules.paypal.views.py file: from django.views.decorators.csrf import csrf_exempt . . @csrf_exempt def ipn(request): . . Cheers! -- You received this message because you are subscribed to the Google Groups "Satchmo users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/satchmo-users?hl=en.
