@julian Fixed ha didnt know about the "edit profile" with the dropdown. thx.
Also, plugin seemed to work fine. Haven't ran into any errors yet but might customize later on to allow another specific usergroup to view not just admins.
That its possible?
I have some forums and moderators want to manage it ... But i dont want they have acess to Admin Panel.
@Pablo Macaluso
till then, you can add a moderator this way
{cid} --> the category id
{uid} --> the user id
redis terminal client
sadd cid:{cid}:moderators {uid}
mongo console client
i think
db.objects.update( { _key: 'cid:{cid}:moderators' }, { $addToSet: { members: '{uid}' }}, { upsert: true, w: 1 });
@Pablo Macaluso
till then, you can add a moderator this way
{cid} --> the category id
{uid} --> the user idredis terminal client
sadd cid:{cid}:moderators {uid}
mongo console client
i thinkdb.objects.update( { _key: 'cid:{cid}:moderators' }, { $addToSet: { members: '{uid}' }}, { upsert: true, w: 1 });
i will try, its hard for me, im a little newbie. xP