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.
One login : get all the Vanillas
Hello
This thing is very strange .. I have two Vanillas installed ... one in the folder 'vanilla' and the other in 'translato' ... the problem is that I've 'alnokta' account in both of them but with different passwords but both have administrative permissions ....when I login at any of the two Vanillas ... I'm logged in the other one ... It is really annoying ... because if I try to change a setting in a 'translato''s Vanilla while I'm logged in using 'vanilla''s login page, I get errors saying that php needs write permissions .... so I have to logout then login again through 'translato''s login page ... so the question is .. how to stop that ? and how to teach each Vanilla to mind its own business?
In-case you ask about the cookie settings .... it is the default ones .. written by the installers ...
Translato:
Cookie domain: www.alnokta.ignorelist.com
Cookie path: /translato/
vanilla:
Cookie domain: www.alnokta.ignorelist.com
Cookie path: /vanilla/
In addition to that problem .. I'm suffering also from the same issue mentioned here : http://lussumo.com/community/discussion/3716/remember-me-doesnt-work/#Item_7
Sorry for the long input...
0
This discussion has been closed.
Comments
$Configuration['COOKIE_USER_KEY'] = 'lussumocookieone';
$Configuration['COOKIE_VERIFICATION_KEY'] = 'lussumocookietwo';
lines out of appg/settings.php, and copy them into the conf/settings.php files for each forum, then change the names of them appropriately. e.g.
$Configuration['COOKIE_USER_KEY'] = 'lussumocookieonevanilla';
$Configuration['COOKIE_VERIFICATION_KEY'] = 'lussumocookietwovanilla';
and
$Configuration['COOKIE_USER_KEY'] = 'lussumocookieonetranslato';
$Configuration['COOKIE_VERIFICATION_KEY'] = 'lussumocookietwotranslato';
if so paste the appropriate parts of each conf file here.
$Configuration['COOKIE_USER_KEY'] = 'lussumocookieonevanilla';
$Configuration['COOKIE_VERIFICATION_KEY'] = 'lussumocookietwovanilla';
into vanilla/conf/settings.php
and:
$Configuration['COOKIE_USER_KEY'] = 'lussumocookieonetranslato';
$Configuration['COOKIE_VERIFICATION_KEY'] = 'lussumocookietwotranslato';
into translato/conf/settings.php?
If so, what cookies get set for you when you log in?
Minisweeper has given the hint for cookies, and I add that for sessionId you should differentiate this setting:
$Configuration['SESSION_USER_IDENTIFIER'] = 'LussumoUserID';
$Configuration['SESSION_USER_IDENTIFIER'] = 'TranslatoID';
The purpose is to DIFFERENTIATE these ID to avoid the collision of sessions.
In fact you do not need to copy it in the other install either. That's why Mark let most setting in the main setting file: they are only useful in special case. Then you should copy and modify the relevent setting.