is it possible to access localhost from different terminals in LAN
Posted by: bitopi (106.212.21.---)
Date: February 10, 2013 08:50AM

suggestion or advise is welcomed.

Thanking you.

Options: ReplyQuote
Re: is it possible to access localhost from different terminals in LAN
Posted by: RiggsFolly (---.as13285.net)
Date: February 11, 2013 11:13AM

Yes. and no. You can access your server from other PC's but its not localhost.


Simple way is to just use the wampmanager menus and wm->Put Online

then use the ip address of the PC running wamp server to access the server

i.e.
http://192.168.1.10

If you want to use phpMyAdmin from other PC's you will also have to change the following file

C:\wamp\alias\phpmyadmin.conf

CHANGE

<Directory "d:/wamp/apps/phpmyadmin3.5.1/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Directory>

TO

somthing like this

<Directory "d:/wamp/apps/phpmyadmin3.5.1/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1 192.168
</Directory>


See I have added 192.168 as a valid ipaddress range, I assume you are using the most common router subnet but you will have to check what you subnet is an just use the first 2 quartets.



Edited 1 time(s). Last edit at 02/11/2013 11:31AM by RiggsFolly.

Options: ReplyQuote


Sorry, only registered users may post in this forum.