On Thu, Oct 7, 2010 at 3:58 PM, Rizwan Mansuri <mr.mans...@gmail.com> wrote: > Hello Django Gurus, > > > > I am newbie in Django. I ‘m stuck at this point. I have developed one apps > in django which has Imagefield. While I am trying add this content in site > its giving me error saying OSError at /admin/portfolio/portfolio/add/ > > [Errno 13] Permission denied: '/myproject'. Myproject is root folder of my > django website. I have pasted traceback below.
Clearly from the error it means that you don't have permissions to write or create a dir "/myproject" directory. (Usually in unix environments a normal user doesn't have permissions to write in "/", -- the root dir). So you should check that the directory you are creating or saving a file too has write permission (or more correctly that the user who is running the process can write to it). My guess is that you miss configured something, check that you specified the correct directory (in which ever setting variable is that) Hope it helps, -- Ale. -- 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.