Mobile app version of vmapp.org
Login or Join
Caterina187

: Getting mediaWiki to work intranet on IIS I am trying to get mediaWiki to work on windows server 2012r2 using active directory as an intranet only site. I was successfully able to access

@Caterina187

Posted in: #Iis #Intranet #Mediawiki

I am trying to get mediaWiki to work on windows server 2012r2 using active directory as an intranet only site. I was successfully able to access the webpage on the server however when I try to connect to it on a network computer I am unable to. Any advice on what I can try?


on the server i am able to access the webpage via: localhost/mywiki/ or by using the binding 192.168.1.10/mywiki (bound on port 80)
on a network computer I try to access the same website via browser 192.168.1.10/mywiki but get "Webpage not available". However when using 192.168.1.10 I can access the default IIS webpage.
I am fairly new to this so I apologize in advance. I disabled the firewalls on both server and workstation but that did not help. Teleneting to 192.168.1.10 80 returns a black screen. Any recommendations is greatly appreciated.


If it helps I followed these steps for the intranet website steps
Configure IIS to Host a Simple Intranet Website
Create a Web Site (IIS 7) (I'm using 8.5 but could not find a guide for this version)

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Caterina187

2 Comments

Sorted by latest first Latest Oldest Best

 

@Radia820

Thanks everyone for the help. Turns out I needed to specify a local ip in the localsettings file.

$wgServer = [local host ip];

10% popularity Vote Up Vote Down


 

@Correia994

Note that Webpage not Available is not necessarily the same as page not found. I am guessing that it is finding the site but you are having another site issue.

First try to add a simple hello world html file to the site and see if you can browse that file. Then you can confirm if you can hit the site.

Next, in the site, you can set customErrors to Off in the web.config of the website so that IIS will give you the actual error you are producing (if any).

Active directory can be causing an issue for authentication. Which is why it appears to work when you are logged on locally. You can try to set the site to allow anonymous and see if it browses from the other computer.

If that still doesn't give you any information, I am thinking that something is crashing the site so check the app pool and find out if it stopped because of an error.

Then there is always checking the event logs to see if there are any clues.

I hope these steps help.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme