On 11/5/05, Chris Petersen <[EMAIL PROTECTED]> wrote:
> There are two specific error-only pages.. One for incorrect login info,
> another for non-configured database settings. Most likely, you're
> missing the mod_env setup in apache, or your AllowOverride settings are
> incorrect.
Jumping in... I had a similar issue but the problem wasn't the
AllowOverride, for me the following statement in the init.php was the
culprit:
// No database connection info defined?
if (empty($_SERVER['db_server']) || empty($_SERVER['db_name'])
|| empty($_SERVER['db_login']) || empty($_SERVER['db_password'])) {
require_once 'templates/_db_vars_error.php';
exit;
}
Shouldn't the condition be AND and not OR? Depending on the DB setup,
one might have empty strings in some of the variables. I changed the
"||" to "&&" and everything is fine again.
Cheers,
Ari
_______________________________________________
mythtv-dev mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev