MyBB Community Forums

Full Version: Getting Access Denied in Downloads Section.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
History is was getting this error:

SadmySQL error: 1146
Table 'nwntor.mybb_tableforumdownloads' doesn't exist
Query: SELECT COUNT(*) AS numdownloads FROM mybb_tableforumdownloads

Big GrinThe Fix is:

CREATE TABLE mybb_forumdownloads (
did smallint(6) NOT NULL auto_increment,
cid smallint(6) NOT NULL default '0',
uid smallint(6) NOT NULL default '0',
name varchar(32) NOT NULL default '',
description text NOT NULL,
url varchar(200) NOT NULL default '',
visible char(3) NOT NULL default '',
sticky char(3) NOT NULL default '',
validated char(3) NOT NULL default '',
PRIMARY KEY (did)
) TYPE=MyISAM AUTO_INCREMENT=1

But now I get this error when accessing the download section.

RolleyesAccess Denied
You do not have permission to access this part of the administration control panel.

I get this error if I try to add, modify/delete, and validate submission.
Everything else is working fine after fix. But not sure where to set permissions for this. Want to Big GrinThank Community for all there help so far.


Please check the settings in your Admin-CP -> Users and Groups -> Admin Permissions.