> I'm quite new to django, but I'm rather confident that I have looked
> for it pretty well. Feel free to yell, if I'm asking a stupid
> question.

We'll, you've at least learned somewhere that Django shouldn't be 
handling your media...that's at least something :)

> I cannot understand how I can tell django that /images (for example)
> is an images folder, located at, say, /home/guruyaya/images/ and no
> object should handle it. Is there a way to do that? or do I have to
> create a subdomain for static media on my site?

While Django *can* serve static files, it's not recommended.  To 
do otherwise, you need to configure your *webserver* to handle 
those files:

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

For mod_python on Apache, instructions are here:

http://www.djangoproject.com/documentation/modpython/#serving-media-files

And for lighttpd+FastCGI:

http://www.djangoproject.com/documentation/fastcgi/#lighttpd-setup

-tim





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