MyBB Community Forums

Full Version: Downloads Manager
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I have the Downloads Manager Mod which is available for download here;

Quote:http://mods.mybboard.net/view/downloads-manager

I've installed this onto my MyBB Board but I want it so only registered users can view this page which is viewable here;

Quote:http://imageace.co.tv/forum/downloads.php

Could someone help me do this?

Thank you.
Add a code to downloads.php to restrict them from accessing.
Add this anywhere after where "global.php" has been included in "downloads.php"

if(in_array($mybb->user['usergroup'], array(1,5,7)))
{
    error_no_permission();
} 

That will stop Guests , Awaiting Activation and banned groups from accessing that file. You can change the group numbers to suit your needs.