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.

ErrPostBackKeySignOutInvalid

edited September 2008 in Vanilla 1.0 Help
every time when i try to log-out... there is the people.php displayed with "ErrPostBackKeySignOutInvalid"

check it on my forum

n: test1
p: 1234

Comments

  • edited September 2008
    You need to update your theme and your language definitions...
  • edited October 2008
    themes/{YourTheme}/menu.php need to be updated. You now create the log in/out link like that: if ($this->Context->Session->UserID > 0) { echo str_replace('//1', $this->Context->Session->User->Name, $this->Context->GetDefinition('SignedInAsX')) . ' (<a href="' . FormatStringForDisplay(AppendUrlParameters( $this->Context->Configuration['SIGNOUT_URL'], 'FormPostBackKey=' . $this->Context->Session->GetCsrfValidationKey() )) . '">'.$this->Context->GetDefinition('SignOut').'</a>)'; } else { echo $this->Context->GetDefinition('NotSignedIn') . ' (<a href="' . FormatStringForDisplay(AppendUrlParameters( $this->Context->Configuration['SIGNIN_URL'], 'ReturnUrl='. urlencode(GetRequestUri(0)))) . '">'.$this->Context->GetDefinition('SignIn').'</a>)'; }

    I don't know when Jazzman will update its themes. You will have to patch it yourself.
  • edited September 2008
    Here are the added definitions in vanilla 1.1.5:
    Index: English/definitions.php =================================================================== --- English/definitions.php (revision 666) +++ English/definitions.php (revision 754) @@ -126,6 +126,7 @@ $Context->Dictionary['Users'] = 'Users'; $Context->Dictionary['AllRoles'] = 'All roles'; $Context->Dictionary['Advanced'] = 'Advanced'; +$Context->Dictionary['SearchTerms'] = 'Search terms:'; $Context->Dictionary['ChooseSearchType'] = 'Search:'; $Context->Dictionary['DiscussionTopicSearch'] = 'Discussion topic search'; $Context->Dictionary['FindDiscussionsContaining'] = 'Find discussion topics containing'; @@ -570,6 +571,7 @@ // Added for Vanilla 1.1 on 2007-02-20 $Context->Dictionary['ErrPostBackKeyInvalid'] = 'There was a problem authenticating your post information.'; $Context->Dictionary['ErrPostBackActionInvalid'] = 'Your post information was not be defined properly.'; +$Context->Dictionary['ErrPostBackKeySignOutInvalid'] = 'Can you please confirm you would like to sign out?'; // Moved from settings.php $Context->Dictionary['TextWhispered'] = 'Private'; $Context->Dictionary['TextSticky'] = 'Sticky'; @@ -590,9 +592,11 @@ $Context->Dictionary['DeclineForMembership'] = 'Decline'; $Context->Dictionary['ApplicantsNotes'] = 'Use this form to approve or decline new membership applicants.'; $Context->Dictionary['NoApplicants'] = 'There are currently no applicants to review...'; +// Added for ajax/sortroles.php +$Context->Dictionary['ErrPermissionSortRoles'] = 'You do not have the permission to sort roles'; +$Context->Dictionary['ErrPermissionSortCategories'] = 'You do not have the permission to sort categories'; +//Added for Vanilla 1.1.5 on 2008-05-25 +$Context->Dictionary['EditYourDiscussion'] = 'Edit your discussion'; /* Please do not remove or alter this definition */ $Context->Dictionary['PanelFooter'] = '<p id="AboutVanilla"><a href="http://getvanilla.com">Vanilla '.APPLICATION_VERSION.'</a> is a product of <a href="http://lussumo.com">Lussumo</a>. More Information: <a href="http://lussumo.com/docs">Documentation</a>, <a href="http://lussumo.com/community">Community Support</a>.</p>';
This discussion has been closed.