vote up 1 vote down star

Hi,

I have hosted my django application with apache and mod_python. When i was going through the mod_python documentation, I found that there is a way to know under which interpreter my application is running (By using req.interpreter).

I tried to check that in django, by checking request object. But I couldn't figure out(request.interpreter doesn't exist).

Is there a way to get interpreter name in django?

flag

60% accept rate

1 Answer

vote up 2 vote down check
from mod_python import apache
apache.log_error("INTERPRETER %s" % apache._interpreter)

Then check the Apache error log file.

link|flag
Thanks, It worked with a small change. It should be apache._interpreter(_ prefix is missed in your answer). – leela Jul 18 at 9:31
Sorry, fixed it. – raz0r Jul 18 at 10:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.