IIS (Internet Information Services)

randomize

New Member
Messages
674
Reaction score
0
Points
0
Hey guys,

I was wondwering if you guys know anything about IIS, and on how it works.

I have recently installed it on Windows 2000 Professional, and when i tried to run a page from it, or even look at the under construction page, that is set as the default, I get a "Page Cannot Be Displayed" error.

I am in the middle of re-installing it as I write this, so i shall keep you updated with any progress that i have in it.

If this does not work, then i am grateful for any ideas/suggestions that you might have, to help me solve this problem that I have.

Regards,
Randomize


EDIT: AFTER RE-INSTALLING IIS, I STILL HAVE NO LUCK, SO PLEASE ANY SUGGESTIONS ARE WELCOME!!!
 
Last edited:

The_Magistrate

New Member
Messages
1,118
Reaction score
0
Points
0
Control Panel > Administrative Options > Internet Information Services

Check to make sure the Default Site in the left pane is Started. Right click on it to check. Also, check to make sure you are using the specified default page. IIS seems to like default.asp and default.htm more than index.html.... So that may be your problem.
 

careerbridge

New Member
Messages
252
Reaction score
0
Points
0
* Install IIS
* Place ur files, idex.html or asp inside C:\Inetpub\wwwroot
* Execue the path C:\Inetpub\wwwroot\filename.asp

if u need to run php....
* Install php
* Now u need to conf IIS to run PHP...

>> Rght click on My computer icon on desktop and select Manage

>> U can find IIS under Services and Applications
>> Right click on Websites and select properties
>> In the new window, select the home directory tab and click on the button configuration
>> You need to add .php
ext to the list and set the execuatable to php.exe (from the location u installed)

That it now u can run php too...
 
Last edited:
Top