On Fri, 2007-03-23 at 03:49 +0000, benrawk wrote:
> Also, when I import and print sys.path into a python session, with
> apache running in the background, sys.path does not include '/home/
> benrawk'. Is it supposed to?

No, they are different processes. Apache will only adjust sys.path for
the python interpreter(s) it is starting.

>  Is there a way I can check the value of
> PythonPath as it is defined in httpd.conf?

Open up the file django/core/handlers/modpython.py and put in something
like

        print >> sys.stderr, sys.path

in a piece of code that is going to be executed. You can see from your
traceback that line 163 of that file is executed, so try putting the
output just before that.

Regards,
Malcolm


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