Secara default, WAMPServer dikonfigurasikan untuk menjadi sistem pengembangan mandiri untuk dijalankan di workstation Anda.
Jika Anda ingin menjalankan Wamp di satu PC dan mengaksesnya dari PC lain, Anda harus mengubah konfigurasi keamanan Apache.
Anda tidak menyebutkan sesuatu yang berguna seperti versi WampServer yang Anda jalankan, jadi saya rasa saya harus mendokumentasikan kedua opsi tersebut
Edit httpd.conf ( menggunakan menu wampmanager )
Jika Apache 2.2.x
Temukan bagian ini, saya telah menghapus semua komentar demi singkatnya.
<Directory "c:/wamp/www/">
Options Indexes FollowSymLinks
AllowOverride all
# onlineoffline tag - don't remove
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Directory>
Ubah ke :
<Directory "c:/wamp/www/">
Options Indexes FollowSymLinks
AllowOverride all
# onlineoffline tag - don't remove
Order Deny,Allow
Deny from all
Allow from 127.0.0.1 ::1 localhost
## Add an ip range that matches your routers first 3 quartiles
## So if your router subnet is 192.168.0 ( use ipconfig to find out what your router is set to )
## This will allow any PC on your internal network to access the www folder and subfolders
Allow from 192.168.0
## Or you can specify a specific ip or set of ip's like this
## Allow from 192.168.0.10 192.168.0.11 192.168.0.12 ....
</Directory>
Jika Apache 2.4.x Temukan bagian ini
<Directory "c:/wamp/www">
Options Indexes FollowSymLinks
AllowOverride all
#
# Controls who can get stuff from this server.
#
# onlineoffline tag - do not remove
Require local
</Directory>
Ubah ke :
<Directory "c:/wamp/www">
Options Indexes FollowSymLinks
AllowOverride all
#
# Controls who can get stuff from this server.
#
# onlineoffline tag - do not remove
Require local
Require ip 192.168.0
## Apply the same logic as above for specific ip's or a set of ip's
## i.e. Require ip 192.168.0.10 192.168.0.11 .....
</Directory>
Sekarang untuk mendapatkan akses ke phpMyAdmin Anda harus mengedit file konfigurasi ini
Sunting C:\wamp\alias\phpmyadmin.conf
Anda perlu membuat perubahan yang sama di sini seperti yang Anda lakukan di atas
Apache 2.2.x Ubah ini
<Directory "c:/wamp/apps/phpmyadmin3.5.1/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1 ::1
</Directory>
Untuk
<Directory "c:/wamp/apps/phpmyadmin3.5.1/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1 ::1
Allow from 192.168.0
</Directory>
Apache 2.4.x
Ubah ini
<Directory "c:/wamp/apps/phpmyadmin4.0.4/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Require local
</Directory>
Untuk
<Directory "c:/wamp/apps/phpmyadmin4.0.4/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Require local
Require ip 192.168.0
</Directory>
Jika Anda dapat mengikuti semua itu, Anda seharusnya dapat mengakses situs dan phpmyadmin Anda dari lan internal Anda.
Untuk mengedit sumber situs Anda, Anda harus membagikan folder c:\wamp\www di server Anda dan kemudian memetakan bagian tersebut di PC yang sedang Anda kerjakan.