Hi,
I am currently working on a bespoke e commerce Django project. The site works fine right up until the part when it passes the card details to Sagepay for processing and then it throws a 500 error and emails me the following:
Traceback (most recent call last): File "/usr/lib/python2.6/site-packages/django/core/handlers/base.py", line 92, in get_response response = callback(request, *callback_args, **callback_kwargs) File "/var/www/sitename.com/src/cloudnine/shop/views.py", line 113, in payment payment_processor.do_request(payment_form, basket, request) File "/var/www/sitename.com/src/cloudnine/shop/payment_processors/protx.py", line 170, in do_request BillingAddress1 = billing_address.line1, AttributeError: 'NoneType' object has no attribute 'line1'
We have a version of the site running on our development server which runs great.
I am really up against the wall here … any ideas?