Ignacio Valdes wrote: > This is all on a headless server by ssh so I can't check > http://localhost:8080 but http://server ip address:8080 on my browser > doesn't work.
Maybe there is a firewall blocking your access to port 8080 on the server. Try using wget running on the server to fetch the page locally "wget http://localhost:8080" should work, or set up an ssh tunnel. On your local machine login to the server using the command: ssh -L 9080:localhost:8080 yourserver which will forward port 9080 on your local machine to localhost:8080 on your server. Then you should be able to access the Zope instance as localhost:9080 in your browser. _______________________________________________ Zope maillist - [email protected] http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )
