Ahh. That makes sense. I've checked in your change. I think in this scenario, CSRF exempt is required and will solve this issue.
Thanks, Chris On Sat, Aug 21, 2010 at 4:03 PM, Dinh <[email protected]> wrote: > 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]<satchmo-users%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/satchmo-users?hl=en. > > -- 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.
