phpMyAdmin 'Error 500' can't access.

Thank you for helping.
I looked in the main and domain error logs for httpd. This is all I found:

RewriteCond: NoCase option for non-regex pattern '-f' is not supported and will be ignored.

I wonder if the problem is a security setting somewhere?
 
Also, I found this in homedir.log

631 "GET /"
631 "GET /"
631 "GET /"
631 "GET /"
631 "GET /"
631 "GET /"
1477 "GET / HTTP/1.0"
2273 "GET /admin/cdr/counter.txt HTTP/1.1"
2273 "GET /admin/cdr/counter.txt HTTP/1.1"
2273 "GET /admin/cdr/counter.txt HTTP/1.1"
2273 "GET /admin/cdr/counter.txt HTTP/1.1"
631 "GET /"
779 "GET /phpmyadmin HTTP/1.1"
388 "GET /phpmyadmin/ HTTP/1.1"
533 "GET /phpmyadmin/ HTTP/1.1"
533 "GET /phpmyadmin/ HTTP/1.1"
261 "GET /phpmyadmin/ HTTP/1.1"
261 "GET /phpmyadmin/ HTTP/1.1"
779 "GET /phpmyadmin HTTP/1.1"
388 "GET /phpmyadmin/ HTTP/1.1"
 
It would be in /var/log/httpd/error_log or /var/log/httpd/domains/domain.com.error.log

Neither of them seem right.

Try:

Code:
cd /usr/local/directadmin/custombuild
./build update
./build clean
./build set phpmyadmin yes
./build phpmyadmin d
 
Update, clean, and rebuild didn't fix it. I looked in the /var/log/httpd logs and nothing lists when it try to access phpmyadmin. I did find errors from a security certificate I haven't yet implemented correctly. They pop up when apache is restarted

[Wed Sep 19 14:09:57 2012] [warn] RSA server certificate CommonName (CN) `www.divineled.com' does NOT match server name!?
[Wed Sep 19 14:09:57 2012] [warn] RSA server certificate CommonName (CN) `www.divineled.com' does NOT match server name!?
[Wed Sep 19 14:09:57 2012] [warn] RSA server certificate CommonName (CN) `www.divineled.com' does NOT match server name!?
[Wed Sep 19 14:09:57 2012] [warn] RSA server certificate CommonName (CN) `www.divineled.com' does NOT match server name!?
[Wed Sep 19 14:09:57 2012] [warn] RSA server certificate CommonName (CN) `www.divineled.com' does NOT match server name!?
[Wed Sep 19 14:09:57 2012] [warn] Init: Name-based SSL virtual hosts only work for clients with TLS server name indication support (RFC 4366)
 
Do you run suphp ? There might be a log in /var/log/suphp/suphp.log or /var/log/suphp.log

There definitely will be an error somewhere in a log. Warnings are not errors and can be ignored.
 
You could try putting in config.php

Code:
ini_set('display_errors','on');

No clue if it will work or not. Never heard of it not being logged to a file before.
 
No I meant the config.php file in the phpmyadmin folder. You could check php.ini to see if display errors is on or not though.
 
Added that line to config.ini.php and restarted httpd
Tried to access phpmyadmin and checked the apache log and no new events.
Here is the info since apache start.

[Thu Sep 20 13:29:10 2012] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
[Thu Sep 20 13:29:11 2012] [notice] SSL FIPS mode disabled
[Thu Sep 20 13:29:11 2012] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Thu Sep 20 13:29:11 2012] [warn] RSA server certificate CommonName (CN) `KARUNA.DIVINELED.COM' does NOT match server name!?
[Thu Sep 20 13:29:11 2012] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Thu Sep 20 13:29:11 2012] [warn] RSA server certificate CommonName (CN) `KARUNA.DIVINELED.COM' does NOT match server name!?
[Thu Sep 20 13:29:11 2012] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Thu Sep 20 13:29:11 2012] [warn] RSA server certificate CommonName (CN) `KARUNA.DIVINELED.COM' does NOT match server name!?
[Thu Sep 20 13:29:11 2012] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Thu Sep 20 13:29:11 2012] [warn] RSA server certificate CommonName (CN) `KARUNA.DIVINELED.COM' does NOT match server name!?
[Thu Sep 20 13:29:11 2012] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Thu Sep 20 13:29:11 2012] [warn] RSA server certificate CommonName (CN) `KARUNA.DIVINELED.COM' does NOT match server name!?
[Thu Sep 20 13:29:11 2012] [warn] Init: Name-based SSL virtual hosts only work for clients with TLS server name indication support (RFC 4366)
[Thu Sep 20 13:29:11 2012] [notice] Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips DAV/2 PHP/5.3.16 configured -- resuming normal operations
 
Back
Top