HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

Profile controls not visible to members (after update to 2021.009)

jkitzjkitz New
edited January 2022 in Vanilla 3.x Help

Hello, I manage two vanilla forums. After an update I had to run the following so that various elements would appear to signed in members (thanks for the various useful threads on this.)

UPDATE GDN_Permission
SET `Vanilla.Discussions.View` = 1
   , `Garden.Activity.View` = 1
   , `Garden.Profiles.View` = 1
WHERE JunctionID IS NULL
AND JunctionTable IS NULL
AND JunctionColumn IS NULL
AND RoleID IN (
   SELECT RoleID
   FROM GDN_Role
)

UPDATE `GDN_User` SET Permissions = ''

This has fixed all issues on the one site, and all but one issue on the other site. Both are on the same host (meaning the same php configurations.)

The remaining issue is the profile controls are still not being visible on the older forum. This was upgraded from 2.3 and I am wondering if missing something in the instructions here https://success.vanillaforums.com/kb/articles/158-upgrading could have caused this? As far as I can tell I followed these correctly.

Answers

Sign In or Register to comment.