HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Profile controls not visible to members (after update to 2021.009)
jkitz
New
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.
0
Answers
Have you checked via dev tools in browser whether the elements are loaded but perhaps hidden or blocked?
Which theme(maybe caused by local changes), does it persist if another theme is used?
Any errors in browser dev tools console?
Any error with debug enabled?
https://open.vanillaforums.com/discussion/comment/261227/#Comment_261227
Are pretty urls enabled?
https://open.vanillaforums.com/discussion/comment/220157/#Comment_220157
(Required from 2.5)
Hi Kaspar,
I was using Foundation Theme on the forum with the issue, and switching to another theme has solved this issue.
Thanks very much for the suggestion!