Page 1 of 1

phpmyadmin accessible on all nodes

PostPosted: 19. November 2008 14:24
by niatlms
phpmyadmin page is accessible from all nodes of the lan ........i want it to be accessible only on the server's local computer...........can anyone suggest anything

PostPosted: 19. November 2008 16:16
by glitzi85
Open the file xampp\apache\conf\extra\httpd-xampp.conf and replace this code:
Code: Select all
    <Directory "C:/xampp/phpMyAdmin">
        AllowOverride AuthConfig
        Order allow,deny
        Allow from all
    </Directory>


with this Code:

Code: Select all
    <Directory "C:/xampp/phpMyAdmin">
        AllowOverride AuthConfig
        Order allow,deny
        Allow from localhost
    </Directory>


Then restart Apache.

glitzi