Run CherryPy script with Python2.6 rather than Python2.4 on RHEL
Working on a RHEL 5 server. Trying to make a small CherryPy app that takes in arguments from the url (ex. internet.com/cherrypy/data/22/45 would return 22 and 45) and then use that to query a SQL...
View Articlerun php with cherry.py web server?
I understand cherry.py server is multithreaded which theoretically would be a problem with php fastcgi in general. But would it be possible? has anyone tried it and can please share the...
View ArticleTransparantly make multiple web applications available at a single address
I have multiple web applications running on their own http server, e.g. a ruby/rails application on port 8080 and a python/cherrypy application on 8081. Is it possible to make these transparently...
View Articlemod_wsgi + cherrypy = 404 – The path ‘/index.wsgi/’ was not found
The .htaccess : AddHandler wsgi-script .wsgi RewriteEngine On RewriteBase / RewriteRule ^(media/.*)$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ /index.wsgi/$1 [QSA,L,PT] The...
View ArticleCherryPy 3 with Apache 2 using ModWSGI: stack traces?
I am trying to show stack traces or at least some sort of errors rendered to the HTML response while using a WSGI script. A ModuleNotFound exception is raised when I tried to import a module the...
View Article