12/28/2006
More Apache 2.2 Mod_Auth_MySQL Issues
I have found some configurations of Apache 2.2 with Mod_auth_mysql producing other 500 errors. The error log shows:
Internal error: pcfg_openfile() called with NULL filename
In Apache 2.2, the mod_auth_basic module may be the authoritative access module by default. To use Mod_auth_mysql add the following line as shown below in your Mod_auth_mysql configurations in httpd.conf or .htaccess files.
Before:
AuthMySQLEnabled on
After:
AuthBasicAuthoritative Off
AuthMySQLEnabled on
AuthMySQLEnabled on
Popularity: 13%


