On 10/13/05, jms <[EMAIL PROTECTED]> wrote: > I expected everything under the MEDIA_URL to be served from the > MEDIA_ROOT, but all I get are 404s:
Django does not serve static files; MEDIA_URL tells Django the prefix it should use in media-references, MEDIA_ROOT tells Django where it should put uploaded images (IIRC). You have to setup another web-server for your media-files, and for the admin media-files. /s