The title pretty much sums up my question. I just want to find out how to disable remote login to my phpmyadmin. I would rather only being able to log into phpmyadmin from localhost.
Answers
Edit
/etc/phpmyadmin/apache.conf
with : Order Allow,Deny
Allow from localhost
Use Allow from 127.0.0.1 instead of localhost and that will work.
0 comments:
Post a Comment