Page 2 of 2

Re: access Forbidden

PostPosted: 01. July 2014 21:29
by gsmith
Alias /phpmyadmin "D:/xampp/phpMyAdmin/"

Looks like the old lopsided Alias directive when it comes to trailing slashes. It's been known to cause problems so I'd
remove the trailing / from the end of "D:/xampp/phpMyAdmin/", save and restart the server and see. If that doesn't
work, what is the line about the error in the error.log file, it should be located in the same folder you found the
access.log in.

Re: access Forbidden

PostPosted: 02. July 2014 03:18
by joe.private00
I change the syntax

from :

Alias /phpmyadmin "D:/xampp/phpMyAdmin/"
<Directory "D:/xampp/phpMyAdmin">
AllowOverride AuthConfig
Require all granted
</Directory>

to :
Alias /phpmyadmin "D:/xampp/phpMyAdmin"
<Directory "D:/xampp/phpMyAdmin">
AllowOverride AuthConfig
Require all granted
</Directory>

and the log file says :

::1 - - [01/Jul/2014:02:21:59 -0500] "GET /phpmyadmin/ HTTP/1.1" 403 1199 "-" "Mozilla/5.0 (Windows NT 6.3; rv:30.0) Gecko/20100101 Firefox/30.0"
::1 - - [01/Jul/2014:02:22:00 -0500] "GET /favicon.ico HTTP/1.1" 200 7782 "-" "Mozilla/5.0 (Windows NT 6.3; rv:30.0) Gecko/20100101 Firefox/30.0"
::1 - - [01/Jul/2014:21:14:14 -0500] "GET /phpmyadmin HTTP/1.1" 403 1199 "-" "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.116 Safari/537.36"


The Problems still happened.. :(