Search code examples
permissionsphpmyadminwampserver

how connect to phpmyadmin from other hosts


I have a lan network with 2 computer and installed wamp on computer 1.

now I want to access to whole of phpmyadmin on computer 1 from computer 2 and make changes.

from users tab in root of phpmyadmin page I created a user. I filled username field with 'root' and host field with my computer 2 IP address and left password field with "no password" and checked all Global privileges for my user.

now I connect to wamp on computer 1 from computer 2 and click on phpmyadmin link. but It give me this error:

FORBIDDEN

you don't have permission to access /phpmyadmin/ on this server

what I must do now for solving this problem?


Solution

  • That error message has more to do with Apache blocking access, than with phpMyAdmin, or the MySQL user account created.

    Your issue is with Apache's configuration, or more specifically your WAMP's configuration of the /phpmyadmin URL.

    Find the configuration file where the \phpmyadmin URL Alias is set up. It possibly will have these lines in it -

    <Location /phpmyadmin>
      order deny,allow
      deny from all
      allow from 127.0.0.1
    </Location>
    

    Add another allow from IP.Address line in it to match the IP.Address of your other LAN system. Restart Apache.

    If phpMyAdmin is not set up via an Alias (it is under WampDeveloper, not sure about other WAMPs like Xampp or WampServer), but is rather just a dump of its files in a DocumentRoot (website's webroot) sub-folder, check the .htaccess file there.

    I filled username field with 'root' and host field with my computer 2 IP address and left password field with "no password" and checked all Global privileges for my user.

    In this case, the host field will always be in relation to the location of MySQL, not to the system phpMyAdmin is being accessed from... If you are accessing MySQL via phpMyAdmin, the host field should always be - localhost. As phpMyAdmin is on the same system MySQL is. The only time you'd use another domain-name, host-name, or IP for host: is when you are accessing MySQL directly from another system. By directly I mean, not via a script or URL, but via some type of a client (which is almost always a binary/executable).