> PythonPath "['/home/rith'] + sys.path" > </Location> > > This is the templates in settings.py: > TEMPLATE_DIRS = ( > "/home/rith/soccerux/templates", > ) > > Any idea why it's not working with apache? Thank you.
Apache probably can't "read" any files/directories because your home directory doesn't give permission to apache to do this, is my guess. Either move the directories or change the permissions on there. You may have similar problems with the PythonPath, but I guess some parts at least must work otherwise you would see a different error message. -rob --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---

