Re: django formwizard NoFileStorageConfigured

2013-10-04 Thread Adonis Nafeh
I ran into the same error. Using files in formwizard requires configuring File Storage, according to docs https://docs.djangoproject.com/en/dev/ref/contrib/formtools/form-wizard/#handling-files initializing file_storage fixed it for me. from django.core.files.storage import FileSystemStorage

Re: django formwizard NoFileStorageConfigured

2012-10-23 Thread Russell Keith-Magee
Have either of you done a search of Trac to see if this issue has been reported previously? If there isn't, could you please open a ticket so that the problem isn't forgotten. Yours, Russ Magee %-) On Wed, Oct 24, 2012 at 6:47 AM, Kenneth Love wrote: > I've just been hit by this too, exactly th

Re: django formwizard NoFileStorageConfigured

2012-10-23 Thread Kenneth Love
I've just been hit by this too, exactly the same set up and problem. I'd love a fix/solution. On Sunday, March 11, 2012 5:27:33 AM UTC-7, danoro wrote: > > [ACTION] > > Subclass NamedUrlSessionWizardView and instantiate it with a set of > forms one of them containing a FileField > > class Comm

django formwizard NoFileStorageConfigured

2012-03-11 Thread danoro
[ACTION] Subclass NamedUrlSessionWizardView and instantiate it with a set of forms one of them containing a FileField class CommonWizardView(NamedUrlSessionWizardView): pass class FamilyWizardView(CommonWizardView): pass [RESULT] File "/accounts/urls.py", line 66, in family_wizard =