MyBB Community Forums

Full Version: After downloading and installing new mod for downloads getting errors in admin acp.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi everybody, I recently download a new mod that allows you to have a download section. after following the set instructions, and logging back in to admin acp I get this error message at the top of the page.

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

I went to mybb mods and downloaded from 1.10 section. Not sure what to do. Any help from the community would be nice. Big GrinThanks.
it seems like the table in the data base wasn't created

you may add it mannually
 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

use this code in ur phpmyadmin run query

regards
I'm going to move this to the Code Modifications forum.
Thanks very much, pasted the code in and ran execute sql script in webmin and that did the trick. It created the table for the forum, except there is a mistake in table name of code should be mybb_tableforumdownloads. Once I did this I got the correct table and it works now like a charm. Thank you for your fast response, I appreciate it alot.