Problem solved: Turns out that I had a
import django.core.files.storage
line in my settings.py which triggered the initialization of
default_storage before my own settings.py was parsed. Obviously, the
development server has a different import order than modpython ...
/Raik
On Jan 12, 7:54 pm,
Hi there,
I first posted this to the user list but this now looks more and more
like a bug -- please correct me if I am wrong.
I am using a FileField to store user-uploaded files on the server. My
setup works with the development server but raises a
SuspiciousOperation error when I switch to apa