Opened 11 years ago
Closed 11 years ago
#22706 closed Bug (duplicate)
Debug error is not working fine when filepath is bad
Description ¶
Write an upload_to_function that overrides the upload_to on models. Use MEDIA_ROOT/modelname/file.ext for that, on settings.py remove tha last slash (/) from MEDIA_ROOT.
Write a model that have a field that have upload_to=upload_to_function
It will cause that the complete url seems like:
/MEDIA_ROOTmodelname/file.ext #clearly you see there is a slash (/) missing.
Go to the admin and try to add a new object for the model that calls to upload_to_function you created
on django 1.3 you'll got:
SuspiciousOperation at /admin/app/model/add/
Attemped access to '/BASE_PATH/mediafolderfile.ext' denied
on django 1.6.5 you'll got
Bad Request (400)
Definitively it is impossible to figure out what is causing the error on django 1.6.5
Change History (3)
by , 11 years ago
Attachment: | error1_3.jpg added |
---|
comment:1 by , 11 years ago
Resolution: | → duplicate |
---|---|
Status: | new → closed |
Duplicate of #21668. I've made a note of your experience there, thanks.
Error caugh on django 1.3