> But why django use this path but not that was defined at > settings.MEDIA_ROOT?
Because ADMIN_MEDIA_PREFIX is set to "/media/" so the url "http:// localhost:8000/media/" makes django point to the admin media directory. To serve your own media juste choose another url for that, may be like this :-) urlpatterns += patterns('', (r'^mymedia/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),) Note that if you want absolutly serve your media from /media/ url, you will juste change the ADMIN_MEDIA_PREFIX parameter, give it any other value, no matter. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---