Backend Panel Mod

Started by BamBam0077, November 20, 2017, 06:56:06 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

BamBam0077


DROP TABLE IF EXISTS `globalmodpanel`;
CREATE TABLE `globalmodpanel` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `name` varchar(50) default NULL,
  `url` varchar(50) default NULL,
  `info` varchar(100) default NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `modpanel`
--

INSERT INTO `gloablmodpanel` (`id`, `name`, `url`, `info`) VALUES (1000, 'Leechers', 'leechers.php', 'Show users with ratio under 0.40'),
(1001, 'Uploaders info panel', 'uploaderinfopanel.php', 'Addon to monitor uploades activity'),
(1002, 'Ratio above 100', 'ratio100.php', 'Show users with ratio above 100'),
(1003, 'Abnormal Upload Speed Detector', 'cheaters.php', 'See cheaters'),
(1004, 'Duplicate IP Check', 'ipcheck.php', 'Check for Duplicate IP Users'),
(1005, 'All Clients (currently)', 'allagents.php', 'Show All Clients (currently downloading/uploading/seeding)'),
(1006, 'User List', 'userslist.php', 'List Registered Users.'),
(1007, 'Staffbox', 'staffbox.php', 'Staffbox (Staff Contacts)'),
(1008, 'Uploaders Voting Booth', 'forums.php?action=viewforum&forumid=4', 'Uploaders Voting Booth'),
(1009, 'Polls', 'makepoll.php', 'Make a Poll'),
(1012, 'Uploaders', 'uploaders.php', 'Uploaders'),
(1011, 'List Polls', 'polloverview.php', 'List Polls'),
(1013, 'Stats', 'stats.php', 'Tracker Stats'),
(1014, 'IP Test', 'testip.php', 'IP Test'),
(1015, 'Reports', 'reports.php', 'Show Reports (forum,comment,torrent)');

-- --------------------------------------------------------

DROP TABLE IF EXISTS `globaladminpanel`;
CREATE TABLE `globaladminpanel` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `name` varchar(50) default NULL,
  `url` varchar(50) default NULL,
  `info` varchar(100) default NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `modpanel`
--

INSERT INTO `globaladminpanel` (`id`, `name`, `url`, `info`) VALUES (1000, 'Leechers', 'leechers.php', 'Show users with ratio under 0.40'),
(1001, 'Uploaders info panel', 'uploaderinfopanel.php', 'Addon to monitor uploades activity'),
(1002, 'Ratio above 100', 'ratio100.php', 'Show users with ratio above 100'),
(1003, 'Abnormal Upload Speed Detector', 'cheaters.php', 'See cheaters'),
(1004, 'Duplicate IP Check', 'ipcheck.php', 'Check for Duplicate IP Users'),
(1005, 'All Clients (currently)', 'allagents.php', 'Show All Clients (currently downloading/uploading/seeding)'),
(1006, 'User List', 'userslist.php', 'List Registered Users.'),
(1007, 'Staffbox', 'staffbox.php', 'Staffbox (Staff Contacts)'),
(1008, 'Uploaders Voting Booth', 'forums.php?action=viewforum&forumid=4', 'Uploaders Voting Booth'),
(1009, 'Polls', 'makepoll.php', 'Make a Poll'),
(1012, 'Uploaders', 'uploaders.php', 'Uploaders'),
(1011, 'List Polls', 'polloverview.php', 'List Polls'),
(1013, 'Stats', 'stats.php', 'Tracker Stats'),
(1014, 'IP Test', 'testip.php', 'IP Test'),
(1015, 'Reports', 'reports.php', 'Show Reports (forum,comment,torrent)');

-- --------------------------------------------------------

DROP TABLE IF EXISTS `ownerpanel`;
CREATE TABLE `ownerpanel` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `name` varchar(50) default NULL,
  `url` varchar(50) default NULL,
  `info` varchar(100) default NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `modpanel`
--

INSERT INTO `ownerpanel` (`id`, `name`, `url`, `info`) VALUES (1000, 'Leechers', 'leechers.php', 'Show users with ratio under 0.40'),
(1001, 'Uploaders info panel', 'uploaderinfopanel.php', 'Addon to monitor uploades activity'),
(1002, 'Ratio above 100', 'ratio100.php', 'Show users with ratio above 100'),
(1003, 'Abnormal Upload Speed Detector', 'cheaters.php', 'See cheaters'),
(1004, 'Duplicate IP Check', 'ipcheck.php', 'Check for Duplicate IP Users'),
(1005, 'All Clients (currently)', 'allagents.php', 'Show All Clients (currently downloading/uploading/seeding)'),
(1006, 'User List', 'userslist.php', 'List Registered Users.'),
(1007, 'Staffbox', 'staffbox.php', 'Staffbox (Staff Contacts)'),
(1008, 'Uploaders Voting Booth', 'forums.php?action=viewforum&forumid=4', 'Uploaders Voting Booth'),
(1009, 'Polls', 'makepoll.php', 'Make a Poll'),
(1012, 'Uploaders', 'uploaders.php', 'Uploaders'),
(1011, 'List Polls', 'polloverview.php', 'List Polls'),
(1013, 'Stats', 'stats.php', 'Tracker Stats'),
(1014, 'IP Test', 'testip.php', 'IP Test'),
(1015, 'Reports', 'reports.php', 'Show Reports (forum,comment,torrent)');

-- --------------------------------------------------------

DROP TABLE IF EXISTS `fourmmodpanel`;
CREATE TABLE `forummodpanel` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `name` varchar(50) default NULL,
  `url` varchar(50) default NULL,
  `info` varchar(100) default NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `modpanel`
--

INSERT INTO `forummodpanel` (`id`, `name`, `url`, `info`) VALUES (1000, 'Leechers', 'leechers.php', 'Show users with ratio under 0.40'),
(1001, 'Uploaders info panel', 'uploaderinfopanel.php', 'Addon to monitor uploades activity'),
(1002, 'Ratio above 100', 'ratio100.php', 'Show users with ratio above 100'),
(1003, 'Abnormal Upload Speed Detector', 'cheaters.php', 'See cheaters'),
(1004, 'Duplicate IP Check', 'ipcheck.php', 'Check for Duplicate IP Users'),
(1005, 'All Clients (currently)', 'allagents.php', 'Show All Clients (currently downloading/uploading/seeding)'),
(1006, 'User List', 'userslist.php', 'List Registered Users.'),
(1007, 'Staffbox', 'staffbox.php', 'Staffbox (Staff Contacts)'),
(1008, 'Uploaders Voting Booth', 'forums.php?action=viewforum&forumid=4', 'Uploaders Voting Booth'),
(1009, 'Polls', 'makepoll.php', 'Make a Poll'),
(1012, 'Uploaders', 'uploaders.php', 'Uploaders'),
(1011, 'List Polls', 'polloverview.php', 'List Polls'),
(1013, 'Stats', 'stats.php', 'Tracker Stats'),
(1014, 'IP Test', 'testip.php', 'IP Test'),
(1015, 'Reports', 'reports.php', 'Show Reports (forum,comment,torrent)');

-- --------------------------------------------------------

DROP TABLE IF EXISTS `fourmadminpanel`;
CREATE TABLE `forumadminpanel` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `name` varchar(50) default NULL,
  `url` varchar(50) default NULL,
  `info` varchar(100) default NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `modpanel`
--

INSERT INTO `forumadminpanel` (`id`, `name`, `url`, `info`) VALUES (1000, 'Leechers', 'leechers.php', 'Show users with ratio under 0.40'),
(1001, 'Uploaders info panel', 'uploaderinfopanel.php', 'Addon to monitor uploades activity'),
(1002, 'Ratio above 100', 'ratio100.php', 'Show users with ratio above 100'),
(1003, 'Abnormal Upload Speed Detector', 'cheaters.php', 'See cheaters'),
(1004, 'Duplicate IP Check', 'ipcheck.php', 'Check for Duplicate IP Users'),
(1005, 'All Clients (currently)', 'allagents.php', 'Show All Clients (currently downloading/uploading/seeding)'),
(1006, 'User List', 'userslist.php', 'List Registered Users.'),
(1007, 'Staffbox', 'staffbox.php', 'Staffbox (Staff Contacts)'),
(1008, 'Uploaders Voting Booth', 'forums.php?action=viewforum&forumid=4', 'Uploaders Voting Booth'),
(1009, 'Polls', 'makepoll.php', 'Make a Poll'),
(1012, 'Uploaders', 'uploaders.php', 'Uploaders'),
(1011, 'List Polls', 'polloverview.php', 'List Polls'),
(1013, 'Stats', 'stats.php', 'Tracker Stats'),
(1014, 'IP Test', 'testip.php', 'IP Test'),
(1015, 'Reports', 'reports.php', 'Show Reports (forum,comment,torrent)');

-- --------------------------------------------------------

DROP TABLE IF EXISTS `fourmownerpanel`;
CREATE TABLE `forumownerpanel` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `name` varchar(50) default NULL,
  `url` varchar(50) default NULL,
  `info` varchar(100) default NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `modpanel`
--

INSERT INTO `forumownerpanel` (`id`, `name`, `url`, `info`) VALUES (1000, 'Leechers', 'leechers.php', 'Show users with ratio under 0.40'),
(1001, 'Uploaders info panel', 'uploaderinfopanel.php', 'Addon to monitor uploades activity'),
(1002, 'Ratio above 100', 'ratio100.php', 'Show users with ratio above 100'),
(1003, 'Abnormal Upload Speed Detector', 'cheaters.php', 'See cheaters'),
(1004, 'Duplicate IP Check', 'ipcheck.php', 'Check for Duplicate IP Users'),
(1005, 'All Clients (currently)', 'allagents.php', 'Show All Clients (currently downloading/uploading/seeding)'),
(1006, 'User List', 'userslist.php', 'List Registered Users.'),
(1007, 'Staffbox', 'staffbox.php', 'Staffbox (Staff Contacts)'),
(1008, 'Uploaders Voting Booth', 'forums.php?action=viewforum&forumid=4', 'Uploaders Voting Booth'),
(1009, 'Polls', 'makepoll.php', 'Make a Poll'),
(1012, 'Uploaders', 'uploaders.php', 'Uploaders'),
(1011, 'List Polls', 'polloverview.php', 'List Polls'),
(1013, 'Stats', 'stats.php', 'Tracker Stats'),
(1014, 'IP Test', 'testip.php', 'IP Test'),
(1015, 'Reports', 'reports.php', 'Show Reports (forum,comment,torrent)');

-- --------------------------------------------------------


orginal code from TS 1.3.9 work around it and it could be something else for you to use?
"When Darkness Shadows Your Doubts, Deep Within Us Is Our Key, Not Success But Everything" ~ Anonymous