Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to access PHP/web page within LAN

Status
Not open for further replies.

amir4oracle

Programmer
Nov 3, 2004
46
CA
I have two computers with the following attributes:

Linux: 210.168.10.3
Windows: 210.168.10.2

Both ping each other just fine.

but on Windows in IE when I say:

it gives: "The page cannot be displayed" error

on Linux (210.168.10.3) itself it works both ways:

there is no web server active on Windows, I have tried all the combinations in LAN settings.

Can you tell me, how to access PHP/web page within LAN?

Your help is highly appreciated.
 
you need to check whether the webserver on the linux box is configured to accept requests from boxes other than itself. typically this is in the httpd.conf file.
 
i found the file in /etc/httpd/conf/httpd.conf
but what is the name of the parameter i am looking for.

I went through the contents of the file and found good things but could not find anything in particular related to the requests other than itself.

or if elsewhere kindly let me know

 
it will look like DENY FROM or ALLOW FROM

as a test if, from another machine you launch a telnet session and try to attach to port 80 of the linux box

Code:
telnet 210.168.10.3 80

what result do you get?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top