*Reported by anonymous on 2013-07-11 09:34 UTC
When using apache with mod_wsgi the (debian wheezy) webserver does not respond anymore when "import control" is used. Using python (2.6/2.7) on command line and using "import control" gives no error.
Tested versions were 0.5b (tried to see if it was a backwards compatibility problem) and 0.6c.
The following simple application.wsgi was used:
import web
import control
urls = (
'/(.*)', 'hello'
)
class hello:
def GET(self, name):
if not name:
name = 'World'
return 'Hello ' + name
if name == "main":
app.run()
app = web.application(urls, globals(), autoreload=False)
application = app.wsgifunc()
*Reported by anonymous on 2013-07-11 09:34 UTC
When using apache with mod_wsgi the (debian wheezy) webserver does not respond anymore when "import control" is used. Using python (2.6/2.7) on command line and using "import control" gives no error.
Tested versions were 0.5b (tried to see if it was a backwards compatibility problem) and 0.6c.
The following simple application.wsgi was used: