Hey I set up my /etc/httpd/conf.d/phpMyAdmin.conf to allow only specific IP to access my phpMyAdmin now my C# application requires that I should allow all the I.P. How will do it? any suggestion is much appreciated. Im using Centos 6.5 and MySQL 5.6xx
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Solution that worked for me (Centos 7.3 Apache/2.4.6 (CentOS) PHP/5.4.16 phpMyAdmin-4.4.15.10-2.el7):
thanks to chris
It’s unlikely that you need to allow all IP addresses access to phpMyAdmin. Instead it is more secure to whitelist the specific IP addresses that may need access in your
phpMyAdmin.conf
You can use more than one address. For instance:If you really need to allow all all IP addresses to access it, you can comment out the entire
RequireAny
section and changeDeny from All
toAllow from All
Remember to restart Apache after making any changes:
How to deny request:
Thank