Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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
share|improve this question
There's nothing in your code to suggest an error that would only occur on Chrome. Are there any error statements in your terminal? – Makoto Apr 13 '12 at 14:00
There are no errors in the terminal, when Chrome tries to load, nothing in the terminal appears – kadrian Apr 13 '12 at 14:05
It might be that CP is binding to a different address. Perhaps you could paste the "Serving HTTP on ____" line from CherryPy's log. – fumanchu Apr 13 '12 at 14:59
Its wild attempt but something to do with your connection settings in chrome? eg proxy? Anyways cherrypy doesn't have to do anything to what browser you use.. – 0xc0de Apr 13 '12 at 18:08
added the output after the start, maybe that helps?! I don't use a proxy, so no special settings in chrome. – kadrian Apr 15 '12 at 12:11

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.