Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use phpmyadmin, and when entering this adress:

 www.mydomain.com/phpmyadmin

a login page appears.

Is there any way of disabling it, so it doesn't appear/exist?

Thanks

share|improve this question
1  
There are better DBA tools out there. I'm in love with Navicat – Mahdi.Montgomery Sep 26 '10 at 0:11

4 Answers

up vote 2 down vote accepted

Yep, you can: set your password in the config file. BUT if you are using this on your domain then I'd strongly recommend you take it off your site altogether!

Use a client to access your database - like mysql workbench or mysql yog or any of the numerous ones out there.

If you MUST use phpmyadmin then why not install it on your local machine and add the details to the config there? It is much safer.

share|improve this answer
How do I do the later one. Install it on my local computer and configure it there? How do you mean, what is this method called? Links please... – Anonymous12345 Sep 25 '10 at 23:42
You can use XAMPP : sourceforge.net/projects/xampp Then edit the config file and configure host/login/database... be aware that some databases can't be access from an other domain (ie, a database at mydomain.com can only be access from a script in the same domain). Often true for free "host", false if you are paying. – Loïc Février Sep 25 '10 at 23:51
@Camran: You will need to set up a local server with phpMyAdmin on it. Just search for WAMP / LAMP on Google, there are tons of free servers that come pre-installed with phpMyAdmin. – casablanca Sep 25 '10 at 23:52

In centos, locate the file in directory /etc/httpd/conf.d/phpmyadmin.conf/ and uncomment these lines to only give access on the local system to phpmyadmin, and leave the users from outside with no access to phpmyadmin

<Directory "/usr/share/phpmyadmin">
  Order Deny,Allow
  Deny from all
  Allow from 127.0.0.1
</Directory>

Hope this be helpfull

share|improve this answer

If you disable it then anyone trying that URL will have immediate access to you mysql database and could do anything, including deleting them. The password is here for a reason !

But, there might be a valid reason to do that, maybe you are protecting the directory with an other security ?

share|improve this answer
Actually no I don't have any other security... Offcourse I need to be safe, and if removing it will harm me then I wont do it. What about ToonMariner:s answer? – Anonymous12345 Sep 25 '10 at 23:42
Then don't install it in a public directory. Local machine is a good idea. A client is also a good one. Phpmyadmin is a good tool if you need access from everywhere, even computers where you can't install anyhing / use your own USB key but that's in practice pretty rare. – Loïc Février Sep 25 '10 at 23:53

One thing you may want to do is just use a .htaccess file to redirect that URL somewhere to basically restrict the ability to get to that URL.

To do this, just create a .htaccess file at the root directory of your domain and put this in it:

Redirect 301 /phpmyadmin http://www.mydomain.com/

Then whenever you need to access phpmyadmin, you would just have to comment out that line temporarily while you do your work.

share|improve this answer
That is creating another problem instead of giving a solution. – i.am.michiel Oct 18 '11 at 21:49
I disagree that it causes a problem. It may not behave as they would like, but it does solve the problem. – Jared Nov 8 '11 at 1:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.