Problem here, fresh new board setup.. When I or anyone tries to post an drawn oekaki, a page that just says "Error: Management password incorrect." is displayed when the submit button is hit.
This is the submit button on the name/comment/message page.
Normal image posting and comment posting are working fine.
The oekaki script posts images as an admin post, so that it can add the HTML signature. However, it should read the correct password from config.pl by itself. What server is this running on?
the host is Dreamhost and they are running linux 2.4.26
That is definitely weird. Sadly I am away from my main computer over the holidays and can't do all that much bug hunting.
You might want to try one thing, and report back with what happens: Open wakaba.pl in a text editor, find the function check_password(), and change the line:
make_error(S_WRONGPASS) if($admin ne $crypt);
to
make_error(S_WRONGPASS." $ENV{REMOTE_ADDR}") if($admin ne $crypt);
Then tell me what the new error message says.
Error: Management password incorrect. 205.196.214.116
Ah-hah. That explains it.
Open finish.pl, find the crypt_password function there, and change the line
my $crypt=encode_base64(rc4(null_string(9),"a".(shift)."127.0.0.1".SECRET),"");
to
my $crypt=encode_base64(rc4(null_string(9),"a".(shift)."205.196.214.116".SECRET),"");
I need to figure out a way to get that to work better.
thanks, that works
fresh new board setup and the same problem "Error: Management password incorrect."
the host is Planethoster.net and they are running on Linux 2.6.18
Anybody can help me ?