I have installed filebrowser for Django (not filebrowser3) and when I try to upload a file I recieve the following error:

403 Forbidden

CSRF verification failed. Request aborted.

More information is available with DEBUG=True.

The same error occurs when I try to create a new folder which shows that the problem is that filebrowser cannot create files/direcories within my uploads directory. I am using the default settings and have manually created the /media/uploads directory with it's permissions set as 755.

If I upload a file to the directory then file-browser admin page states:

1 Item Folder: 0 Image: 1

I cannot view the image that I have uploaded.

I have the PIL and sorl.thumbnail modules installed.

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

You are probably using the development version of Django, which includes quite a lot of extra CRSF security. However it's not released yet so external products probably aren't compatible. You should use the 1.1 version of Django instead.

link|improve this answer
Correct! I am struggling with downgrading to 1.1. Is there any way to resolve this issue besides waiting for the app to be updated? Thanks. – Peter Horne Nov 12 '09 at 0:20
feedback

The Djangodocs have more information about the new Django CSRF requirements:

link|improve this answer
feedback

Add to you settings.py this 2 lines:

‘django.middleware.csrf.CsrfViewMiddleware’, ‘django.middleware.csrf.CsrfResponseMiddleware’,

link|improve this answer
Usually the error will tell you that you need to include the first one, but it will not tell you to include the second one. +1 for listing both here as this solved my issue :) – g19fanatic Mar 31 at 21:04
feedback

See here: http://docs.djangoproject.com/en/dev/ref/contrib/csrf/ like fitzgeralsteele said. Hugs.

Example: from django.views.decorators.csrf import csrf_exempt

@csrf_exempt def my_view(request): return HttpResponse(‘Hello world’)

Disable the CSRF middleware.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.