How to access phpmyadmin from another PC with Laragon

Problem: I am trying to access the phpmyadmin from another pc and I was getting Forbidden Erorr. The below is not a secure solution but I need to access the phpmyadmin from other pc badly.
I am using Laragon and to access the phpmyadmin from other computer edit the below file.
C:\laragon\etc\apache2\alias\phpmyadmin.conf
Alias /phpmyadmin “C:/laragon/etc/apps/phpMyAdmin/”
# to give access from outside 
# replace the lines
#
# Require local
# by
#
# Require all granted
#
<Directory “C:/laragon/etc/apps/phpMyAdmin/”>
Options Indexes FollowSymLinks MultiViews
AllowOverride all  
Require all granted
#Require local
</Directory>

Add a Comment

Your email address will not be published. Required fields are marked *