how do I make http://localhost:800/mediawiki/index.php/Main_Page visable so whn people click the link it will shows the site I used BitNami to install it
Topic on Project:Support desk
If users from another PC should be able to see and use your wiki, you should not point to it with the domain name "localhost", but with the IP of the computer, on which MediaWiki is installed, or with a real domain name like "www.mediawiki.org".
You will also have to provide this domain name in one of the variables in LocalSettings.php; I think it was $wgServer.
could you give me an example of it showing thee link to an ip address
how can you detect your ip which media wiki is installed on
You can view your IP address from your network adapter settings (in details), assuming you're using Windows.
You're using the wrong kind of IP address here; frankly, I think the installation instructions to use localhost is a very bad idea, especially on Windows (and I'm going to look to change that).
127.0.0.1 and 192.168.1.71 are both private IPv4 addresses that cannot be connected to by anything outside your computer or anything outside your home LAN, respectively. Your public IPv4 address is different, and should not begin with any of 192.168.*, 10.*, 172.(16-31).*, or 100.(64-128).*. It is probably the address of your home modem or router, and to make it publicly viewable, you'll need to do port forwarding.
$wgServer needs to be set to the IP address or domain name you want to serve from.
Agreed with Jasper Deng. The IP 192.168.1.71 would be good if you want to serve it from the internal network (home or work) but not if you want access from the internet. You'll need to configure port forwarding from the router, but then you may have problems accessing it from the internal network.
how would I do it with bitnami
Bitnami can't do that, you should configure this on the router. The configuration varies on each router so you should follow instructions based on your router model.
Also, be sure to enable connections to the port used by bitnami through your firewall.