cat /etc/httpd/conf.d/phpmyadmin.conf
but when I try from the command line on pc 192.168.1.51 (which is the server host)
lynx 192.168.1.51/phpmyadmin
I get :
What am I missing ?
Code:
#
# Web application to manage MySQL
#
<Directory "/usr/share/phpmyadmin">
order deny,allow
deny from all
allow from 127.0.0.1,192.168.1.10,192.168.1.51
</Directory>
Alias /phpmyadmin /usr/share/phpmyadmin
Alias /phpMyAdmin /usr/share/phpmyadmin
Alias /mysqladmin /usr/share/phpmyadmin
lynx 192.168.1.51/phpmyadmin
I get :
lynx 192.168.1.51 does give me the Apache page.Forbidden
You don't have permission to access /phpmyadmin on this server.
_________________________________________________________________
Apache/2.0.54 (Fedora) Server at 192.168.1.51 Port 80
What am I missing ?