Reputation: 1901
I want to allow remote access for my xampp server .
Actually i am working for web services i want that if we are on same network i can access the web from other system using IP
so for that i need to allow outside access.
xampp/apache/conf/extra/httpd-xampp.conf
directory
I tried to make some changes in config file but not working.
Might be need to make some changes here
Alias /phpmyadmin "C:/xampp/phpMyAdmin/"
<Directory "C:/xampp/phpMyAdmin">
AllowOverride AuthConfig
Require local
But not sure what to change
Thanks for Help in advance
Upvotes: 0
Views: 8820
Reputation: 1901
Replace your line of code as
Alias /phpmyadmin "C:/xampp/phpMyAdmin/"
<Directory "C:/xampp/phpMyAdmin">
AllowOverride AuthConfig
Require all granted
Its working for me
Refrence:https://www.apachefriends.org/faq_windows.html
Question on above reference
How do I restrict access to phpMyAdmin from the outside?
Upvotes: 1