Access PHPMyadmin in WAMP/XAMPP remotely
By default XAMPP and WAMPP doesnt allow to access the PHPMyadmin from remote locations . ie if we install XAMPP/WAMPP on a machine we can access the phpmyadmin from that machines only not from any other machines on the network.
To administrate the MYSQL using PHPMyadmin from a remote location steps
On the MYSQL and PHPMyadmin hosted webserver
If its a wamp server
Step 1 . edit wamp/phpmyadmin/config.inc.php file
Find $cfg['Servers'][$i]['auth_type'] change its value to 'http' instead of config
Step 2. edit wamp/Apache2/conf/alias/phpmyadmin.conf
Find
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
Replace With
Order Allow,Deny
Allow from all
IF its a XAMPP server
Do the step 1 only