MyBB Community Forums

Full Version: modcp for moderators
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to create a page similar to the site.com/modcp.php page but in the new page I want it for the moderators group (the one which moderate specific forums) and they can only access stuff like reports but in their own sections and posts awating moderating.

How do i do this?

Can I get help or no?
Can someone help me it's been over 24 hours.
(2013-01-03, 07:44 AM)Joker552 Wrote: [ -> ]I want to create a page similar to the site.com/modcp.php page but in the new page I want it for the moderators group (the one which moderate specific forums) and they can only access stuff like reports but in their own sections and posts awating moderating.

How do i do this?

Can I get help or no?

You'll have to have knowledge in the areas of HTML and CSS as far as I know.
Can someone do it for me or help me please?
(2013-01-05, 04:44 AM)Agent Shark Wrote: [ -> ]
(2013-01-03, 07:44 AM)Joker552 Wrote: [ -> ]I want to create a page similar to the site.com/modcp.php page but in the new page I want it for the moderators group (the one which moderate specific forums) and they can only access stuff like reports but in their own sections and posts awating moderating.

How do i do this?

Can I get help or no?

You'll have to have knowledge in the areas of HTML and CSS as far as I know.

Well I think they would need to create a page using PHP first in their FTP then play around with the moderator templates. It's a good question and can't help the OP out either.
Thanks but i still need help.
To achieve this you will either need to make/request a plugin or create a custom page yourself using PHP. I don't believe this would be possible using templates (with the default install anyway) due to checking for permissions and restricting access to certain ModCP functions.

Plugin requests forum: http://community.mybb.com/forum-65.html
(2013-01-11, 09:19 AM)Polarbear541 Wrote: [ -> ]To achieve this you will either need to make/request a plugin or create a custom page yourself using PHP. I don't believe this would be possible using templates (with the default install anyway) due to checking for permissions and restricting access to certain ModCP functions.

Plugin requests forum: http://community.mybb.com/forum-65.html

Is it possible to just add a page in which it will redirect to the reported posts page?
Something like this would work if you just wanted a simple redirect.
<?php
header("Location: http://www.yourforum.com/modcp.php?action=reports");
?>

But obviously bear in mind that even if you do remove the other links to the ModCP. It will still be possible for users to access other sections (if they are a mod) by entering the URL directly.