A fragment of your config files can be of great help to know what is
wrong.
You can try something like having an alias for your media

Alias /media /path/to/your/files

and then adding a Location or LocationMatch where your disable
mod_python

<LocationMatch "/media">
   SetHandler None
   # more directives here
</LocationMatch>

In this Location directive you can have all the non-mod_python stuff
like robots.txt, favicon.ico, etc.

<LocationMatch "/media/|robots.txt|favicon.ico...">
 ...
</LocationMatch>

Hope this helps.

--
regards,
khuertas


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to