in reply to (OT) Webserver settings

No change on the webserver, find the ip address of your machine (ipconfig on windows, or ifconfig on linux), say 192.168.168.20, and ask people to access it as: http://192.168.168.20:8080/factorScan_html/main.html

Replies are listed 'Best First'.
Re^2: (OT) Webserver settings
by pg (Canon) on Sep 06, 2005 at 03:47 UTC

    Not really. Looks like his web server is listening at port 8080 of localhost, not the server's IP on the network. he has to change his program, or configure it to listen on the server's network address.

Re^2: (OT) Webserver settings
by Anonymous Monk on Sep 06, 2005 at 04:26 UTC
    I tried this but it does not work, Thanks
      If you can access it via localhost but not via your ip address, it mostlikely means your server is binding to 127.0.0.1 instead of any. Take a look at http.conf, you probably had "Listen 127.0.0.1:8080", change that to "Listen 8080", you can then access it via your ip address.
        Thank you very much. Rightly pointed and it works now. Thanks NLC