On Jun 17, 11:59 pm, Joel Bernstein <[EMAIL PROTECTED]> wrote:
> Generally, Django could not care less where you put most of your
> static media files. There are two main exceptions, though:
>
> 1. Django needs to know the URL to the media files for its admin
> application (ADMIN_MEDIA_PREFIX)
> 2. Django needs to know where in the server's filesystem it should put
> newly uploaded files (MEDIA_ROOT) and what URL they'll show up at
> afterward (MEDIA_URL).
>
> If you don't use the admin application, you can safely ignore
> ADMIN_MEDIA_PREFIX. If none of your applications' models include any
> file-upload fields, you can safely ignore MEDIA_ROOT and MEDIA_URL.
>

Ah thanks. This explains it well. I think my confusion was due to this
statement describing MEDIA_ROOT in the docs "Absolute path to the
directory that holds media for this installation."

As you can see, there was no mention of user files or anything like
that. But simply, media for this installation.

Thank you all for your help.
--~--~---------~--~----~------------~-------~--~----~
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