This is a discussion on Re: Can't See Webpage within the Windows Web Servers forums, part of the Web Server and Related Forums category; Hi, I am a newbie myself, and I was facing the same problem a couple of hours ago. Port 80 ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi, I am a newbie myself, and I was facing the same problem a couple
of hours ago. Port 80 did not work for me too. What I did was that I installed the IIS (control panel -> add programs -> add windows components -> check IIS). After that, I created a folder in the c drive (c:Web_Root), right-click on My Computer, and goto Manage, double-click Services and Applications, double-click IIS, right-click on WebServer and did the following changes in the webserver Website -> change the description (www.mydomain.com), changed TCP port to 8080 HomeDirectory -> set the path to c:\Web_Root Documents -> Added the main page of my website (Index.html) and used the arrow to move it to the top of the list Click okay, open internet browser, and typed http://xxx.xxx.xx.xx:8080/ that did it. Hope this will help you as well Jason The Other Guy <nospam@this.addy> wrote in message news:<f0m9fvo0ucrq4ni6t6utodijdus67f8udl@4ax.com>. .. > On 21 Jun 2003 14:41:50 -0700, while waiting for Somebody Else to show > up and say something, The Other Guy responded to a post from > mliokum@yahoo.com (max) who wrote in > comp.infosystems.www.servers.ms-windows: > <top post left intact> > > Hi Max, > > The error log results indicate that Apache is starting normally > (thanks for the info). > > I think that you are hooked up through roadrunner ISP, judging from > your posting. I don't know, but they could be blocking port 80 to > prevent customers from using the web servers without paying hosting > fees, etc. > > Try using the directive: > Listen 8080 (or 8081) to see if there is access there. > > Just to be sure, you do have your test page (1.htm) in the htdocs > folder, do you not (or whichever directory you have set in the > DocumentRoot directive)? > > What does http://localhost give you? > > Don't give up -- there is a solution somewhere! > > Regards, > TOG > > >"Cannot find server is the message in both cases. > >Below is the info from error log: > >1. > >[Sat Jun 21 14:42:38 2003] [notice] Parent: Created child process 1636 > >[Sat Jun 21 14:42:40 2003] [notice] Child 1636: Child process is running > >[Sat Jun 21 14:42:40 2003] [notice] Child 1636: Acquired the start mutex. > >[Sat Jun 21 14:42:40 2003] [notice] Child 1636: Starting 250 worker threads. > > > >2.at Jun 21 16:26:03 2003] [notice] Parent: Created child process 792 > >[Sat Jun 21 16:26:03 2003] [notice] Child 792: Child process is running > >[Sat Jun 21 16:26:03 2003] [notice] Child 792: Acquired the start mutex. > >[Sat Jun 21 16:26:03 2003] [notice] Child 792: Starting 250 worker threads. > > > > > >The Other Guy <nospam@this.addy> wrote in message news:<7tt8fv80hf36167lj5ctdhk6kmnmd5pc08@4ax.com>. .. > >> On 21 Jun 2003 03:28:14 -0700, while waiting for Somebody Else to show > >> up and say something, The Other Guy responded to a post from > >> mliokum@yahoo.com (max) who wrote in > >> comp.infosystems.www.servers.ms-windows: > >> > >> >The Other Guy <nospam@this.addy> wrote in message news:<1mc6fv4ostudamr3fils922u9loek07ibh@4ax.com>. .. > >> >> On 10 Jun 2003 20:12:07 -0700, while waiting for Somebody Else to show > >> >> up and say something, The Other Guy responded to a post from > >> >> arock@maine.rr.com (Grimey) who wrote in > >> >> comp.infosystems.www.servers.ms-windows: > >> >> > >> >> >I have put up my webpage, have the surver running and when I have > >> >> >someone other then my server computer look at the website it says that > >> >> >the page can't be displayed. Do I need to set some sort of > >> >> >permissions or something? Thanks for any help you can give... > >> >> > >> >> Two things come to mind: > >> >> > >> >> 1) do you have a firewall or router that needs to be configured for > >> >> access from outside your network? If so, allow the program access from > >> >> the Internet (firewall), or allow port forwarding to the port set to > >> >> Listen to -- usually 80 (router). > >> >> > >> >> 2) What have you got listed in your Listen directive? If you have it > >> >> set to localhost only (i.e., Listen 127.0.0.1:80), then you may need > >> >> to a) include your IP address below it, or b) just use the port > >> >> number. > >> >> > >> >> E.g., > >> >> a) > >> >> Listen 12.34.56.78:80 > >> >> Listen 127.0.0.1:80 > >> >> > >> >> OR > >> >> b) > >> >> Listen 80 > >> >> > >> >> See http://httpd.apache.org/docs/misc/FAQ.html#firewall > >> >> Note that your ISP may be blocking the port that you have it set to. > >> >> > >> >> HTH > >> >> TOG > >> > >> <top-posting reversed> > >> >I have similar question(WinXP and Apache 2.0): > >> >I typed in DOS: ipconfig /all and I got max with no primary suffix. > >> >So, should I type in browser: max/1.htm for my html example file and > >> >max/cgi-bin/1.cgi for cgi example files? Do I need to type > >> >http://max/1.htm? > >> > >> "Max" is likely the name of your computer, or hostname. You cannot > >> access your web server through a browser (e.g., the Internet) in this > >> manner. > >> > >> Try this: > >> 1) http://localhost/1.htm (you should just be able to click this link > >> and get the page to display). > >> > >> 2) With the ipconfig /all command, note your IP address for the > >> adapter (NIC/modem). Then type http://IPaddress/1.htm. > >> > >> Depending on how you have the httpd.conf set up, one or both of these > >> should work. > >> > >> Let us know if this is successful. > >> > >> You do not have a domain name, it seems (e.g., MyCompany.com), so you > >> have to access your computer via the Internet by its IP address. > >> > >> >Should I reinstall Apache? Can I just put max as a > >> >server name in config file instead of server.mydomain.net? > >> >1. network domain: max > >> >2. server name: max > >> >3. administrator email: li@max.com? What email should I type? > >> > >> You do not need to reinstall Apache, I don't believe (You could just > >> edit the existing httpd.conf file, for that matter). > >> 1. I'm not sure where you are putting this, or where you got it from > >> 2. This should likely read max:80 (the name of your computer/hostname, > >> plus the port number. > >> 3. This is just an email address that appears on error pages (e.g., > >> "Page not found, contact your web admin..." > >> http://httpd.apache.org/docs-2.0/mod...ml#serveradmin > >> > >> See http://httpd.apache.org/docs-2.0/pla...dows.html#inst > >> > >> >Do I need to configure something? Do I need to disconnect from the > >> >internet if I want to check out these files? > >> > >> You may have to configure firewalls and routers if they are connected > >> to your current network. There is no need to disconnect from the > >> Internet (on the contrary, that is what you want to do both for > >> testing as well as to allow public access -- if the latter is your > >> intention). > >> > >> HTH > >> TOG |
| Thread Tools | |
| Display Modes | |
|
|