I have a couple WSGI application I created prior to the addition of the settings below.
I just created a new WSGI application in the same manner as the others. When I tried to run it though I kept getting a 500 error, which was coming from a Python ImportError exception. It was unable to find my application's modules. I added the path to the I looked up these new settings and I didn't see anything saying they cause It's not a huge inconvenience, but it was a bit of a head-scratcher for a bit, because I thought I was forgetting a step from my previous applications. Thanks! asked 21 Nov '11, 06:45 BYG |
Try it without the WSGILazyInitialization On entry. From what I read this doesn't enable the python interpreter right away which may be what is messing with your python path. answered 21 Nov '11, 12:23 bmeyer71 ♦♦ |