By default django does not serve those files for you.  MEDIA_ROOT is a value
for where uploaded media is stored (and other media too) and MEDIA_URL is
its peer, telling it where to link (over HTTP) for the files in MEDIA_ROOT.
If you want the internal development server to serve the media files (only
recommended for single-person development) see this link:

http://www.djangoproject.com/documentation/static_files/

If you're running it on Apache use an .htaccess file to except it
(similar to this:
RewriteRule ^(media/.*)$ - [L]
RewriteRule ^(admin_media/.*)$ - [L]
) and that will allow Apache to handle them on its own.

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