I didn't get Cherrypy to work with Chrome so far, but I would like to. So here is the code:
import cherrypy
class HelloWorld(object):
def index(self):
return "Hello World!"
index.exposed = True
cherrypy.quickstart(HelloWorld())
when I run this on my Mac OS X 10.7.3 with Python 2.6 and I enter:
http://127.0.0.1:8080
it works for: Firefox, Opera, Safari
Chrome: doesn't work => "Oops, couldn't connect ... "
Can anyone reproduce this? Where is my mistake here?
Edit: Here is the output from the start
[15/Apr/2012:14:09:17] ENGINE Listening for SIGHUP.
[15/Apr/2012:14:09:17] ENGINE Listening for SIGTERM.
[15/Apr/2012:14:09:17] ENGINE Listening for SIGUSR1.
[15/Apr/2012:14:09:17] ENGINE Bus STARTING
CherryPy Checker:
The Application mounted at '' has an empty config.
[15/Apr/2012:14:09:17] ENGINE Started monitor thread 'Autoreloader'.
[15/Apr/2012:14:09:17] ENGINE Started monitor thread '_TimeoutMonitor'.
[15/Apr/2012:14:09:17] ENGINE Serving on 127.0.0.1:8080
[15/Apr/2012:14:09:17] ENGINE Bus STARTED