Sign in or Join FriendFeed
FriendFeed is the easiest way to share online. Learn more »
Detlev Lengsfeld
workaround for bug in trac that wants to write to PYTHON_EGG_CACHE « ONE SHORE INC - http://oneshore.wordpress.com/2009...
SetEnv PYTHON_EGG_CACHE /tmp Luckily, a lot of other people have seen this problem, and some of them even know a bit about mod_python A helpful google search turned up a trac mailing list post gave me the hint I needed. Thanks to Django’s funky setup, a lot of people have discovered that mod_python doesn’t take SetEnv. I don’t know if this is a bug or a design flaw (perhaps with some justification). Anyway here’s the hack for mod_python users, instead of SetEnv, use PythonOption: PythonOption PYTHON_EGG_CACHE /tmp - Detlev Lengsfeld