Forum Moderators: coopster
On another machine on the LAN, I can access the sites on machine A through the browser by typing htt*://machinea/site/ - that works fine and dandy
But I'd like to access machine A's phpmyadmin and I keep getting Forbidden.
I have removed the .htaccess files from the /home and /phpmyadmin directories.
What else do I need to do? Mind you, I'm an EasyPHP-level user!
How to have access to phpMyAdmin from my local network or Internet?
In phpMyAdmin's configuration file (config.inc.php), set
$cfg['PmaAbsoluteUri'] = "http://$_SERVER[HTTP_HOST]:$_SERVER[SERVER_PORT]/mysql/";Search for phpMyAdmin in Apache's configuration file. In Directory, add IP adresses of the computers you want to give the right to use phpMyAdmin. For example:
Allow from 192.168.69.1
I hope that this helps someone else some day! :)