To ensure it's not the case, force IPv4:
cherrypy.config.update({'server.socket_host': '127.0.0.1'})
Before you start the server.
- Sylvain
--
Sylvain Hellegouarch
http://www.defuze.org
I'm not sure that's the problem--if he wants to expose the server to the
world, the local address (127.0.0.1) won't cut it. Try
server.socket_host: '0.0.0.0' instead to listen on all addresses.
Robert Brewer
fuma...@aminus.org
Good point Bob.
- Sylvain