Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
SSL lussumo
I would like to know how you can SSL the lussumo BBS.
I have been having problem with this... login page is SSLed but after loggin in, its goes back to non SSL.
elvin
0
Comments
I've added a new configuration setting called HTTP_METHOD to the subversion repository that will allow you to change to https.
Use php to see what the request method is and make the HTTP_METHOD configuration setting the same as that.
$Configuration['BASE_URL'] = '//***************/'; $Configuration['HTTP_METHOD'] = ''; $Configuration['FORWARD_VALIDATED_USER_URL'] = '//*************/';
Not sure though on how Garden reacts on the empty string. But it's valid to omit the protocol in a href, it takes the one of the referrer.
Edit
Did some testing, Garden doesn't like it and prepends http:// to the base url.