Page 1 of 1

mysterious: htaccess-password and s9y-login

Posted: Thu Nov 09, 2006 9:50 pm
by stm999999999
hello,

I have a blog which is on a public server, but only for testings. So I make a htaccess-passwd protection to the whole blog in the .htaccess after the s9y-stuff:

Code: Select all

AuthUserFile /blog-path/.htpasswd
AuthGroupFile /dev/null
AuthName ByPassword
AuthType Basic
<Limit GET POST>
require user sankt
</Limit>
and now:

my browser asks me the htaccess-password and then I can view the blog. But s9y does not like my author-login anymore! "wrong username or password!" :cry:

removing the code above, all works perfect again.

Posted: Fri Nov 10, 2006 2:49 pm
by Timbalu
This is just a hack!
Please try and edit serendipity.config.inc.php

Code: Select all

if (!isset($serendipity['useHTTP-Auth'])) {
    $serendipity['useHTTP-Auth'] = true;
}
to

Code: Select all

if (!isset($serendipity['useHTTP-Auth'])) {
    //$serendipity['useHTTP-Auth'] = true;
}
Ian

Posted: Fri Nov 10, 2006 8:57 pm
by stm999999999
thanks, works fine!