eloginko
eloginko

Reputation: 97

How to share db from pc to pc on LAN

can someone help me how to use xampp mysql database share from pc to pc...I have a php program and I'm going to use it in 7 computers but the database is installed only on the server pc...I want to share the database so that the other 7 computers can work and run the php program....how to do that? help please.

Upvotes: 1

Views: 257

Answers (1)

Balaji Kandasamy
Balaji Kandasamy

Reputation: 4506

If you are using wampserver, follow these steps. Go to C:\wamp\alias and edit the file phpmyadmin.conf

to give access to phpmyadmin from outside replace the lines

Order Deny,Allow
Deny from all
Allow from 127.0.0.1

by

Order Allow,Deny 
Allow from all

Find the IP address using ipconfig Then access database via http://your_machine_ip_addess_that_you_find_using_ipconfig.com/phpmyadmin/

Upvotes: 1

Related Questions