Courtesy - www.bauer-power.net |
Open C:\xampp\apache\conf\extra\httpd-xampp.conf
Edit it with using notepad or notepad++
Replace the following line with below one.
<Directory "C:/xampp/phpMyAdmin">
AllowOverride AuthConfig
Require local
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</Directory>
to
<Directory "C:/xampp/phpMyAdmin/">
AllowOverride AuthConfig Limit
Order allow,deny
Allow from all
Require all granted
</Directory>
Now save file and you will be able to access the phpmyadmin globally from other computers.
Restart apache and mysql once if needed.
No comments:
Post a Comment