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.
Dis-"Allow non-members to browse the forum" problem
#1) Love Vanilla
#2) I did search around to find this answer before posting
Ok when I uncheck "Allow non-members to browse the forum" so that you have to register to browse the forums... it hides it from everyone. When I try and go to the forum it timesout in firefox. I assume, that I should get the register/sign in box when this is unchecked and I'm not signed in with a cookie. Instead i just get nothing.
Manually checking this in settings.php and uploading it makes the forum reappear. What am I doing wrong?
Thanks
Scott
0
This discussion has been closed.
Comments
function Check(&$Context) { if (($this->UserID == 0 && !$Context->Configuration['PUBLIC_BROWSING']) || ($this->UserID > 0 && !$this->User->PERMISSION_SIGN_IN)) { if ($this->UserID > 0 && !$this->User->PERMISSION_SIGN_IN) $this->End($Context->Authenticator); header('location: '.AppendUrlParameters($Context->Configuration['SAFE_REDIRECT'], 'ReturnUrl='.GetRequestUri())); die(); } }