Hello all,
I'm trying to create a /phpmyadmin alias to use externally from cpanel.
I created a directory named "/phpmyadmin" on my server as a top level folder and added this to my httpd.conf
So if i go to mysite.com/phpmyadmin i get a 404 error. I put in a file, test.txt and when to mysite.com/phpmyadmin/test.txt and saw the contents so that works
I do a
tail -f /etc/httpd/logs/error_log
and get the following when trying to access mysite.com/phpmyadmin
00.00.00.00 is my ip omitted
the target UID of 512 is the same UID of mydomain.com so it seems that apache wants the UID of the files/folders to be the same as whatever domain its being called from, but I want it to be accessible for every domain.
Is there a way I can make apache ignore this for this folder?
I'm trying to create a /phpmyadmin alias to use externally from cpanel.
I created a directory named "/phpmyadmin" on my server as a top level folder and added this to my httpd.conf
Code:
Alias /phpmyadmin /phpmyadmin/
<Directory "/phpmyadmin">
Options None
AllowOverride None
Order allow,deny
Allow from all
</Directory>
I do a
tail -f /etc/httpd/logs/error_log
and get the following when trying to access mysite.com/phpmyadmin
Code:
[Mon Oct 28 15:42:52 2013] [error] [client 00.00.00.00] SoftException in Application.cpp:422: Mismatch between target UID (512) and UID (99) of file "/phpmyadmin/index.php"
[Mon Oct 28 15:42:52 2013] [error] [client 00.00.00.00] Premature end of script headers: index.php
the target UID of 512 is the same UID of mydomain.com so it seems that apache wants the UID of the files/folders to be the same as whatever domain its being called from, but I want it to be accessible for every domain.
Is there a way I can make apache ignore this for this folder?