HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Member List not working with 2.1a24?*
I'm trying to use this basic users listing
but it seems not working with next release 2.1 (tested with v2.1a24.1 from master branch)
I see "member" top menu link but result is a blank page (source code displayed is empty, nothing)
@csakip, do you have planed to upgrade it after summer holidays ?
may be I'm missing something but it's worked fine with 2.0.18.4 (on the same server)
thanks in advance
0
Comments
Thanks for the feedback Pamela, this is actually what we need with every plugin, to see if they still work with version 2.1, it's 1 less plugin to test. Any test result is a test result, so it's perfect that you found this.
There was an error rendering this rich post.
May be there is something to upgrade? here (default.php file)
public function PluginController_MembersList_Create(&$Sender){ if(Gdn::Session()->IsValid()){ $Sender->ClearCssFiles(); $Sender->AddCssFile('style.css'); $Sender->MasterView = 'default'; $Sender->UserData = Gdn::SQL()->Select('User.*')->From('User')->OrderBy('User.Name')->Where('Deleted',false)->Get(); RoleModel::SetUserRoles($Sender->UserData->Result()); $Sender->Render(dirname(__FILE__).DS.'memberlist.view.php'); } }
I mentioned this before - I'll try one more time than you can do what you want -
default.php with fixes
then follow this exactly as stated...
with these changes it works fine in vanilla 2.1
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
Many thanks @peregrine, I 'll try it ASAP
yes it's working fine
oups found it now... sorry
http://vanillaforums.org/discussion/comment/165702/#Comment_165702