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.
Fresh install bug
As a test I installed vanilla 1.1 on my box (locally) everything went smoothly until I got to the part where the admin logs in. It processes the login and takes you to the discussions. But it doesn't login.
No clue if this is a bug with installing it locally, though I don't think so because I've never had any problems with previous versions.
0
This discussion has been closed.
Comments
$Configuration['COOKIE_USER_KEY'] = 'lussumocookieone'; $Configuration['COOKIE_VERIFICATION_KEY'] = 'lussumocookietwo'; $Configuration['SESSION_USER_IDENTIFIER'] = 'LussumoUserID'; $Configuration['COOKIE_DOMAIN'] = '.domain.com'; $Configuration['COOKIE_PATH'] = '/';
Then also make sure to wipe out your old forum cookies and kill any active sessions before trying to sign in.
I guess the next step is to see if any session or cookie values are actually being set when you sign in. Try signing in and then look in your browser's options to see what the cookie values are for your domain (php stores it's session info in cookies).
I'm also missing these three:
$Configuration['COOKIE_USER_KEY'] = 'lussumocookieone'; $Configuration['COOKIE_VERIFICATION_KEY'] = 'lussumocookietwo'; $Configuration['SESSION_USER_IDENTIFIER'] = 'LussumoUserID';
Edit:I'm not seeing any new cookies, after clearing them. I applied as if a new applicant though, then tried to relog as the admin. I get the "review new membership applicants" intro, but clicking that gives me the same logged out result as before.
Edit: On a positive note, other upgraded installations are working without a hitch, with a load of extensions to boot.
I created a virtual host for my vanilla installations, and left localhost for XAMPP.
My forum was http://eclipse/vanilla and $Configuration['COOKIE_DOMAIN'] was set to 'eclipse'. I could find any cookies for vanilla.
I guessed one word is not a valid cookie domain name.
I set the virtual host and $Configuration['COOKIE_DOMAIN'] to '.eclipse.localhost' (and set it also in C:\WINDOWS\system32\drivers\etc\hosts), and it was working again. There might be better fix, like set $Configuration['COOKIE_DOMAIN'] to an empty string or to '.localhost'. I should have tried.
$Configuration['COOKIE_DOMAIN'] = 'localhost:8888'; $Configuration['COOKIE_PATH'] = '/forum/';
http://localhost:8888/forum/ gets me to the message board all right.
Setting COOKIE_DOMAIN to ' ' (blank, but with no space) doesn't fix it.
There's also this a bit earlier in the conf/settings.php:
$Configuration['WEB_ROOT'] = '/forum/'; $Configuration['BASE_URL'] = 'http://localhost:8888/forum/'; $Configuration['FORWARD_VALIDATED_USER_URL'] = 'http://localhost:8888/forum/';
$Configuration['COOKIE_DOMAIN'] = ''; $Configuration['COOKIE_PATH'] = '/';
Of course, I had to go through the usual hoops of signing out, removing all cookie and session variables, closing and restarting firefox. But it worked dandy after that.
Thanks Mark and Dinoboff for the assist!
I seem to remember "/forum/" was auto-suggested in the installation. Hrmm...