hi,
Am new to sliverstripe. Is it possible to give access permissions to a user, so that the user can only post in the blog and not have any admin rights ?
Thanks,
arnott
This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.
Please use forum.silverstripe.org for any new questions
(announcement).
The forum archive will stick around, but will be read only.
You can also use our Slack channel
or StackOverflow to ask for help.
Check out our community overview for more options to contribute.
hi,
Am new to sliverstripe. Is it possible to give access permissions to a user, so that the user can only post in the blog and not have any admin rights ?
Thanks,
arnott
Same question. I want to allow only registered users to comment and comment only. How do we do this?
Thanks for any help.
publisher - if you want users to have to login to comment you can set the following methods in your mysite/_config file
PageCommentInterface::set_comments_require_login(true); // require any logged in member
// OR If you only want specific members
PageCommentInterface::set_comments_require_permission('PAGECOMMENT_POST'); // where PAGECOMMENT_POST is your permission code (which you can set in the groups cms panel)
To arnott's question I would add that I have the same question - not about page comments but about an actual user who has the ability to post blog entries but no other administrative rights. Any suggestions on how to get this done?