> When I try to delete an image (specifically I'm deleting an instance
> of a photo model that contains an imagefield) I get an OSError,
> "[Errno 1] Operation not permitted"
> 
> The first thing I tried was checking the permissions in Ubuntu,
> they're set to allow write access for everyone.
> 
> I tried to deleting the image file from an Ubuntu command line and
> discovered that I could do so.
> 
> I tried deleting the image file from python using os.remove, that
> worked fine.
> 
> I tried using 'python manage.py shell' and using os.remove to delete
> the file, that worked fine.


You've tried most of the basic stuff -- my first thought would be 
"are you running as you, but is your server running as somebody 
else"?  It would help to have the output of

   ls -l /path/to/media/files/file_in_question.jpg
   ls -l /path/to/media/ | grep files

to see the ownership and permissions on the file and its 
containing directory, and then output

   from getpass import getuser
   print getuser()

in both your "python manage.py shell" or dev server (well, duh, 
this should obviously be you...from your traceback, I'm guessing 
it's "ase") and output it from your production 
(apache/lighttpd/whatever) server (might have to render it into 
some page).  This might be something like 'www' or 'wwwdata', or 
it might be you ("ase"), or it might be something completely 
different.

Armed with that info, it might help track down the issue.

-tim


--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.


Reply via email to