How to access phpmyadmin remotely

Is it possible to access phpmyadmin from outside the network? Where can i install it? I tried to edit httpd.conf and restarted all services from the wampserver server, but it does not work.

<Directory /> Options FollowSymLinks AllowOverride None Order Allow,Deny Allow from all </Directory> 
+8
apache phpmyadmin wampserver
source share
7 answers

Go to C: \ wamp \ alias and edit the phpmyadmin file

 # to give access to phpmyadmin from outside # replace the lines # # Order Deny,Allow # Deny from all # Allow from 127.0.0.1 # # by # # Order Allow,Deny # Allow from all 
+13
source share
 # Edit C:\wamp\alias\phpmyadmin.conf # Below is v3.5.1 - the current version is 4.0.4.1 Alias /phpmyadmin "c:/wamp/apps/phpmyadmin3.5.1/" # to give access to phpMyAdmin from outside # replace the lines # # Require local # # by # # Require all granted # <Directory "c:/wamp/apps/phpmyadmin3.5.1/"> Options Indexes FollowSymLinks MultiViews AllowOverride all Require all granted </Directory> 
+6
source share

Do you work on Unix or Windows? If on Unix, check the owner / permissions for the directory in which phpMyAdmin is installed, this may have something to do with it.

+2
source share

It seems to me that you are trying to access a private address from a remote network. You can not. You will need to configure the web server on your computer and use ddns (if you do not have a fixed public ip service) on your server. You may have to redirect inbound traffic from port 80 to your router, also pointing to the web server machine.

+2
source share

just for reference to other users who will encounter such a problem, I would like to remind everyone that in addition to changing directories, you also need to check the firewall settings.

It happened to me, I changed everything (all settings in xampp), but still I can’t connect. I almost gave up, and then I remembered the firewall. After I changed the settings, everything works fine.

just share

+2
source share

Have you tried like this? Maybe you added the directory name to your network?

 <Directory "/Documents and Settings/All Users/Documents/xampp/phpMyAdmin"> ... ... ... ... </Directory> 
+1
source share

Put below code in file D: \ WAMP \ alias \ phpmyadmin.conf

<Reference "D: /wamp/apps/phpmyadmin3.2.0.1/">

 Options Indexes FollowSymLinks MultiViews AllowOverride all Order Deny,Allow Allow from all Allow from 127.0.0.1 

</Directory>

0
source share

All Articles