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/'
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to