On Jan 18, 2008 10:08 AM, sector119 <[EMAIL PROTECTED]> wrote: > > Hi All! > > When I try to get http://127.0.0.1:8000/media/ I got Permission > denied: /home/sector119/devel/django_src/django/contrib/admin/media/ > > But why django use this path but not that was defined at > settings.MEDIA_ROOT? > > part of my urls.py: > > import settings > if settings.DEBUG: > urlpatterns += patterns('', > (r'^media/(?P<path>.*)$', ' django.views.static.serve', > {'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),) > > > from settings.py: > > MEDIA_ROOT = '/home/sector119/devel/eps_src/media/' > MEDIA_URL = ' media.localhost' > ADMIN_MEDIA_PREFIX = '/media/' >
>From a similar question yesterday: When using the development server, any urls that start with the setting's ADMIN_MEDIA_PREFIX (which defaults to /media/) are intercepted and served up by the AdminMediaHandler out of the contrib/admin/media tree under the Django install directory. So if you want to put you own media under urls that start with /media/, you need to change ADMIN_MEDIA_PREFIX to something else. Note neither MEDIA_ROOT nor MEDIA_URL come into play here. MEDIA_ROOT is used when uploading files, as for a FileField or and ImageField; it defines the root of the directory tree where the files should be stored. MEDIA_URL is used when constructing url values for such fields. There's also (post 0.96, I believe) a context processor that puts the MEDIA_URL setting in contexts so you can easily access it from templates. I am not sure what you are trying to accomplish with a MEDIA_URL setting of leading space + media.localhost? Karen --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---