-- phpMyAdmin SQL Dump -- version 3.3.2deb1 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: May 18, 2010 at 01:10 AM -- Server version: 5.1.41 -- PHP Version: 5.3.2-1ubuntu4 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `nexus20100517` -- -- -------------------------------------------------------- -- -- Table structure for table `adminpanel` -- CREATE TABLE IF NOT EXISTS `adminpanel` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(128) NOT NULL DEFAULT '', `url` varchar(255) NOT NULL DEFAULT '', `info` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ; -- -- Dumping data for table `adminpanel` -- INSERT INTO `adminpanel` (`id`, `name`, `url`, `info`) VALUES (1, 'Add user', 'adduser.php', 'Create new user account'), (3, 'Reset Users Password', 'reset.php', 'Rest lost Passwords'), (4, 'Mass PM', 'staffmess.php', 'Send PM to all users'), (5, 'List Unconnectable Users', 'notconnectable.php', 'View All Unconnectable Users'), (6, 'Poll overview', 'polloverview.php', 'View poll votes'), (7, 'Warned users', 'warned.php', 'See all warned users on tracker'), (8, 'FreeLeech', 'freeleech.php', 'Set ALL Torrents At Special State.'), (9, 'FAQ Management', 'faqmanage.php', 'Edit/Add/Delete FAQ Page'), (10, 'Rules Management', 'modrules.php', 'Edit/Add/Delete RULES Page'), (11, 'Category Manage', 'catmanage.php', 'Manage torrents categories at your site'); -- -------------------------------------------------------- -- -- Table structure for table `advertisements` -- CREATE TABLE IF NOT EXISTS `advertisements` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `enabled` tinyint(1) NOT NULL DEFAULT '0', `type` enum('bbcodes','xhtml','text','image','flash') NOT NULL, `position` enum('header','footer','belownav','belowsearchbox','torrentdetail','comment','interoverforums','forumpost','popup') NOT NULL, `displayorder` tinyint(3) NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL DEFAULT '', `parameters` text NOT NULL, `code` text NOT NULL, `starttime` datetime NOT NULL, `endtime` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `advertisements` -- -- -------------------------------------------------------- -- -- Table structure for table `agent_allowed_exception` -- CREATE TABLE IF NOT EXISTS `agent_allowed_exception` ( `family_id` tinyint(3) unsigned NOT NULL, `name` varchar(100) NOT NULL DEFAULT '', `peer_id` varchar(20) NOT NULL, `agent` varchar(100) NOT NULL, `comment` varchar(200) NOT NULL DEFAULT '', KEY `family_id` (`family_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `agent_allowed_exception` -- INSERT INTO `agent_allowed_exception` (`family_id`, `name`, `peer_id`, `agent`, `comment`) VALUES (16, 'uTorrent 1.80B (Build 6838)', '-UT180B-', 'uTorrent/180B(6838)', 'buggy build that always seeding bad request'); -- -------------------------------------------------------- -- -- Table structure for table `agent_allowed_family` -- CREATE TABLE IF NOT EXISTS `agent_allowed_family` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `family` varchar(50) NOT NULL DEFAULT '', `start_name` varchar(100) NOT NULL DEFAULT '', `peer_id_pattern` varchar(200) NOT NULL, `peer_id_match_num` tinyint(3) unsigned NOT NULL, `peer_id_matchtype` enum('dec','hex') NOT NULL DEFAULT 'dec', `peer_id_start` varchar(20) NOT NULL, `agent_pattern` varchar(200) NOT NULL, `agent_match_num` tinyint(3) unsigned NOT NULL, `agent_matchtype` enum('dec','hex') NOT NULL DEFAULT 'dec', `agent_start` varchar(100) NOT NULL, `exception` enum('yes','no') NOT NULL DEFAULT 'no', `allowhttps` enum('yes','no') NOT NULL DEFAULT 'no', `comment` varchar(200) NOT NULL DEFAULT '', `hits` mediumint(8) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `agent_allowed_family` -- INSERT INTO `agent_allowed_family` (`id`, `family`, `start_name`, `peer_id_pattern`, `peer_id_match_num`, `peer_id_matchtype`, `peer_id_start`, `agent_pattern`, `agent_match_num`, `agent_matchtype`, `agent_start`, `exception`, `allowhttps`, `comment`, `hits`) VALUES (1, 'uTorrent 2.x.x', 'uTorrent 2.0(build 17624)', '/^-UT2([0-9])([0-9])([0-9])-/', 3, 'dec', '-UT2000-', '/^uTorrent\\/2([0-9])([0-9])([0-9])/', 3, 'dec', 'uTorrent/2000', 'no', 'yes', '', 0); -- -------------------------------------------------------- -- -- Table structure for table `allowedemails` -- CREATE TABLE IF NOT EXISTS `allowedemails` ( `id` int(10) NOT NULL AUTO_INCREMENT, `value` mediumtext NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `allowedemails` -- INSERT INTO `allowedemails` (`id`, `value`) VALUES (1, '@st.zju.edu.cn @gstu.zju.edu.cn @fa.zju.edu.cn @zuaa.zju.edu.cn'); -- -------------------------------------------------------- -- -- Table structure for table `attachments` -- CREATE TABLE IF NOT EXISTS `attachments` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `width` smallint(6) unsigned NOT NULL DEFAULT '0', `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `filename` varchar(255) NOT NULL DEFAULT '', `dlkey` char(32) NOT NULL, `filetype` varchar(50) NOT NULL DEFAULT '', `filesize` bigint(20) unsigned NOT NULL DEFAULT '0', `location` varchar(255) NOT NULL, `downloads` mediumint(8) NOT NULL DEFAULT '0', `isimage` tinyint(1) unsigned NOT NULL DEFAULT '0', `thumb` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `pid` (`userid`,`id`), KEY `dateline` (`added`,`isimage`,`downloads`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `attachments` -- -- -------------------------------------------------------- -- -- Table structure for table `audiocodecs` -- CREATE TABLE IF NOT EXISTS `audiocodecs` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `image` varchar(255) NOT NULL, `sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC AUTO_INCREMENT=10 ; -- -- Dumping data for table `audiocodecs` -- INSERT INTO `audiocodecs` (`id`, `name`, `image`, `sort_index`) VALUES (1, 'FLAC', '', 0), (2, 'APE', '', 0), (3, 'DTS', '', 0), (4, 'MP3', '', 0), (5, 'OGG', '', 0), (6, 'AAC', '', 0), (7, 'Other', '', 0); -- -------------------------------------------------------- -- -- Table structure for table `avps` -- CREATE TABLE IF NOT EXISTS `avps` ( `arg` varchar(20) NOT NULL DEFAULT '', `value_s` text NOT NULL, `value_i` int(11) NOT NULL DEFAULT '0', `value_u` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`arg`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `avps` -- INSERT INTO `avps` (`arg`, `value_s`, `value_i`, `value_u`) VALUES ('lastcleantime', '', 0, 1274104801), ('last24', '', 947, 1211708476), ('lastcleantime2', '', 0, 1274103601), ('lastcleantime3', '', 0, 1274101801), ('lastcleantime4', '', 0, 1274079901), ('lastcleantime5', '', 0, 1273652875); -- -------------------------------------------------------- -- -- Table structure for table `bannedemails` -- CREATE TABLE IF NOT EXISTS `bannedemails` ( `id` int(10) NOT NULL AUTO_INCREMENT, `value` mediumtext NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `bannedemails` -- INSERT INTO `bannedemails` (`id`, `value`) VALUES (1, '@test.com'); -- -------------------------------------------------------- -- -- Table structure for table `bans` -- CREATE TABLE IF NOT EXISTS `bans` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `addedby` mediumint(8) unsigned NOT NULL DEFAULT '0', `comment` varchar(255) NOT NULL DEFAULT '', `first` bigint(20) NOT NULL, `last` bigint(20) NOT NULL, PRIMARY KEY (`id`), KEY `first_last` (`first`,`last`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `bans` -- -- -------------------------------------------------------- -- -- Table structure for table `bitbucket` -- CREATE TABLE IF NOT EXISTS `bitbucket` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `owner` mediumint(8) unsigned NOT NULL DEFAULT '0', `name` varchar(255) NOT NULL, `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `public` enum('0','1') NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `bitbucket` -- -- -------------------------------------------------------- -- -- Table structure for table `blocks` -- CREATE TABLE IF NOT EXISTS `blocks` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `blockid` mediumint(8) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `userfriend` (`userid`,`blockid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `blocks` -- -- -------------------------------------------------------- -- -- Table structure for table `bookmarks` -- CREATE TABLE IF NOT EXISTS `bookmarks` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `torrentid` mediumint(8) unsigned NOT NULL DEFAULT '0', `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `userid_torrentid` (`userid`,`torrentid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `bookmarks` -- -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE IF NOT EXISTS `categories` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `mode` tinyint(3) unsigned NOT NULL DEFAULT '1', `class_name` varchar(255) NOT NULL DEFAULT '', `name` varchar(30) NOT NULL, `image` varchar(255) NOT NULL, `sort_index` smallint(5) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `mode_sort` (`mode`,`sort_index`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=410 ; -- -- Dumping data for table `categories` -- INSERT INTO `categories` (`id`, `mode`, `class_name`, `name`, `image`, `sort_index`) VALUES (401, 4, 'c_movies', 'Movies', 'catsprites.png', 0), (402, 4, 'c_tvseries', 'TV Series', 'catsprites.png', 3), (403, 4, 'c_tvshows', 'TV Shows', 'catsprites.png', 4), (404, 4, 'c_doc', 'Documentaries', 'catsprites.png', 1), (405, 4, 'c_anime', 'Animations', 'catsprites.png', 2), (406, 4, 'c_mv', 'Music Videos', 'catsprites.png', 5), (407, 4, 'c_sports', 'Sports', 'catsprites.png', 6), (408, 4, 'c_hqaudio', 'HQ Audio', 'catsprites.png', 8), (409, 4, 'c_misc', 'Misc', 'catsprites.png', 7); -- -------------------------------------------------------- -- -- Table structure for table `caticons` -- CREATE TABLE IF NOT EXISTS `caticons` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(64) NOT NULL DEFAULT '', `folder` varchar(255) NOT NULL, `cssfile` varchar(255) NOT NULL DEFAULT '', `multilang` enum('yes','no') NOT NULL DEFAULT 'no', `secondicon` enum('yes','no') NOT NULL DEFAULT 'no', `designer` varchar(50) NOT NULL DEFAULT '', `comment` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ; -- -- Dumping data for table `caticons` -- INSERT INTO `caticons` (`id`, `name`, `folder`, `cssfile`, `multilang`, `secondicon`, `designer`, `comment`) VALUES (1, 'SceneTorrents mod', 'scenetorrents/', 'pic/category/chd/scenetorrents/catsprites.css', 'yes', 'no', 'NexusPHP', 'Modified from SceneTorrents'); -- -------------------------------------------------------- -- -- Table structure for table `cheaters` -- CREATE TABLE IF NOT EXISTS `cheaters` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `torrentid` mediumint(8) unsigned NOT NULL DEFAULT '0', `uploaded` bigint(20) unsigned NOT NULL DEFAULT '0', `downloaded` bigint(20) unsigned NOT NULL DEFAULT '0', `anctime` mediumint(8) unsigned NOT NULL DEFAULT '0', `seeders` mediumint(5) unsigned NOT NULL DEFAULT '0', `leechers` mediumint(8) unsigned NOT NULL DEFAULT '0', `hit` tinyint(3) unsigned NOT NULL DEFAULT '0', `dealtby` mediumint(8) unsigned NOT NULL DEFAULT '0', `dealtwith` tinyint(1) NOT NULL DEFAULT '0', `comment` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `cheaters` -- -- -------------------------------------------------------- -- -- Table structure for table `chronicle` -- CREATE TABLE IF NOT EXISTS `chronicle` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `txt` text, PRIMARY KEY (`id`), KEY `added` (`added`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `chronicle` -- -- -------------------------------------------------------- -- -- Table structure for table `codecs` -- CREATE TABLE IF NOT EXISTS `codecs` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ; -- -- Dumping data for table `codecs` -- INSERT INTO `codecs` (`id`, `name`, `sort_index`) VALUES (1, 'H.264', 0), (2, 'VC-1', 0), (3, 'Xvid', 0), (4, 'MPEG-2', 0), (5, 'Other', 0); -- -------------------------------------------------------- -- -- Table structure for table `comments` -- CREATE TABLE IF NOT EXISTS `comments` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user` mediumint(8) unsigned NOT NULL DEFAULT '0', `torrent` mediumint(8) unsigned NOT NULL DEFAULT '0', `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `text` text, `ori_text` text, `editedby` mediumint(8) unsigned NOT NULL DEFAULT '0', `editdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `offer` mediumint(8) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `user` (`user`), KEY `torrent_id` (`torrent`,`id`), KEY `offer_id` (`offer`,`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `comments` -- -- -------------------------------------------------------- -- -- Table structure for table `countries` -- CREATE TABLE IF NOT EXISTS `countries` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `flagpic` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=108 ; -- -- Dumping data for table `countries` -- INSERT INTO `countries` (`id`, `name`, `flagpic`) VALUES (1, 'Sweden', 'sweden.gif'), (2, 'United States of America', 'usa.gif'), (3, 'Russia', 'russia.gif'), (4, 'Finland', 'finland.gif'), (5, 'Canada', 'canada.gif'), (6, 'France', 'france.gif'), (7, 'Germany', 'germany.gif'), (8, '中国', 'china.gif'), (9, 'Italy', 'italy.gif'), (10, 'Denmark', 'denmark.gif'), (11, 'Norway', 'norway.gif'), (12, 'United Kingdom', 'uk.gif'), (13, 'Ireland', 'ireland.gif'), (14, 'Poland', 'poland.gif'), (15, 'Netherlands', 'netherlands.gif'), (16, 'Belgium', 'belgium.gif'), (17, 'Japan', 'japan.gif'), (18, 'Brazil', 'brazil.gif'), (19, 'Argentina', 'argentina.gif'), (20, 'Australia', 'australia.gif'), (21, 'New Zealand', 'newzealand.gif'), (23, 'Spain', 'spain.gif'), (24, 'Portugal', 'portugal.gif'), (25, 'Mexico', 'mexico.gif'), (26, 'Singapore', 'singapore.gif'), (70, 'India', 'india.gif'), (65, 'Albania', 'albania.gif'), (29, 'South Africa', 'southafrica.gif'), (30, 'South Korea', 'southkorea.gif'), (31, 'Jamaica', 'jamaica.gif'), (32, 'Luxembourg', 'luxembourg.gif'), (34, 'Belize', 'belize.gif'), (35, 'Algeria', 'algeria.gif'), (36, 'Angola', 'angola.gif'), (37, 'Austria', 'austria.gif'), (38, 'Yugoslavia', 'yugoslavia.gif'), (39, 'Western Samoa', 'westernsamoa.gif'), (40, 'Malaysia', 'malaysia.gif'), (41, 'Dominican Republic', 'dominicanrep.gif'), (42, 'Greece', 'greece.gif'), (43, 'Guatemala', 'guatemala.gif'), (44, 'Israel', 'israel.gif'), (45, 'Pakistan', 'pakistan.gif'), (46, 'Czech Republic', 'czechrep.gif'), (47, 'Serbia', 'serbia.gif'), (48, 'Seychelles', 'seychelles.gif'), (50, 'Puerto Rico', 'puertorico.gif'), (51, 'Chile', 'chile.gif'), (52, 'Cuba', 'cuba.gif'), (53, 'Congo', 'congo.gif'), (54, 'Afghanistan', 'afghanistan.gif'), (55, 'Turkey', 'turkey.gif'), (56, 'Uzbekistan', 'uzbekistan.gif'), (57, 'Switzerland', 'switzerland.gif'), (58, 'Kiribati', 'kiribati.gif'), (59, 'Philippines', 'philippines.gif'), (60, 'Burkina Faso', 'burkinafaso.gif'), (61, 'Nigeria', 'nigeria.gif'), (62, 'Iceland', 'iceland.gif'), (63, 'Nauru', 'nauru.gif'), (64, 'Slovenia', 'slovenia.gif'), (66, 'Turkmenistan', 'turkmenistan.gif'), (67, 'Bosnia Herzegovina', 'bosniaherzegovina.gif'), (68, 'Andorra', 'andorra.gif'), (69, 'Lithuania', 'lithuania.gif'), (71, 'Netherlands Antilles', 'nethantilles.gif'), (72, 'Ukraine', 'ukraine.gif'), (73, 'Venezuela', 'venezuela.gif'), (74, 'Hungary', 'hungary.gif'), (75, 'Romania', 'romania.gif'), (76, 'Vanuatu', 'vanuatu.gif'), (77, 'Vietnam', 'vietnam.gif'), (78, 'Trinidad & Tobago', 'trinidadandtobago.gif'), (79, 'Honduras', 'honduras.gif'), (80, 'Kyrgyzstan', 'kyrgyzstan.gif'), (81, 'Ecuador', 'ecuador.gif'), (82, 'Bahamas', 'bahamas.gif'), (83, 'Peru', 'peru.gif'), (84, 'Cambodia', 'cambodia.gif'), (85, 'Barbados', 'barbados.gif'), (86, 'Bangladesh', 'bangladesh.gif'), (87, 'Laos', 'laos.gif'), (88, 'Uruguay', 'uruguay.gif'), (89, 'Antigua Barbuda', 'antiguabarbuda.gif'), (90, 'Paraguay', 'paraguay.gif'), (93, 'Thailand', 'thailand.gif'), (92, 'Union of Soviet Socialist Republics', 'ussr.gif'), (94, 'Senegal', 'senegal.gif'), (95, 'Togo', 'togo.gif'), (96, 'North Korea', 'northkorea.gif'), (97, 'Croatia', 'croatia.gif'), (98, 'Estonia', 'estonia.gif'), (99, 'Colombia', 'colombia.gif'), (100, 'Lebanon', 'lebanon.gif'), (101, 'Latvia', 'latvia.gif'), (102, 'Costa Rica', 'costarica.gif'), (103, 'Egypt', 'egypt.gif'), (104, 'Bulgaria', 'bulgaria.gif'), (105, 'Isla de Muerte', 'jollyroger.gif'), (107, 'Pirates', 'jollyroger.gif'); -- -------------------------------------------------------- -- -- Table structure for table `downloadspeed` -- CREATE TABLE IF NOT EXISTS `downloadspeed` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=19 ; -- -- Dumping data for table `downloadspeed` -- INSERT INTO `downloadspeed` (`id`, `name`) VALUES (1, '64kbps'), (2, '128kbps'), (3, '256kbps'), (4, '512kbps'), (5, '768kbps'), (6, '1Mbps'), (7, '1.5Mbps'), (8, '2Mbps'), (9, '3Mbps'), (10, '4Mbps'), (11, '5Mbps'), (12, '6Mbps'), (13, '7Mbps'), (14, '8Mbps'), (15, '9Mbps'), (16, '10Mbps'), (17, '48Mbps'), (18, '100Mbit'); -- -------------------------------------------------------- -- -- Table structure for table `faq` -- CREATE TABLE IF NOT EXISTS `faq` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `link_id` smallint(5) unsigned NOT NULL, `lang_id` smallint(5) unsigned NOT NULL DEFAULT '6', `type` enum('categ','item') NOT NULL DEFAULT 'item', `question` text NOT NULL, `answer` text NOT NULL, `flag` tinyint(3) unsigned NOT NULL DEFAULT '1', `categ` smallint(5) unsigned NOT NULL DEFAULT '0', `order` smallint(5) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=476 ; -- -- Dumping data for table `faq` -- INSERT INTO `faq` (`id`, `link_id`, `lang_id`, `type`, `question`, `answer`, `flag`, `categ`, `order`) VALUES (1, 1, 25, 'categ', '站点信息', '', 1, 0, 1), (2, 2, 25, 'categ', '用户信息', '', 1, 0, 2), (3, 3, 25, 'categ', '数据统计', '', 1, 0, 3), (4, 4, 25, 'categ', '发布', '', 1, 0, 4), (5, 5, 25, 'categ', '下载', '', 1, 0, 5), (6, 6, 25, 'categ', '我该怎样提升下载速度?', '', 1, 0, 6), (7, 7, 25, 'categ', '我的网络提供商(ISP)使用了透明代理。我应该怎么做?', '', 1, 0, 7), (8, 8, 25, 'categ', '为什么我连不上?难道我被网站屏蔽了?', '', 1, 0, 8), (9, 9, 25, 'categ', '如果从这里找不到我的问题的解答,我该怎么办?', '', 1, 0, 9), (10, 10, 25, 'item', '到底什么是BT(Bittorrent)?我要如何才能弄到这类程序?', '参看Brian的BitTorrent FAQ及指导。', 1, 1, 1), (11, 11, 25, 'item', '我们捐出来的钱上哪儿去了?', '所有捐助的钱用于维护服务器的费用。', 1, 1, 2), (12, 12, 25, 'item', '我从哪里可以搞到源代码的拷贝?', '这个Tracker使用的是NexusPHP的代码。代码获取事宜,请看这里
\r\nNexusPHP的代码是根据TBSource的源码改写的。TBDev网站,Tracker源代码以及社区论坛都在这里:TBDev.net。', 1, 1, 3), (13, 13, 25, 'item', '我注册了一个账号但是却没有收到验证邮件!', '这很有可能是Tracker所在的服务器网络出现了问题。你可以填写这个表格让服务器重发验证邮件。
\r\n通常没有得到确认的注册帐户会在24小时后被删除,所以你可以在第二天重试。需要注意的是,如果你第一次没有收到确认信,第二次有很大的可能仍然无法收到确认信,所以换一个E-mail地址是一个不错的主意。', 1, 2, 1), (14, 14, 25, 'item', '我忘记了我的用户名/密码了,能帮我找回来么?', '请填写这个表单,我们将把登录详情发还给你。', 1, 2, 2), (15, 15, 25, 'item', '我可以给我的账号改个名字么?', '我们并不支持给账号改名。', 1, 2, 3), (16, 16, 25, 'item', '你可以删除一个(已确认的)账号么?', '我们一般不提供该类服务,所以不要请求删除任何一个被你邀请的帐号。', 1, 2, 4), (17, 17, 25, 'item', '那么,什么是我的分享率(Ratio)?', '就在页面功能分区的下面。
\r\n
\r\nratio\r\n
\r\n
\r\n区分你的整体分享率和独立分享率是很重要的。整体分享率关注的是自从你加入站点以来,账号的整体上传与下载量。而独立分享率则针对每一个你正在下载或做种的文件。\r\n
\r\n
\r\n你可能看到两种符号来代替数字:"Inf.",这个是无限(Infinity)的缩写,意思是你的下载量为0字节,而上传量则是任意一个非零的值(上传量/下载量=无穷大);"---",应该被视为“不可用”,这说明了你的下载量和上传量都是0字节。(上传量/下载量=0/0 这是一个不确定的量)。\r\n', 1, 2, 5), (18, 18, 25, 'item', '为什么我的IP地址显示在我的个人信息页面上?', '只有你自己和网站Moderator及以上的管理员可以看到你的IP地址和Email。普通用户是看不到这些信息的。', 1, 2, 6), (21, 21, 25, 'item', '为什么我的“可连接”是“否”?(以及为什么我需要关注这个问题?)', 'Tracker服务器认为你在防火墙后,或者在NAT桥接后,并且无法接收其他Peer的连接请求。\r\n
\r\n
\r\n这意味着其它的大批Peer无法连接到你,只能由你连接到他们。更糟糕的情况是,如果两个Peer都处于这样的状态,他们将完全无法连接到对方。这对于整体速度有着非常不利的影响。\r\n
\r\n
\r\n对于这个问题,有以下解决方式:对于防火墙,打开用于接收连接的端口(即你在BT客户端中定义的端口);对于NAT,你需要配置NAT服务器使用Basic NAT方式而不是NAPT(不同的路由有着不同的运行方式。翻阅你的路由文档或客服论坛。你也可以在PortForward找到关于此问题的大量信息)。\r\n\r\n\r\n\r\n\r\n\r\n', 1, 2, 9), (22, 22, 25, 'item', '不同的用户等级代表了什么含义?', '\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
  Peasant  被降级的用户,他们有30天时间来提升分享率,否则他们会被踢。不能发表趣味盒内容;不能申请友情链接;不能上传字幕。\r\n
  User 新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。
  Power User 得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为"强"); 可以删除自己上传的字幕。
  Elite User Elite User及以上用户封存账号后不会被删除。
  Crazy User 得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。
  Insane User 可以查看普通日志。
  Veteran User 得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User及以上用户会永远保留账号。
  Extreme User 可以更新过期的外部信息;可以查看Extreme User论坛。
  Ultimate User 得到五个邀请名额。
  Nexus Master 得到十个邀请名额。
  Star 为网站捐款的主。
  贵宾(VIP) Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。
  其它 自定义等级。
  养老族(Retiree) 退休后的管理组成员。
  发布员(Uploader) 专注的发布者。免除自动降级;可以查看匿名用户的真实身份。
  总版主(Moderator) 可以查看管理组信箱、举报信箱;管理趣味盒内容、投票内容;可以编辑或删除任何发布的种子;可以管理候选;可以管理论坛帖子、用户评论;可以查看机密日志;可以删除任何字幕;可以管理日志中的代码、史册;可以查看用户的邀请记录;可以管理用户帐号的一般信息。不能管理友情链接、最近消息、论坛版块;不能将种子设为置顶或促销;不能查看用户IP或Email等机密信息;不能删除账号。
  管理员(Administrator) 除了不能改变站点设定、管理捐赠外,可以做任何事。
  维护开发员(Sysop) 网站开发/维护人员,可以改变站点设定,不能管理捐赠。
  主管(Staff Leader) 网站主管,可以做任何事。
', 1, 2, 10), (23, 23, 25, 'item', '提升和降级又是怎样被执行的呢?', '\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
  Peasant 当以下情况时将被自动降至本级:
\r\n1.如果你已经下载了超过50GB,你应该有大于0.4的分享率。
\r\n2.如果你已经下载了超过100GB,你应该有大于0.5的分享率。
\r\n3.如果你已经下载了超过200GB,你应该有大于0.6的分享率。
\r\n4.如果你已经下载了超过400GB,你应该有大于0.7的分享率。
\r\n5.如果你已经下载了超过800GB,你应该有大于0.8的分享率。
  Power User 必须注册至少4周,并且下载至少50G,分享率大于1.05。
\r\n当条件符合时将被自动提升。注意,无论何时,如果你的分享率低于0.95,你将自动降级。
  Elite User 必须注册至少8周,并且下载至少120G,分享率大于1.55。\r\n
\r\n当条件符合时将被自动提升。注意,无论何时,如果你的分享率低于1.45,你将自动降级。
  Crazy User 必须注册至少15周,并且下载至少300G,分享率大于2.05。\r\n
\r\n当条件符合时将被自动提升。注意,无论何时,如果你的分享率低于1.95,你将自动降级。
  Insane User 必须注册至少25周,并且下载至少500G,分享率大于2.55。
\r\n当条件符合时将被自动提升。注意,无论何时,如果你的分享率低于2.45,你将自动降级。
  Veteran User 必须注册至少40周,并且下载至少750G,分享率大于3.05。
\r\n当条件符合时将被自动提升。注意,无论何时,如果你的分享率低于2.95,你将自动降级。
  Extreme User 必须注册至少60周,并且下载至少1TB,分享率大于3.55。
\r\n当条件符合时将被自动提升。注意,无论何时,如果你的分享率低于3.45,你将自动降级。
  Ultimate User 必须注册至少80周,并且下载至少1.5TB,分享率大于4.05。
\r\n当条件符合时将被自动提升。注意,无论何时,如果你的分享率低于3.95,你将自动降级。
  Nexus Master 必须注册至少100周,并且下载至少3TB,分享率大于4.55。
\r\n当条件符合时将被自动提升。注意,无论何时,如果你的分享率低于4.45,你将自动降级。
  Star 只需捐款,详见这里
  贵宾(VIP) 由管理员仔细斟酌后分配给他们认为对于站点某方面有特殊贡献的用户。
\r\n(任何索取贵宾等级的要求将被自动无视)
  其它 用户使用魔力值兑换,或由管理员仔细斟酌后授权。
  养老族(Retiree) 由管理员授予。
  发布员(Uploader) 由管理员分配(参见''发布''部分以了解详情)。
  总版主(Moderator) 无需多问,我们会找到你的!
', 1, 2, 11), (25, 25, 25, 'item', '为什么我的朋友不能加入?', '用户数目有所限制(你可以查看“首页->站点数据->上限”)。当达到那个数目时,我们会停止接受新成员。
\r\n由于非活跃用户(长期不使用账号的用户)引起账号资源浪费,因此我们将清理该部分用户,为其他想加入用户腾出空间。
\r\n关于非活跃用户清理规则,参考规则。', 1, 2, 13), (26, 26, 25, 'item', '怎样自定义头像?', '首先,找一个你喜欢的图片,当然了它不能违反我们的规则。然后你要找一个存放它的地方,比方说我们自己的上传器。出于服务器负载的考虑,我们更希望你将图片上传到别的网站,然后将其URL粘贴到你的控制面板的头像URL部分。
\r\n
\r\n请不要为了仅仅测试头像而发帖。如果一切顺利,你将在你的详情页面看到它。', 1, 2, 14), (27, 27, 25, 'item', '最常见的数据未能得到更新的原因', '', 1, 3, 1), (28, 28, 25, 'item', '最佳的尝试', '', 1, 3, 2), (29, 29, 25, 'item', '我可以任意选择Bittorrent客户端软件么?', '根据NexusPHP对常见BitTorrent客户端的测试,目前本站Tracker只允许使用以下的BitTorrent客户端软件。
\r\nNexusPHP的测试报告可在此查看。\r\n
\r\nWindows:\r\n\r\nLinux:\r\n\r\nMacOS X:\r\n\r\nSymbian (仅供测试):\r\n\r\n
\r\n\r\n以上客户端在https支持方面\r\n\r\n\r\n
\r\n\r\n同时请尽量避免使用处于测试期的客户端软件, 如uTorrent 1.8.0B。\r\n\r\n为了从本站得到最好的下载体验,我们高度推荐uTorrent 以及Azureus这两个软件的最新稳定版。', 1, 5, 3), (30, 30, 25, 'item', '为什么我正在下载/做种的一个种子会在我的详情页面中被列出多次?', '如果因为某些原因(比方说死机,客户端失去响应)你的客户端非正常退出并且你又重新打开它,它会被分配到一个全新的Peer ID, 这样它显示为一个全新的种子。而旧的种子将永远不会收到“event=completed”或“event=stopped”的信号,因此将一直被列出直到Tracker清理超时的Peer。 无视了它就可以了,它最后会消失的。', 1, 3, 4), (31, 31, 25, 'item', '为什么我已经完成/取消的种子仍然在我的详情页面里?', '有一些客户端,比如说TorrentStorm和Nova Torrent,在取消或者完成一个任务的时候不能向Tracker服务器正确发送信号。在那样的情况下,Tracker服务器将一直保持等待信号的状态(因此会一直列出种子的状态为做种/下载的状态)直到Tracker清理超时的Peer。无视了它就可以了,它最后会消失的。', 1, 3, 5), (33, 33, 25, 'item', '多IP(我可以从不同的电脑登录/下载吗?)', '是的,目前Tracker服务器支持单个用户从任意个数的IP地址同时访问/下载。
\r\n然而,对于单种是有限制的。对于每个种子,最多允许3个做种的连接,最多只允许1个下载的连接(这意味着,对于某个种子你一次只能在一个地方下载)。', 1, 3, 7), (36, 36, 25, 'item', '为什么我不能发布种子?', '请看规则。', 1, 4, 1), (37, 37, 25, 'item', '我需要满足哪些条件才能加入发布小组呢?', '你所必须满足的条件:\r\n\r\n你必须确保发布的文件符合以下特征:\r\n\r\n如果你认为你符合以上条件,那么不要犹豫,联系管理组吧。
\r\n记住! 仔细填写你的申请!确保申请中包含你的上传速度以及你计划发布的内容的类型。
\r\n只有仔细填写并且经过慎重考虑的申请才会纳入我们的视野。', 1, 4, 2), (38, 38, 25, 'item', '我可以发布你们这里的种子到别的Tracker服务器么?', '不能。我们是一个封闭的、限制用户数的社区。只有注册用户才能够使用我们的Tracker。将我们的种子文件发布到其他Tracker服务器是徒劳的,因为绝大多数试图下载这些文件的人将无法连接到我们的服务器。将我们的种子发布到其他Tracker只让那里的用户恼怒(因为无法下载)并且对我们产生敌对情绪,所以这种行为是我们是不能容忍的。
\r\n
\r\n如果其他网站的管理员向我们举报我们的种子被发布在他们的站点上,对此负责的用户将因此被移出我们的社区。
\r\n
\r\n但是对于从我们这里下载得到的文件,你可以随意操控它们(发布者明确说明为独占的资源除外)。你可以制作另一个种子,写入其他Tracker的地址,并发布到你喜欢的站点上。', 1, 4, 3), (39, 39, 25, 'item', '下载来的文件该怎么打开?', '在这份指引里面找找看吧。', 1, 5, 1), (40, 40, 25, 'item', '我下载了一部电影,但是不明白CAM/TS/TC/SCR是什么意思?', '在这份指引里面找找看吧。', 1, 5, 2), (41, 41, 25, 'item', '为什么一个可用的种子忽然就消失了?', '以下原因都会导致这个现象的出现:
\r\n(1) 按照网站规则,这个种子不符合规则已被删除。\r\n
\r\n(2) 发布者因为文件存在问题而删除了它。一般来说,发布者会发布一个替代的版本的。
\r\n(3) 在长时间断种后种子被自动删除了。', 1, 5, 3), (42, 42, 25, 'item', '我该怎样续传文件或者给一个文件续种呢?', '打开扩展名为.torrent的文件,当你的客户端软件询问保存的目录时,选择已经存在的文件存放的目录,它就能够开始续传/续种了。', 1, 5, 4), (43, 43, 25, 'item', '为什么我的下载有时候停在99%?', '你所下载到的片段越多,寻找拥有你所缺少的片段的同伴就将变得越困难。这就是为什么有时候在下载即将完成的时候,速度会变得非常慢,甚至完全停止了。只要耐心等候,或早或晚剩下的部分一定能够下载到的。', 1, 5, 5), (44, 44, 25, 'item', '"部分哈希验证出错"这条信息是什么意思?', 'BT的客户端会检查它所收到的数据的完整性。如果某一个片段在验证中出错,那么这个片段将被重新下载。偶尔的哈希验证错误是非常常见的现象,不用担心。
\r\n
\r\n有些客户端有屏蔽向你发送错误数据的其他客户端的功能。如果有这个选项,最好打开它。因为这样可以保证如果某个同伴经常向你发送错误的数据时,它将会被屏蔽。', 1, 5, 6), (45, 45, 25, 'item', '100MB大小的种子,我怎么下了120MB的东西回来?', '参见哈希验证失败的那个问题。如果你的客户端收到了错误的数据,那么它将会重新下载这一部分,因此总下载量有可能比种子大小略微大一些。确保“屏蔽发送错误数据的客户端”的那个选项被打开了,这样可以减少额外的下载。', 1, 5, 7), (46, 46, 25, 'item', '为什么我的客户端的Tracker服务器状态出现"Your ratio is too low! You need to wait xx h to start"的错误?', '在种子被上传到Tracker服务器之后,有一些用户必须等一些时间才能开始下载。
\r\n这个延迟只会影响那些分享率较低且下载量大于10G的用户。
\r\n
\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n
分享率低于0.4 延迟24小时
分享率低于0.5 延迟12小时
分享率低于0.6 延迟6小时
分享率低于0.8 延迟3小时
', 0, 5, 8), (47, 47, 25, 'item', '为什么发生了这个错误? "Port xxxx is blacklisted"?', '你的客户端向Tracker服务器报告它正在使用某个默认的BT协议端口(6881-6889)或是任何其他常见P2P端口来作为连接端口。
\r\n
\r\n本站不允许这些通常被P2P协议默认使用的端口。原因是目前ISP常常对这些端口进行限速。
\r\n
\r\n被屏蔽的端口如下:
\r\n
\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Direct Connect411 - 413
BitTorrent6881 - 6889
Kazza1214
Gnutella6346 - 6347
Emule4662
WinMX6699
\r\n
\r\n要使用我们的Tracker服务器,你必须配置你的客户端使用未在上面列出的端口范围(从49152到65535都是不错的选择,参看IANA)。注意某些客户端,如Azureus 2.0.7.0或更高版本,对所有的种子都使用同一端口。而其他大多数客户端为每一个种子开放一个端口,你在选择端口范围应考虑到这个问题(一般来说端口范围小于10。设置一个过大的范围并不一定有好处,而且可能有安全隐患)。
\r\n
\r\n这些端口是用于同伴间通信的,而非用于客户端连接到Tracker服务器。因此这个改动并不会影响你使用其他Tracker服务器(事实上,它甚至可能加快所有Tracker服务器上种子的速度)。你的客户端也仍然能够连接到那些使用默认端口的同伴。如果你的客户端不支持自己自定义端口,那么换一个吧。
\r\n
\r\n不要向我们询问,或者在论坛里面提问究竟应该选择什么端口。我们的用户选择的端口越随机,ISP就越难以捉摸清楚我们使用的端口,从而无法对我们的端口进行限速。如果我们只是简单地规定一个范围,那么ISP又会很快对那个范围内的端口进行限速的。
\r\n
\r\n最后还要说的是,记得在你的路由和/或防火墙上打开你选择的端口,如果你有这些东西的话。', 1, 5, 9), (48, 48, 25, 'item', '那么这个呢? “IO错误 - [错误号13] 许可被拒绝”?', '如果你只是想要解决这个问题的话,重新启动你的电脑应该就可以了。否则的话,继续读下去。
\r\n
\r\nIO错误指的是输入-输出错误,这是一个文件系统错误,而非来自我们的Tracker服务器。当你的客户端由于某些原因不能打开种子中未下载完成的文件时,这个错误就会发生。 通常原因是客户端的两个实例同时在运行:当上一次关闭客户端时因为某种原因它没有被真正关闭,从而始终在后台运行。因此文件被锁定,使得新的实例不能打开这个文件。
\r\n
\r\n另外一个不常出现的原因是因为老旧的FAT文件系统。某些系统崩溃可能导致未下载完成的文件损坏,接着就出现了这个错误。运行一次scandisk应该可以解决这个问题。注意,只有当你使用Windows 9X操作系统(只支持FAT文件系统)或者在Windows NT/2000/XP中使用FAT文件系统的时候才比较可能出现这个问题。NTFS文件系统要健壮许多,不太可能出现这样的问题。', 1, 5, 10), (50, 50, 25, 'item', '不要马上下载新发布的种子', '下载速度主要取决于上传者/下载者比(SLR)。如果是种子是新发布的且非常受欢迎而SLR又很低的种子,下载速度低是常见的问题。
\r\n
\r\n请牢记你不喜欢低速下载。所以多上传让别人不用忍耐同样的困扰。\r\n
\r\n
由其是当你的带宽较窄时,不要马上下载新发布的种子。最好的下载速度通常在一个种子生命周期的一半时出现,此时SLR达到最大值(不过,这时下载的缺点是你的上传量不会很多。究竟如何平衡优点与缺点,取决于你自己)。', 1, 6, 1), (51, 51, 25, 'item', '限制上传速度', '上传速度将从以下两种方式显著影响下载速度:\r\n\r\n实际的效果是以上两个原因的结合。上传速度应该在保证ACK能正常传输的前提下被设得尽量高。 一个很好的实践理论是保持上传速度在理论上限的80%。你也可以细细研究什么是最适合你的速度(同时也请记住高速上传对于你的分享率很有帮助)。
\r\n
\r\n如果你正在运行一个以上的种子任务,你应该考虑的是全局上传速度。某些客户端能限制了全局上传速度,其他的则能对每一个种子分别进行设置。了解你的客户端。如果你正在使用你的电脑做别的某些应用(比方说上网或者从FTP拖东西),也需考虑一下它们对于全局上传的影响。', 1, 6, 2), (52, 52, 25, 'item', '限制同时连接数', '某些操作系统(例如Windows 9X)对于大量连接数支持不完善,甚至有可能因此而崩溃。也有一些家用路由(尤其当运行着NAT以及/或者打开防火墙状态检查服务时)会因大量连接数而变得很慢或者崩溃。对于连接数没有固定的最佳值,你可以试试看60或者100。记住这些连接数是累加的,所以如果你的客户端运行了两个会话,这两个数字要加在一起。', 1, 6, 3), (53, 53, 25, 'item', '限制同时上传数', '上传数难道和连接数有什么不一样吗?是的,两者是不同的。连接数限制了你的客户端所能对话以及/或者下载的同伴数。上传数则限制了你的客户端实际能上传的同伴数。理想的数值一般要比连接数低许多,并且与你的物理带宽高度相关。', 1, 6, 4), (54, 54, 25, 'item', '那怎么办?等待一会吧', '如我们在上面所解释的,在BT下载过程中一个同伴更加倾向于回报那些上传给它的同伴。当你开始一个新的下载任务时,你没有文件片断提高给其他同伴,因此他们通常会无视你。这使得开始阶段的下载非常缓慢,由其是当你所连接到的同伴只有很少是(或者没有)做种者。一旦你获得了一些能用于共享的文件片断,下载速度会有所改观。', 1, 6, 5), (55, 55, 25, 'item', '为什么在我下载的时候浏览网页速度如此之慢?', '你的下载带宽是有限的。如果你正在下载一个速度很快的种子,它几乎肯定将占满你的下载带宽。这是浏览网页显然就会变慢。很多BT客户端允许你限制下载速度,你可以试试。
\r\n
\r\n浏览网页只是作为举例之一,同样的问题也会出现在游戏,即时通信软件上......', 1, 6, 6), (56, 56, 25, 'item', '什么是代理?', '基本上说,代理就是中间人。当你通过代理访问某个站点的时候,你的请求将首先被发送到代理处,然后由代理转发到你所请求的站点,而不是你直接连通到网站。下面是几种典型的代理分类(术语不是那么的规范):
\r\n
\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
 透明代理 透明代理在客户端无需配置。他将自动把80端口的信息重定向到代理(有时候也作为非匿名代理的同义词);
 显式代理 浏览器必须经过配置才能使用代理;
 匿名代理 代理将不会把客户标记发送至服务器端 (HTTP_X_FORWARDED_FOR头标志将不被发送。服务器也因此看不到你的IP);
 高度匿名代理 代理将不会把客户标记或代理标记发送至服务器端 (HTTP_X_FORWARDED_FOR和HTTP_VIA and HTTP_PROXY_CONNECTION头标志将不被发送。服务器看不到你的IP,甚至不知道你正在使用代理);
 公用 (不言自明了)。
\r\n
\r\n透明代理可能是匿名的,也可能是非匿名的,且匿名也有相应的等级。', 1, 7, 1), (57, 57, 25, 'item', '我该怎样发现自己正处于一个(透明的/匿名的)代理后面?', '试试看ProxyJudge。它列出了服务器端从你这里所收到的HTTP的头标志。相关的几个标志是HTTP_CLIENT_IP,HTTP_X_FORWARDED_FOR和REMOTE_ADDR。', 1, 7, 2), (75, 75, 25, 'item', '我的“可连接”是“否”尽管我并没有NAT或者防火墙?', 'Tracker服务器在寻找你的真实IP方面非常有天赋。但是这需要代理发送HTTP头标志HTTP_X_FORWARDED_FOR。如果你的ISP的代理没有这么做的话,Tracker服务器将把代理的IP当作你的客户端的IP。所以当你登录之后,Tracker服务器尝试连接你的客户端来确信你没有使用NAT/防火墙,服务器实际上将试图连接代理的IP(使用你的BT客户端报告的接收连接端口)。很自然地,代理服务器并没有监听那个端口。如此连接会失败,而Tracker服务器也因此认为你使用了NAT/防火墙。', 1, 7, 3), (62, 62, 25, 'item', '也许是因为我的IP地址被列入黑名单了?', '这个网站有屏蔽被禁用户或攻击者的IP地址的功能。该功能在Apache/PHP层面上起作用,且只能屏蔽从这些地址登录网站。这不会阻止你连接到网站,更无法从底层的协议层面进行屏蔽。即便你的地址已经被列入了黑名单,你应该仍能够通过ping/traceroute命令连同服务器。如果你不能连通服务器,那么问题的原因在别处。
\r\n
\r\n如果你的IP地址因某种原因错误地被我们屏蔽了,请联系我们。', 1, 8, 1), (63, 63, 25, 'item', '你的ISP屏蔽了本站的地址', '首先,这一般不像你的ISP的所作所为。DNS域名解析以及/或者网络问题是常见的真凶。\r\n
\r\n对此我们无能为力。你应该联系你的ISP(或者换一个)。记住你仍然可以通过代理访问本站,参看此常见问题关于代理的部分。在这种情况下,代理是否匿名或者使用哪个监听端口都不重要了。
\r\n
\r\n注意,你的“可连接状态”将因此一直被列为“否”,因为此时Tracker服务器无法检查你的BT客户端接收连接的状态。', 1, 8, 2), (65, 65, 25, 'item', '不妨试试这个', '用任何手段在论坛发帖。通常情况下你能得到友善而有用的帮助。这里给你一些基本的指导:', 1, 9, 1), (66, 66, 25, 'item', '什么是"Your slot limit is reached! You may at most download xx torrents at the same time"错误?', '这是“最大连接数系统”。最大连接数系统用于限制那些分享率较低且下载量大于10GB的用户的最大同时下载数。

\r\n规则如下:

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n
分享率低于0.5 最大连接数1
分享率低于0.65 最大连接数2
分享率低于0.8 最大连接数3
分享率低于0.95 最大连接数4
分享率大于0.95 最大连接数无限制
\r\n
\r\n无论何时,同时的上传数不设限。但是如果你当前的下载数已达到了你的最大连接数,这时开启新的做种任务,你也会收到同样的错误提示。在这种情况下,你必须先关闭一个下载任务,然后开启所有的上传任务,然后继续刚才关闭的下载任务。因为当你的连接数被占满,系统将不加验证直接拒绝任何下载或上传的请求。
\r\n

\r\n你可以在任意时间察看自己的连接数,该信息在页面顶端信息栏中被列出。', 0, 5, 12), (67, 67, 25, 'item', '什么是密钥系统?它是怎么工作的?', '密钥系统在BT客户端连接Tracker服务器时起到验证身份的作用。每一个用户都有一个系统随机生成的密钥。当用户下载某个种子文件时,他的私人密钥被添加到种子文件的Tracker服务器URL中。通过这种方式,你可以在家中或者办公室使用不同的IP来做种某个文件。\r\n\r\n', 1, 5, 13), (68, 68, 25, 'item', '“Unknown passkey”这错误是咋回事?', '首先,如果你不是我们的注册用户,将会发生这个错误。其次,有可能你没有在登录状态下从我们的网页里下载种子文件。如果是这两种情况,只要注册一个帐号或者登录后下载种子文件就可以了。
\r\n另外,当你注册了一个新用户并且开始第一次下载的时候,或者你刚刚重置了你的密钥时,也可能出现这个错误。原因是系统并非实时检查密钥的改变。如果是因为这个原因,那么就让种子任务等一会儿,最后一定能收到Tracker服务器发回的成功信息。', 1, 5, 14), (69, 69, 25, 'item', '什么时候我需要重置我的密钥?', '', 1, 5, 15), (70, 70, 25, 'item', 'DHT是什么?为什么一定要关闭这个功能?', 'DHT必须从你的客户端被禁止。DHT可能导致你的数据被错误地记录,可以视为一种作弊行为。任何使用DHT的用户将因作弊而被系统禁止。
\r\n幸运的是,目前Tracker服务器会自动分析用户上传的种子文件,强制去除DHT的支持。这也是为什么种子发布者必须重新下载种子才能正常做种的原因之一。', 1, 5, 16), (71, 71, 25, 'categ', 'How can I help translate the site language into my native language?', '', 1, 0, 8), (72, 72, 25, 'item', 'What skills do I need to do the translation?', 'Translate the site into another language is quite easy. You needn''t be skilled in PHP or dynamic website design. In fact, all you need is proficient understanding of English (the default site language) and the language you plan to translate into. Maybe some basic knowledge in HTML would help.

\r\nMoreover, we give a detailed tutorial on how to do the translation HERE. And our coders would be more than pleased to answer the questions you may encounter.

\r\nTranslate the whole site into another language would take estimated 10 hours. And extra time is needed to maintain the translation when site code is updated.

\r\nSo, if you think you could help, feel free to CONTACT US. Needless to say, you would be rewarded.', 1, 71, 1); INSERT INTO `faq` (`id`, `link_id`, `lang_id`, `type`, `question`, `answer`, `flag`, `categ`, `order`) VALUES (73, 73, 25, 'item', 'The translation tutorial', '', 1, 71, 2), (74, 74, 25, 'item', '为什么我的磁盘还有充足的空间,客户端却提示磁盘剩余空间不足?', '很可能是因为你的磁盘分区的文件系统为FAT32,该文件系统不支持大于4GB的单个文件。如果你使用的是Windows系统,你可以在磁盘的属性中查看其文件系统信息。你可以将磁盘文件系统转换成更高级的NTFS来解决该问题。
\r\n你可以在命令行窗口使用convert命令将FAT32无损转成NTFS文件系统格式。

\r\n命令说明\r\nCONVERT volume /FS:NTFS [/V] [/CvtArea:filename] [/NoSecurity] [/X]
\r\nvolume 指定驱动器号(后面跟一个冒号)、装载点或卷名。
\r\n/FS:NTFS 指定要被转换成 NTFS 的卷。
\r\n/V 指定 Convert 应该用详述模式运行。
\r\n/CvtArea:filename 将根目录中的一个接续文件指定为NTFS 系统文件的占位符。
\r\n/NoSecurity 指定每个人都可以访问转换的文件和目录的安全设置。
\r\n/X 如果必要,先强行卸载卷。该卷的所有打开的句柄则无效。

\r\n简单说
:\r\n打开 命令提示符窗口。
\r\n在命令提示符窗口,请键入:
\r\nconvert drive_letter:/fs:ntfs
\r\n例如:转换D盘为NTFS,可输入convert D:/fs:ntfs', 1, 5, 17), (374, 74, 28, 'item', '為什么我的磁碟還有充足的空間,用戶端卻輔助說明磁碟剩餘空間不足?', '很可能是因為你的磁碟割區的檔案系統為FAT32,該檔案系統不支援大于4GB的單個檔案。如果你使用的是Windows系統,你可以在磁碟的屬性中檢視其檔案系統資訊。你可以將磁碟檔案系統轉換成更進階的NTFS來解決該問題。
\r\n你可以在指令行視窗使用convert指令將FAT32無損轉成NTFS檔案系統格式。

\r\n指令說明\r\nCONVERT volume /FS:NTFS [/V] [/CvtArea:filename] [/NoSecurity] [/X]
\r\nvolume 指定磁碟機號(后面跟一個冒號)、裝載點或卷名。
\r\n/FS:NTFS 指定要被轉換成 NTFS 的卷。
\r\n/V 指定 Convert 應該用詳述型態執行。
\r\n/CvtArea:filename 將根目錄中的一個接續檔案指定為NTFS 系統檔案的占位符。
\r\n/NoSecurity 指定每個人都可以存取轉換的檔案和目錄的安全設定。
\r\n/X 如果必要,先強行卸載卷。該卷的所有開啟的控點則無效。

\r\n簡單說
:\r\n開啟 指令輔助說明符視窗。
\r\n在指令輔助說明符視窗,請鍵入:
\r\nconvert drive_letter:/fs:ntfs
\r\n例如:轉換D槃為NTFS,可匯入convert D:/fs:ntfs', 1, 5, 17), (368, 68, 28, 'item', '“Unknown passkey”這錯誤是咋回事?', '首先,如果你不是我們的註冊用戶,將會發生這個錯誤。其次,有可能你沒有在登入狀態下從我們的網頁裡下載種子檔案。如果是這兩種情況,只要註冊一個帳號或者登入后下載種子檔案就可以了。
\r\n另外,當你註冊了一個新用戶并且開始第一次下載的時候,或者你剛剛重置了你的加密鍵時,也可能出現這個錯誤。原因是系統并非實時檢查加密鍵的改變。如果是因為這個原因,那么就讓種子工作等一會兒,最后一定能收到Tracker伺服器發回的成功資訊。', 1, 5, 14), (369, 69, 28, 'item', '什么時候我需要重置我的加密鍵?', '', 1, 5, 15), (370, 70, 28, 'item', 'DHT是什么?為什么一定要關閉這個功能?', 'DHT必須從你的用戶端被禁止。DHT可能導致你的資料被錯誤地記錄,可以視為一種作弊行為。任何使用DHT的用戶將因作弊而被系統禁止。
\r\n幸運的是,目前Tracker伺服器會自動解析用戶上傳的種子檔案,強制去除DHT的支援。這也是為什么種子發布者必須重新下載種子才能正常做種的原因之一。', 1, 5, 16), (371, 71, 28, 'categ', 'How can I help translate the site language into my native language?', '', 1, 0, 8), (372, 72, 28, 'item', 'What skills do I need to do the translation?', 'Translate the site into another language is quite easy. You needn''t be skilled in PHP or dynamic website design. In fact, all you need is proficient understanding of English (the default site language) and the language you plan to translate into. Maybe some basic knowledge in HTML would help.

\r\nMoreover, we give a detailed tutorial on how to do the translation HERE. And our coders would be more than pleased to answer the questions you may encounter.

\r\nTranslate the whole site into another language would take estimated 10 hours. And extra time is needed to maintain the translation when site code is updated.

\r\nSo, if you think you could help, feel free to CONTACT US. Needless to say, you would be rewarded.', 1, 71, 1), (373, 73, 28, 'item', 'The translation tutorial', '', 1, 71, 2), (362, 62, 28, 'item', '也許是因為我的IP位址被列入黑名單了?', '這個網站有屏蔽被禁用戶或攻擊者的IP位址的功能。該功能在Apache/PHP層面上起作用,且只能屏蔽從這些位址登入網站。這不會阻止你連線到網站,更無法從底層的協定層面進行屏蔽。即便你的位址已經被列入了黑名單,你應該仍能夠通過ping/traceroute指令連同伺服器。如果你無法連通伺服器,那么問題的原因在別處。
\r\n
\r\n如果你的IP位址因某種原因錯誤地被我們屏蔽了,請聯繫我們。', 1, 8, 1), (363, 63, 28, 'item', '你的ISP屏蔽了本站的位址', '首先,這一般不像你的ISP的所作所為。DNS域名解析以及/或者網路問題是常見的真凶。\r\n
\r\n對此我們無能為力。你應該聯繫你的ISP(或者換一個)。記住你仍然可以通過代理存取本站,參看此常見問題關于代理的部分。在這種情況下,代理是否匿名或者使用哪個監聽通訊埠都不重要了。
\r\n
\r\n注意,你的“可連線狀態”將因此一直被列為“否”,因為此時Tracker伺服器無法檢查你的BT用戶端接收連線的狀態。', 1, 8, 2), (365, 65, 28, 'item', '不妨試試這個', '用任何手段在論壇發帖。通常情況下你能得到友善而有用的輔助說明。這裡給你一些基本的指導:', 1, 9, 1), (366, 66, 28, 'item', '什么是"Your slot limit is reached! You may at most download xx torrents at the same time"錯誤?', '這是“最大連線數系統”。最大連線數系統用于限制那些分享率較低且下載量大于10GB的用戶的最大同時下載數。

\r\n規則如下:

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n
分享率低于0.5 最大連線數1
分享率低于0.65 最大連線數2
分享率低于0.8 最大連線數3
分享率低于0.95 最大連線數4
分享率大于0.95 最大連線數無限制
\r\n
\r\n無論何時,同時的上傳數不設限。但是如果你目前的下載數已達到了你的最大連線數,這時開啟新的做種工作,你也會收到同樣的錯誤輔助說明。在這種情況下,你必須先關閉一個下載工作,然后開啟所有的上傳工作,然后繼續剛才關閉的下載工作。因為當你的連線數被占滿,系統將不加驗證直接拒絕任何下載或上傳的要求。
\r\n

\r\n你可以在任意時間察看自己的連線數,該資訊在頁面頂端資訊欄中被列出。', 0, 5, 12), (367, 67, 28, 'item', '什么是加密鍵系統?它是怎么工作的?', '加密鍵系統在BT用戶端連線Tracker伺服器時起到驗證身份的作用。每一個用戶都有一個系統隨機生成的加密鍵。當用戶下載某個種子檔案時,他的私人加密鍵被添加到種子檔案的Tracker伺服器URL中。通過這種方式,你可以在家中或者辦公室使用不同的IP來做種某個檔案。\r\n\r\n', 1, 5, 13), (301, 1, 28, 'categ', '網站資訊', '', 1, 0, 1), (302, 2, 28, 'categ', '用戶資訊', '', 1, 0, 2), (303, 3, 28, 'categ', '資料統計', '', 1, 0, 3), (304, 4, 28, 'categ', '發布', '', 1, 0, 4), (305, 5, 28, 'categ', '下載', '', 1, 0, 5), (306, 6, 28, 'categ', '我該怎樣提升下載速度?', '', 1, 0, 6), (307, 7, 28, 'categ', '我的網路提供商(ISP)使用了透通代理。我應該怎么做?', '', 1, 0, 7), (308, 8, 28, 'categ', '為什么我連不上?難道我被網站屏蔽了?', '', 1, 0, 8), (309, 9, 28, 'categ', '如果從這裡找不到我的問題的解答,我該怎么辦?', '', 1, 0, 9), (310, 10, 28, 'item', '到底什么是BT(Bittorrent)?我要如何才能弄到這類程式?', '參看Brian的BitTorrent FAQ及指導。', 1, 1, 1), (311, 11, 28, 'item', '我們捐出來的錢上哪兒去了?', '所有捐助的錢用于維護伺服器的費用。', 1, 1, 2), (312, 12, 28, 'item', '我從哪裡可以搞到來源碼的拷貝?', '這個Tracker使用的是NexusPHP的程式碼。程式碼抓取事宜,請看這裡
\r\nNexusPHP的程式碼是根據TBSource的源碼改寫的。TBDev網站,Tracker來源碼以及社區論壇都在這裡:TBDev.net。', 1, 1, 3), (313, 13, 28, 'item', '我註冊了一個賬號但是卻沒有收到驗證郵件!', '這很有可能是Tracker所在的伺服器網路出現了問題。你可以填寫這個表格讓伺服器重發驗證郵件。
\r\n通常沒有得到確認的註冊帳戶會在24小時后被移除,所以你可以在第二天重試。需要注意的是,如果你第一次沒有收到確認信,第二次有很大的可能仍然無法收到確認信,所以換一個E-mail位址是一個不錯的主意。', 1, 2, 1), (314, 14, 28, 'item', '我忘記了我的用戶名/密碼了,能幫我找回來么?', '請填寫這個表單,我們將把登入詳情發還給你。', 1, 2, 2), (315, 15, 28, 'item', '我可以給我的賬號改個名字么?', '我們并不支援給賬號改名。', 1, 2, 3), (316, 16, 28, 'item', '你可以移除一個(已確認的)賬號么?', '我們一般不提供該類服務,所以不要要求移除任何一個被你邀請的帳號。', 1, 2, 4), (317, 17, 28, 'item', '那么,什么是我的分享率(Ratio)?', '就在頁面功能割區的下面。
\r\n
\r\nratio\r\n
\r\n
\r\n區分你的整體分享率和獨立分享率是很重要的。整體分享率關注的是自從你加入網站以來,賬號的整體上傳與下載量。而獨立分享率則針對每一個你正在下載或做種的檔案。\r\n
\r\n
\r\n你可能看到兩種象徵式來代替數字:"Inf.",這個是無限(Infinity)的縮寫,意思是你的下載量為0位元組,而上傳量則是任意一個非零的值(上傳量/下載量=無窮大);"---",應該被視為“不可用”,這說明了你的下載量和上傳量都是0位元組。(上傳量/下載量=0/0 這是一個不確定的量)。\r\n', 1, 2, 5), (318, 18, 28, 'item', '為什么我的IP位址察看在我的個人資訊頁面上?', '只有你自己和網站Moderator及以上的管理員可以看到你的IP位址和Email。普通用戶是看不到這些資訊的。', 1, 2, 6), (321, 21, 28, 'item', '為什么我的“可連線”是“否”?(以及為什么我需要關注這個問題?)', 'Tracker伺服器認為你在防火牆后,或者在NAT橋接后,并且無法接收其他Peer的連線要求。\r\n
\r\n
\r\n這意味着其他的大批Peer無法連線到你,只能由你連線到他們。更糟糕的情況是,如果兩個Peer都處于這樣的狀態,他們將完全無法連線到對方。這對于整體速度有着非常不利的影響。\r\n
\r\n
\r\n對于這個問題,有以下解決方式:對于防火牆,開啟用于接收連線的通訊埠(即你在BT用戶端中定義的通訊埠);對于NAT,你需要配置NAT伺服器使用Basic NAT方式而不是NAPT(不同的路線有着不同的執行方式。翻閱你的路線文件或客服論壇。你也可以在PortForward找到關于此問題的大量資訊)。\r\n\r\n\r\n\r\n\r\n\r\n', 1, 2, 9), (322, 22, 28, 'item', '不同的用戶等級代表了什么含義?', '\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
  Peasant  被降級的用戶,他們有30天時間來提升分享率,否則他們會被踢。無法發表趣味盒內容;無法申請友情鏈結;無法上傳字幕。\r\n
  User 新用戶的預設級別。只能在每周六中午12點至每周日晚上11點59分發布種子。
  Power User 得到一個邀請名額;可以直接發布種子;可以檢視NFO文件;可以檢視用戶清單;可以要求續種; 可以傳送邀請; 可以檢視排行榜;可以檢視其他用戶的種子曆史(如果用戶隱私等級未設定為"強"); 可以移除自己上傳的字幕。
  Elite User Elite User及以上用戶封存賬號后不會被移除。
  Crazy User 得到兩個邀請名額;可以在做種/下載/發布的時候選取匿名型態。
  Insane User 可以檢視普通日誌。
  Veteran User 得到三個邀請名額;可以檢視其他用戶的評論、帖子曆史。Veteran User及以上用戶會永遠保留賬號。
  Extreme User 可以更新過期的外部資訊;可以檢視Extreme User論壇。
  Ultimate User 得到五個邀請名額。
  Nexus Master 得到十個邀請名額。
  Star 為網站捐款的主。
  貴賓(VIP) Nexus Master擁有相同許可權并被認為是精英成員。免除自動降級。
  其他 自訂等級。
  養老族(Retiree) 退休后的管理組成員。
  發布員(Uploader) 專注的發布者。免除自動降級;可以檢視匿名用戶的真實身份。
  總版主(Moderator) 可以檢視管理組郵箱、舉報郵箱;管理趣味盒內容、投票內容;可以編輯或移除任何發布的種子;可以管理候選;可以管理論壇帖子、用戶評論;可以檢視機密日誌;可以移除任何字幕;可以管理日誌中的程式碼、史冊;可以檢視用戶的邀請記錄;可以管理用戶帳號的一般資訊。無法管理友情鏈結、最近訊息、論壇版塊;無法將種子設為置頂或促銷;無法檢視用戶IP或Email等機密資訊;無法移除賬號。
  管理員(Administrator) 除了無法改變網站設定、管理捐贈外,可以做任何事。
  維護開發員(Sysop) 網站開發/維護人員,可以改變網站設定,無法管理捐贈。
  主管(Staff Leader) 網站主管,可以做任何事。
', 1, 2, 10), (323, 23, 28, 'item', '提升和降級又是怎樣被執行的呢?', '\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
  Peasant 當以下情況時將被自動降至本級:
\r\n1.如果你已經下載了超過50GB,你應該有大于0.4的分享率。
\r\n2.如果你已經下載了超過100GB,你應該有大于0.5的分享率。
\r\n3.如果你已經下載了超過200GB,你應該有大于0.6的分享率。
\r\n4.如果你已經下載了超過400GB,你應該有大于0.7的分享率。
\r\n5.如果你已經下載了超過800GB,你應該有大于0.8的分享率。
  Power User 必須註冊至少4周,并且下載至少50G,分享率大于1.05。
\r\n當條件符合時將被自動提升。注意,無論何時,如果你的分享率低于0.95,你將自動降級。
  Elite User 必須註冊至少8周,并且下載至少120G,分享率大于1.55。\r\n
\r\n當條件符合時將被自動提升。注意,無論何時,如果你的分享率低于1.45,你將自動降級。
  Crazy User 必須註冊至少15周,并且下載至少300G,分享率大于2.05。\r\n
\r\n當條件符合時將被自動提升。注意,無論何時,如果你的分享率低于1.95,你將自動降級。
  Insane User 必須註冊至少25周,并且下載至少500G,分享率大于2.55。
\r\n當條件符合時將被自動提升。注意,無論何時,如果你的分享率低于2.45,你將自動降級。
  Veteran User 必須註冊至少40周,并且下載至少750G,分享率大于3.05。
\r\n當條件符合時將被自動提升。注意,無論何時,如果你的分享率低于2.95,你將自動降級。
  Extreme User 必須註冊至少60周,并且下載至少1TB,分享率大于3.55。
\r\n當條件符合時將被自動提升。注意,無論何時,如果你的分享率低于3.45,你將自動降級。
  Ultimate User 必須註冊至少80周,并且下載至少1.5TB,分享率大于4.05。
\r\n當條件符合時將被自動提升。注意,無論何時,如果你的分享率低于3.95,你將自動降級。
  Nexus Master 必須註冊至少100周,并且下載至少3TB,分享率大于4.55。
\r\n當條件符合時將被自動提升。注意,無論何時,如果你的分享率低于4.45,你將自動降級。
  Star 只需捐款,詳見這裡
  貴賓(VIP) 由管理員仔細斟酌后配置給他們認為對于網站某方面有特殊貢獻的用戶。
\r\n(任何索取貴賓等級的要求將被自動無視)
  其他 用戶使用魔力值兌換,或由管理員仔細斟酌后授權。
  養老族(Retiree) 由管理員授予。
  發布員(Uploader) 由管理員配置(參見''發布''部分以了解詳情)。
  總版主(Moderator) 無需多問,我們會找到你的!
', 1, 2, 11), (325, 25, 28, 'item', '為什么我的朋友無法加入?', '用戶數目有所限制(你可以檢視“首頁->網站資料->上限”)。當達到那個數目時,我們會停止接受新成員。
\r\n由于非活躍用戶(長期不使用賬號的用戶)引起賬號資源浪費,因此我們將清理該部分用戶,為其他想加入用戶騰出空間。
\r\n關于非活躍用戶清理規則,參照規則。', 1, 2, 13), (326, 26, 28, 'item', '怎樣自訂頭像?', '首先,找一個你喜歡的圖片,當然了它無法違反我們的規則。然后你要找一個存放它的地方,比方說我們自己的上傳器。出于伺服器負載的考慮,我們更希望你將圖片上傳到別的網站,然后將其URL黏貼到你的控制面板的頭像URL部分。
\r\n
\r\n請不要為了僅僅測試頭像而發帖。如果一切順利,你將在你的詳情頁面看到它。', 1, 2, 14), (327, 27, 28, 'item', '最常見的資料未能得到更新的原因', '', 1, 3, 1), (328, 28, 28, 'item', '最佳的嘗試', '', 1, 3, 2), (329, 29, 28, 'item', '我可以任意選取Bittorrent用戶端軟體么?', '根據NexusPHP對常見BitTorrent用戶端的測試,目前本站Tracker只允許使用以下的BitTorrent用戶端軟體。
\r\nNexusPHP的測試報告可在此檢視。\r\n
\r\nWindows:\r\n\r\nLinux:\r\n\r\nMacOS X:\r\n\r\nSymbian (僅供測試):\r\n\r\n
\r\n\r\n以上用戶端在https支援方面\r\n\r\n\r\n
\r\n\r\n同時請儘量避免使用處于測試期的用戶端軟體, 如uTorrent 1.8.0B。\r\n\r\n為了從本站得到最好的下載體驗,我們高度建議uTorrent 以及Azureus這兩個軟體的最新穩定版。', 1, 5, 3), (330, 30, 28, 'item', '為什么我正在下載/做種的一個種子會在我的詳情頁面中被列出多次?', '如果因為某些原因(比方說死機,用戶端失去回應)你的用戶端非正常結束并且你又重新開啟它,它會被配置到一個全新的Peer ID, 這樣它察看為一個全新的種子。而舊的種子將永遠不會收到“event=completed”或“event=stopped”的訊號,因此將一直被列出直到Tracker清理逾時的Peer。 無視了它就可以了,它最后會消失的。', 1, 3, 4), (331, 31, 28, 'item', '為什么我已經完成/取消的種子仍然在我的詳情頁面裡?', '有一些用戶端,比如說TorrentStorm和Nova Torrent,在取消或者完成一個工作的時候無法向Tracker伺服器正確傳送訊號。在那樣的情況下,Tracker伺服器將一直保持等待訊號的狀態(因此會一直列出種子的狀態為做種/下載的狀態)直到Tracker清理逾時的Peer。無視了它就可以了,它最后會消失的。', 1, 3, 5), (333, 33, 28, 'item', '多IP(我可以從不同的電腦登入/下載嗎?)', '是的,目前Tracker伺服器支援單個用戶從任意個數的IP位址同時存取/下載。
\r\n然而,對于單種是有限制的。對于每個種子,最多允許3個做種的連線,最多只允許1個下載的連線(這意味着,對于某個種子你一次只能在一個地方下載)。', 1, 3, 7), (336, 36, 28, 'item', '為什么我無法發布種子?', '請看規則。', 1, 4, 1), (337, 37, 28, 'item', '我需要滿足哪些條件才能加入發布小組呢?', '你所必須滿足的條件:\r\n\r\n你必須確保發布的檔案符合以下特征:\r\n\r\n如果你認為你符合以上條件,那么不要猶豫,聯繫管理組吧。
\r\n記住! 仔細填寫你的申請!確保申請中包含你的上傳速度以及你計划發布的內容的類別。
\r\n只有仔細填寫并且經過慎重考慮的申請才會納入我們的視野。', 1, 4, 2), (338, 38, 28, 'item', '我可以發布你們這裡的種子到別的Tracker伺服器么?', '無法。我們是一個封閉的、限制用戶數的社區。只有註冊用戶才能夠使用我們的Tracker。將我們的種子檔案發布到其他Tracker伺服器是徒勞的,因為絕大多數嘗試下載這些檔案的人將無法連線到我們的伺服器。將我們的種子發布到其他Tracker只讓那裡的用戶惱怒(因為無法下載)并且對我們產生敵對情緒,所以這種行為是我們是無法容忍的。
\r\n
\r\n如果其他網站的管理員向我們舉報我們的種子被發布在他們的網站上,對此負責的用戶將因此被移出我們的社區。
\r\n
\r\n但是對于從我們這裡下載得到的檔案,你可以隨意操控它們(發布者明確說明為獨占的資源除外)。你可以制作另一個種子,寫入其他Tracker的位址,并發布到你喜歡的網站上。', 1, 4, 3), (339, 39, 28, 'item', '下載來的檔案該怎么開啟?', '在這份指引裡面找找看吧。', 1, 5, 1), (340, 40, 28, 'item', '我下載了一部電影,但是不明白CAM/TS/TC/SCR是什么意思?', '在這份指引裡面找找看吧。', 1, 5, 2), (341, 41, 28, 'item', '為什么一個可用的種子忽然就消失了?', '以下原因都會導致這個現象的出現:
\r\n(1) 按照網站規則,這個種子不符合規則已被移除。\r\n
\r\n(2) 發布者因為檔案存在問題而移除了它。一般來說,發布者會發布一個交替的版本的。
\r\n(3) 在長時間斷種后種子被自動移除了。', 1, 5, 3), (342, 42, 28, 'item', '我該怎樣續傳檔案或者給一個檔案續種呢?', '開啟副檔名為.torrent的檔案,當你的用戶端軟體詢問儲存的目錄時,選取已經存在的檔案存放的目錄,它就能夠開始續傳/續種了。', 1, 5, 4), (343, 43, 28, 'item', '為什么我的下載有時候停在99%?', '你所下載到的片段越多,搜尋擁有你所缺少的片段的同伴就將變得越困難。這就是為什么有時候在下載即將完成的時候,速度會變得非常慢,甚至完全停止了。只要耐心等候,或早或晚剩餘的部分一定能夠下載到的。', 1, 5, 5), (344, 44, 28, 'item', '"部分哈希驗證出錯"這條資訊是什么意思?', 'BT的用戶端會檢查它所收到的資料的完整性。如果某一個片段在驗證中出錯,那么這個片段將被重新下載。偶爾的哈希驗證錯誤是非常常見的現象,不用擔心。
\r\n
\r\n有些用戶端有屏蔽向你傳送錯誤資料的其他用戶端的功能。如果有這個選項,最好開啟它。因為這樣可以保證如果某個同伴經常向你傳送錯誤的資料時,它將會被屏蔽。', 1, 5, 6), (345, 45, 28, 'item', '100MB大小的種子,我怎么下了120MB的東西回來?', '參見哈希驗證失敗的那個問題。如果你的用戶端收到了錯誤的資料,那么它將會重新下載這一部分,因此總下載量有可能比種子大小略微大一些。確保“屏蔽傳送錯誤資料的用戶端”的那個選項被開啟了,這樣可以減少其餘的下載。', 1, 5, 7), (346, 46, 28, 'item', '為什么我的用戶端的Tracker伺服器狀態出現"Your ratio is too low! You need to wait xx h to start"的錯誤?', '在種子被上傳到Tracker伺服器之后,有一些用戶必須等一些時間才能開始下載。
\r\n這個延遲只會影響那些分享率較低且下載量大于10G的用戶。
\r\n
\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n
分享率低于0.4 延遲24小時
分享率低于0.5 延遲12小時
分享率低于0.6 延遲6小時
分享率低于0.8 延遲3小時
', 0, 5, 8), (347, 47, 28, 'item', '為什么發生了這個錯誤? "Port xxxx is blacklisted"?', '你的用戶端向Tracker伺服器報告它正在使用某個預設的BT協定通訊埠(6881-6889)或是任何其他常見P2P通訊埠來作為連線通訊埠。
\r\n
\r\n本站不允許這些通常被P2P協定預設使用的通訊埠。原因是目前ISP常常對這些通訊埠進行限速。
\r\n
\r\n被屏蔽的通訊埠如下:
\r\n
\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Direct Connect411 - 413
BitTorrent6881 - 6889
Kazza1214
Gnutella6346 - 6347
Emule4662
WinMX6699
\r\n
\r\n要使用我們的Tracker伺服器,你必須配置你的用戶端使用未在上面列出的通訊埠範圍(從49152到65535都是不錯的選取,參看IANA)。注意某些用戶端,如Azureus 2.0.7.0或更高版本,對所有的種子都使用同一通訊埠。而其他大多數用戶端為每一個種子開放一個通訊埠,你在選取通訊埠範圍應考慮到這個問題(一般來說通訊埠範圍小于10。設定一個過大的範圍并不一定有好處,而且可能有安全隱患)。
\r\n
\r\n這些通訊埠是用于同伴間通訊的,而非用于用戶端連線到Tracker伺服器。因此這個改動并不會影響你使用其他Tracker伺服器(事實上,它甚至可能加快所有Tracker伺服器上種子的速度)。你的用戶端也仍然能夠連線到那些使用預設通訊埠的同伴。如果你的用戶端不支援自己自訂通訊埠,那么換一個吧。
\r\n
\r\n不要向我們詢問,或者在論壇裡面提問究竟應該選取什么通訊埠。我們的用戶選取的通訊埠越隨機,ISP就越難以捉摸清楚我們使用的通訊埠,從而無法對我們的通訊埠進行限速。如果我們只是簡單地規定一個範圍,那么ISP又會很快對那個範圍內的通訊埠進行限速的。
\r\n
\r\n最后還要說的是,記得在你的路線和/或防火牆上開啟你選取的通訊埠,如果你有這些東西的話。', 1, 5, 9), (348, 48, 28, 'item', '那么這個呢? “IO錯誤 - [錯誤號13] 許可被拒絕”?', '如果你只是想要解決這個問題的話,重新啟動你的電腦應該就可以了。否則的話,繼續讀下去。
\r\n
\r\nIO錯誤指的是匯入-匯出錯誤,這是一個檔案系統錯誤,而非來自我們的Tracker伺服器。當你的用戶端由于某些原因無法開啟種子中未下載完成的檔案時,這個錯誤就會發生。 通常原因是用戶端的兩個實例同時在執行:當上一次關閉用戶端時因為某種原因它沒有被真正關閉,從而始終在背景執行。因此檔案被鎖定,使得新的實例無法開啟這個檔案。
\r\n
\r\n另外一個不常出現的原因是因為老舊的FAT檔案系統。某些系統崩潰可能導致未下載完成的檔案損壞,接着就出現了這個錯誤。執行一次scandisk應該可以解決這個問題。注意,只有當你使用Windows 9X作業系統(只支援FAT檔案系統)或者在Windows NT/2000/XP中使用FAT檔案系統的時候才比對可能出現這個問題。NTFS檔案系統要健壯許多,不太可能出現這樣的問題。', 1, 5, 10), (350, 50, 28, 'item', '不要馬上下載新發布的種子', '下載速度主要取決于上傳者/下載者比(SLR)。如果是種子是新發布的且非常受歡迎而SLR又很低的種子,下載速度低是常見的問題。
\r\n
\r\n請牢記你不喜歡低速下載。所以多上傳讓別人不用忍耐同樣的困擾。\r\n
\r\n
由其是當你的頻寬較窄時,不要馬上下載新發布的種子。最好的下載速度通常在一個種子生命周期的一半時出現,此時SLR達到最大值(不過,這時下載的缺點是你的上傳量不會很多。究竟如何平衡優點與缺點,取決于你自己)。', 1, 6, 1); INSERT INTO `faq` (`id`, `link_id`, `lang_id`, `type`, `question`, `answer`, `flag`, `categ`, `order`) VALUES (351, 51, 28, 'item', '限制上傳速度', '上傳速度將從以下兩種方式顯著影響下載速度:\r\n\r\n實際的效果是以上兩個原因的結合。上傳速度應該在保證ACK能正常傳送的前提下被設得儘量高。 一個很好的實踐理論是保持上傳速度在理論上限的80%。你也可以細細研究什么是最適合你的速度(同時也請記住高速上傳對于你的分享率很有輔助說明)。
\r\n
\r\n如果你正在執行一個以上的種子工作,你應該考慮的是全域上傳速度。某些用戶端能限制了全域上傳速度,其他的則能對每一個種子分別進行設定。了解你的用戶端。如果你正在使用你的電腦做別的某些應用(比方說上網或者從FTP拖東西),也需考慮一下它們對于全域上傳的影響。', 1, 6, 2), (352, 52, 28, 'item', '限制同時連線數', '某些作業系統(例如Windows 9X)對于大量連線數支援不完善,甚至有可能因此而崩潰。也有一些家用路線(尤其當執行着NAT以及/或者開啟防火牆狀態檢查服務時)會因大量連線數而變得很慢或者崩潰。對于連線數沒有固定的最佳值,你可以試試看60或者100。記住這些連線數是累加的,所以如果你的用戶端執行了兩個階段作業,這兩個數字要加在一起。', 1, 6, 3), (353, 53, 28, 'item', '限制同時上傳數', '上傳數難道和連線數有什么不一樣嗎?是的,兩者是不同的。連線數限制了你的用戶端所能對話以及/或者下載的同伴數。上傳數則限制了你的用戶端實際能上傳的同伴數。理想的數值一般要比連線數低許多,并且與你的物理頻寬高度相關。', 1, 6, 4), (354, 54, 28, 'item', '那怎么辦?等待一會吧', '如我們在上面所解譯的,在BT下載過程中一個同伴更加傾向于回報那些上傳給它的同伴。當你開始一個新的下載工作時,你沒有檔案片斷提高給其他同伴,因此他們通常會無視你。這使得開始階段的下載非常緩慢,由其是當你所連線到的同伴只有很少是(或者沒有)做種者。一旦你獲得了一些能用于共用的檔案片斷,下載速度會有所改觀。', 1, 6, 5), (355, 55, 28, 'item', '為什么在我下載的時候瀏覽網頁速度如此之慢?', '你的下載頻寬是有限的。如果你正在下載一個速度很快的種子,它几乎肯定將占滿你的下載頻寬。這是瀏覽網頁顯然就會變慢。很多BT用戶端允許你限制下載速度,你可以試試。
\r\n
\r\n瀏覽網頁只是作為舉例之一,同樣的問題也會出現在游戲,即時通訊軟體上......', 1, 6, 6), (356, 56, 28, 'item', '什么是代理?', '基本上說,代理就是中間人。當你通過代理存取某個網站的時候,你的要求將首先被傳送到代理處,然后由代理轉寄到你所要求的網站,而不是你直接連通到網站。下面是几種典型的代理分類(朮語不是那么的規格):
\r\n
\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
 透通代理 透通代理在用戶端無需配置。他將自動把80通訊埠的資訊重導到代理(有時候也作為非匿名代理的同義詞);
 顯式代理 瀏覽器必須經過配置才能使用代理;
 匿名代理 代理將不會把用戶記號傳送至伺服器端 (HTTP_X_FORWARDED_FOR頭旗標將不被傳送。伺服器也因此看不到你的IP);
 高度匿名代理 代理將不會把用戶記號或代理記號傳送至伺服器端 (HTTP_X_FORWARDED_FOR和HTTP_VIA and HTTP_PROXY_CONNECTION頭旗標將不被傳送。伺服器看不到你的IP,甚至不知道你正在使用代理);
 公用 (不言自明了)。
\r\n
\r\n透通代理可能是匿名的,也可能是非匿名的,且匿名也有相應的等級。', 1, 7, 1), (357, 57, 28, 'item', '我該怎樣發現自己正處于一個(透通的/匿名的)代理后面?', '試試看ProxyJudge。它列出了伺服器端從你這裡所收到的HTTP的頭旗標。相關的几個旗標是HTTP_CLIENT_IP,HTTP_X_FORWARDED_FOR和REMOTE_ADDR。', 1, 7, 2), (375, 75, 28, 'item', '我的“可連線”是“否”儘管我并沒有NAT或者防火牆?', 'Tracker伺服器在搜尋你的真實IP方面非常有天賦。但是這需要代理髮送HTTP頭旗標HTTP_X_FORWARDED_FOR。如果你的ISP的代理沒有這么做的話,Tracker伺服器將把代理的IP當作你的用戶端的IP。所以當你登入之后,Tracker伺服器嘗試連線你的用戶端來確信你沒有使用NAT/防火牆,伺服器實際上將嘗試連線代理的IP(使用你的BT用戶端報告的接收連線通訊埠)。很自然地,代理伺服器并沒有監聽那個通訊埠。如此連線會失敗,而Tracker伺服器也因此認為你使用了NAT/防火牆。', 1, 7, 3), (401, 1, 6, 'categ', 'Site information', '', 1, 0, 1), (402, 2, 6, 'categ', 'User information', '', 1, 0, 2), (403, 3, 6, 'categ', 'Stats', '', 1, 0, 3), (404, 4, 6, 'categ', 'Uploading', '', 1, 0, 4), (405, 5, 6, 'categ', 'Downloading', '', 1, 0, 5), (406, 6, 6, 'categ', 'How can I improve my download speed?', '', 1, 0, 6), (407, 7, 6, 'categ', 'My ISP uses a transparent proxy. What should I do?', '', 1, 0, 7), (408, 8, 6, 'categ', 'Why can''t I connect? Is the site blocking me?', '', 1, 0, 8), (409, 9, 6, 'categ', 'What if I can''t find the answer to my problem here?', '', 1, 0, 9), (410, 10, 6, 'item', 'What is this bittorrent all about anyway? How do I get the files?', 'Check out Brian''s BitTorrent FAQ and Guide.', 1, 1, 1), (411, 11, 6, 'item', 'Where does the donated money go?', 'All donated money goes to the cost of server that this tracker is on.', 1, 1, 2), (412, 12, 6, 'item', 'Where can I get a copy of the source code?', 'This tracker is powered by NexusPHP. If you like to use NexusPHP to power your tracker, Contact Us.
\r\nThe first stage of NexusPHP forks from TBSource. You may find more information about TBSource at TBDev.net.', 1, 1, 3), (413, 13, 6, 'item', 'I registered an account but did not receive the confirmation e-mail!', 'One possible reason may be that the network around the tracker has encountered some problems. You can use this form ask the tracker to resend confirmation e-mail.
\r\nTypically registered users would be deleted after 24 hours if not confirmed, so you may try again the next day. Note though that if you didn''t receive the email the first time it will probably not succeed the second time either so you should really try another email address.', 1, 2, 1), (414, 14, 6, 'item', 'I''ve lost my user name or password! Can you send it to me?', 'Please use this form to have the login details mailed back to you.', 1, 2, 2), (415, 15, 6, 'item', 'Can you rename my account? ', 'No, we do not rename accounts. Don''t ask for it.', 1, 2, 3), (416, 16, 6, 'item', 'Can you delete my (confirmed) account?', 'No, we don''t delete accounts. Don''t ask for it.', 1, 2, 4), (417, 17, 6, 'item', 'So, what''s MY ratio?', 'It''s on the left-top of pages.
\r\n
\r\nratio\r\n
\r\n
\r\nIt''s important to distinguish between your overall ratio and the individual ratio on each torrent you may be seeding or leeching. The overall ratio takes into account the total uploaded and downloaded from your account since you joined the site. The individual ratio takes into account those values for each torrent.\r\n
\r\n
\r\nYou may see two symbols instead of a number: "Inf.", which is just an abbreviation for Infinity, and means that you have downloaded 0 bytes while uploading a non-zero amount (ul/dl becomes infinity); "---", which should be read as "non-available", and shows up when you have both downloaded and uploaded 0 bytes (ul/dl = 0/0 which is an indeterminate amount).\r\n', 1, 2, 5), (418, 18, 6, 'item', 'Why is my IP displayed on my details page?', 'Only you and the site moderators can view your IP address and email. Regular users do not see that information.', 1, 2, 6), (421, 21, 6, 'item', 'Why am I listed as not connectable? (And why should I care?)', 'The tracker has determined that you are firewalled or NATed and cannot accept incoming connections. \r\n
\r\n
\r\nThis means that other peers in the swarm will be unable to connect to you, only you to them. Even worse, if two peers are both in this state they will not be able to connect at all. This has obviously a detrimental effect on the overall speed. \r\n
\r\n
\r\nThe way to solve the problem involves opening the ports used for incoming connections (the same range you defined in your client) on the firewall and/or configuring your NAT server to use a basic form of NAT for that range instead of NAPT (the actual process differs widely between different router models. Check your router documentation and/or support forum. You will also find lots of information on the subject at PortForward).\r\n\r\n\r\n\r\n\r\n\r\n', 1, 2, 9), (422, 22, 6, 'item', 'What are the different user classes?', '\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
  Peasant  Demoted users. They must improve their ratio within 30 days or they will be banned. Cannot post funbox item, apply for links or upload subtitles.\r\n
  User The default class of new members. may upload torrents between 12:00, Saturday and 23:59 Sunday of every week.
  Power User Get a invitation. Can upload torrents, view NFO files, view user list, ask for reseed, send invitation, access Power User and External Trackers forums, view Top 10, view other users'' torrent history (if user''s privacy level is not set ''strong''), delete subtitle uploaded by oneself.
  Elite User Elite User or above would never be deleted if parked.
  Crazy User Get two invitations. Can be anonymous when seeding/leeching/uploading.
  Insane User Can view general logs.
  Veteran User Get three invitations. Can view other users'' history of comments and forum posts. Veteran User or above would never be deleted whether parked or not.
  Extreme User Can update outdated external information and access Extreme User forum.
  Ultimate User Get 5 invitations.
  Nexus Master Get 10 invitations.
  Star Has donated money to this tracker.
  VIP Same privileges as Nexus Master and is considered an Elite Member of this tracker. Immune to automatic demotion.
  Retiree Former staff members.
  Other Customized title.
  Uploader Dedicated uploader, immune to automatic demotion. Can view who anonymous ones are.
  Moderator Can view staffbox and reportbox, manage funbox and polls, edit and delete any uploaded torrent, manage offers, manage forum posts and user comments, view confidential logs, delete any uploaded subtitle, manage code updates and chronicles at logs, view users'' invitation history, change general user account information. Cannot manage links,recent news or forums. Cannot set torrents sticky or on promotion.Cannot view users'' confidential information (e.g. IP address and Email address). Cannot delete user account.
  Administrator Other than changing site settings and managing donation, can do just about anything.
  SysOp Dedicated site developer. Except managing donation, can do anything (including changing site settings)
  Staff Leader The boss. Can do anything.
', 1, 2, 10), (423, 23, 6, 'item', 'How does this promotion thing work anyway?', '\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
  Peasant User would be demoted to this class under any of the following circumstances:
\r\n1.Downloaded more than 50 GB and with ratio below 0.4
\r\n2.Downloaded more than 100 GB and with ratio below 0.5
\r\n3.Downloaded more than 200 GB and with ratio below 0.6
\r\n4.Downloaded more than 400 GB and with ratio below 0.7
\r\n5.Downloaded more than 800 GB and with ratio below 0.8
  Power User Must have been a member for at least 4 weeks, have downloaded at least 50GB and have a ratio at or above 1.05. The promotion is automatic when these conditions are met.
\r\nNote that you will be automatically demoted from this status if your ratio drops below 0.95 at any time.
  Elite User Must have been a member for at least 8 weeks, have downloaded at least 120GB and have a ratio at or above 1.55. The promotion is automatic when these conditions are met.
\r\nNote that you will be automatically demoted from this status if your ratio drops below 1.45 at any time.
  Crazy User Must have been a member for at least 15 weeks, have downloaded at least 300GB and have a ratio at or above 2.05. The promotion is automatic when these conditions are met.
\r\nNote that you will be automatically demoted from this status if your ratio drops below 1.95 at any time.
  Insane User Must have been a member for at least 25 weeks, have downloaded at least 500GB and have a ratio at or above 2.55. The promotion is automatic when these conditions are met.
\r\nNote that you will be automatically demoted from this status if your ratio drops below 2.45 at any time.
  Veteran User Must have been a member for at least 40 weeks, have downloaded at least 750GB and have a ratio at or above 3.05. The promotion is automatic when these conditions are met.
\r\nNote that you will be automatically demoted from this status if your ratio drops below 2.95 at any time.
  Extreme User Must have been a member for at least 60 weeks, have downloaded at least 1TB and have a ratio at or above 3.55. The promotion is automatic when these conditions are met.
\r\nNote that you will be automatically demoted from this status if your ratio drops below 3.45 at any time.
  Ultimate User Must have been a member for at least 80 weeks, have downloaded at least 1.5TB and have a ratio at or above 4.05. The promotion is automatic when these conditions are met.
\r\nNote that you will be automatically demoted from this status if your ratio drops below 3.95 at any time.
  Nexus Master Must have been a member for at least 100 weeks, have downloaded at least 3TB and have a ratio at or above 4.55. The promotion is automatic when these conditions are met.
\r\nNote that you will be automatically demoted from this status if your ratio drops below 4.45 at any time.
  \\\\\\\\\\\\\\"Star\\\\\\\\\\\\\\" Just donate, see here for the details.
  VIP Assigned by mods at their discretion to users they feel contribute something special to the site. (Anyone begging for VIP status will be automatically disqualified.)
  Other Customized title. Exchanged at bonus system or granted by admins.
  Uploader Appointed by Admins/SysOp/Staff Leader (see the \\\\\\\\\\\\\\''Uploading\\\\\\\\\\\\\\'' section for conditions).
  Retiree Granted by Admins/SysOp/Staff Leader
  Moderator You don\\\\\\\\\\\\\\''t ask us, we\\\\\\\\\\\\\\''ll ask you!
', 0, 2, 11), (425, 25, 6, 'item', 'Why can''t my friend become a member?', 'There is a users limit (it is list at Home -> Tracker Statistics -> Limit). When that number is reached we stop accepting new members. Accounts inactive (i.e. not logged in for a long time) are automatically deleted, so keep trying.
\r\nWhen are inactive user accounts deleted? See Rules', 1, 2, 13), (426, 26, 6, 'item', 'How do I add an avatar to my profile?', 'First, find an image that you like, and that is within the rules. Then you will have to find a place to host it, such as our own BitBucket. To lighten tracker''s load, we recommend you upload it to other websites and copy the URL you were given when uploading it to the Avatar URL field in UserCP.
\r\n
\r\nPlease do not make a post just to test your avatar. If everything is all right you''ll see it in your details page. ', 1, 2, 14), (427, 27, 6, 'item', 'Most common reason for stats not updating', '', 1, 3, 1), (428, 28, 6, 'item', 'Best practices', '', 1, 3, 2), (429, 29, 6, 'item', 'May I use any bittorrent client?', 'No. According to tests of common bittorrent clients by NexusPHP, we allowed only the following bittorrent clients.
\r\nThe test report by NexusPHP is here. \r\n
\r\nWindows:\r\n\r\nLinux:\r\n\r\nMacOS X:\r\n\r\nSymbian (For Testing Only):\r\n\r\n
\r\n\r\nSupport for https:\r\n\r\n\r\n
\r\n\r\nPlease do not use any beta or testing version of bittorrent clients, e.g. uTorrent 1.8.0B. To get the best downloading experience, we highly recommend latest stable version of uTorrent and Azureus.', 1, 5, 3), (430, 30, 6, 'item', 'Why is a torrent I''m leeching/seeding listed several times in my profile?', 'If for some reason (e.g. PC crash, or frozen client) your client exits improperly and you restart it, it will have a new peer_id, so it will show as a new torrent. The old one will never receive a "event=completed" or "event=stopped" and will be listed until some tracker timeout. Just ignore it, it will eventually go away.', 1, 3, 4), (431, 31, 6, 'item', 'I''ve finished or cancelled a torrent. Why is it still listed in my profile?', 'Some clients, notably TorrentStorm and Nova Torrent, do not report properly to the tracker when canceling or finishing a torrent. In that case the tracker will keep waiting for some message - and thus listing the torrent as seeding or leeching - until some timeout occurs. Just ignore it, it will eventually go away.', 1, 3, 5), (433, 33, 6, 'item', 'Multiple IPs (Can I login from different computers?)', 'Yes, the tracker is capable of following sessions from different IPs for the same user. You may access the site and seed/leech simultaneously from as many computers as you want with the same account.
\r\nHowever, there is a limit for a single torrent. Per torrent 3 simultaneous connections are permitted per user, and in case of leeching only 1, which means you can leech a torrent from one location only at a time.', 1, 3, 7), (436, 36, 6, 'item', 'Why can''t I upload torrents?', 'See Rules.', 1, 4, 1), (437, 37, 6, 'item', 'What criteria must I meet before I can join the Uploader team?', 'You must:\r\n\r\nYou must be able to provide releases that:\r\n\r\nIf you think you can match these criteria do not hesitate to contact the staff.
\r\nRemember! Write your application carefully! Be sure to include your upload speed and what kind of stuff you''re planning to upload.
\r\nOnly well written letters with serious intent will be considered.', 1, 4, 2), (438, 38, 6, 'item', 'Can I upload your torrents to other trackers?', 'No. We are a closed, limited-membership community. Only registered users can use the tracker. Posting our torrents on other trackers is useless, since most people who attempt to download them will be unable to connect with us. This generates a lot of frustration and bad-will against us, and will therefore not be tolerated.
\r\n
\r\nComplaints from other sites'' administrative staff about our torrents being posted on their sites will result in the banning of the users responsible.\r\n
\r\n
\r\nHowever, the files you download from us are yours to do as you please (except those marked as EXCLUSIVE by the uploader). You can always create another torrent, pointing to some other tracker, and upload it to the site of your choice.', 1, 4, 3), (439, 39, 6, 'item', 'How do I use the files I''ve downloaded?', 'Check out this guide.', 1, 5, 1), (440, 40, 6, 'item', 'Downloaded a movie and don''t know what CAM/TS/TC/SCR means?', 'Check out this guide.', 1, 5, 2), (441, 41, 6, 'item', 'Why did an active torrent suddenly disappear?', 'There may be three reasons for this:
\r\n(1) The torrent may have been against the site rules.\r\n
\r\n(2) The uploader may have deleted it because it was a bad release. A replacement will probably be uploaded to take its place.
\r\n(3) Torrents are automatically deleted after being dead for a long time.', 1, 5, 3), (442, 42, 6, 'item', 'How do I resume a broken download or reseed something?', 'Open the .torrent file. When your client asks you for a location, choose the location of the existing file(s) and it will resume/reseed the torrent.', 1, 5, 4), (443, 43, 6, 'item', 'Why do my downloads sometimes stall at 99%?', 'The more pieces you have, the harder it becomes to find peers who have pieces you are missing. That is why downloads sometimes slow down or even stall when there are just a few percent remaining. Just be patient and you will, sooner or later, get the remaining pieces.', 1, 5, 5), (444, 44, 6, 'item', 'What are these "a piece has failed a hash check" messages? ', 'Bittorrent clients check the data they receive for integrity. When a piece fails this check it is automatically re-downloaded. Occasional hash fails are a common occurrence, and you shouldn''t worry.
\r\n
\r\nSome clients have an (advanced) option/preference to ''kick/ban clients that send you bad data'' or similar. It should be turned on, since it makes sure that if a peer repeatedly sends you pieces that fail the hash check it will be ignored in the future.', 1, 5, 6), (445, 45, 6, 'item', 'The torrent is supposed to be 100MB. How come I downloaded 120MB? ', 'See the hash fails topic. If your client receives bad data it will have to re-download it, therefore the total downloaded may be larger than the torrent size. Make sure the "kick/ban" option is turned on to minimize the extra downloads.', 1, 5, 7), (446, 46, 6, 'item', 'Why do I get a "Your ratio is too low! You need to wait xx h to start" error?', 'From the time that each new torrent is uploaded to the tracker, there is a period of time that some users must wait before they can download it.
\r\nThis delay in downloading will only affect users with a low ratio and downloaded amount above 10 GB.
\r\n
\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n
Ratio below0.4 delay of24h
Ratio below0.5 delay of12h
Ratio below0.6 delay of6h
Ratio below0.8 delay of3h
', 0, 5, 8), (447, 47, 6, 'item', 'Why do I get a "Port xxxx is blacklisted" error?', 'Your client is reporting to the tracker that it uses one of the default bittorrent ports (6881-6889) or any other common p2p port for incoming connections.
\r\n
\r\nWe does not allow clients to use ports commonly associated with p2p protocols. The reason for this is that it is a common practice for ISPs to throttle those ports (that is, limit the bandwidth, hence the speed).
\r\n
\r\nThe blocked ports list include the following:
\r\n
\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Direct Connect411 - 413
BitTorrent6881 - 6889
Kazza1214
Gnutella6346 - 6347
Emule4662
WinMX6699
\r\n
\r\nIn order to use our tracker you must configure your client to use any port range that does not contain those ports (a range within the region 49152 through 65535 is preferable,\r\ncf. IANA). Notice that some clients, like Azureus 2.0.7.0 or higher, use a single port for all torrents, while most others use one port per open torrent. The size of the range you choose should take this into account (typically less than 10 ports wide. There is no benefit whatsoever in choosing a wide range, and there are possible security implications).
\r\n
\r\nThese ports are used for connections between peers, not client to tracker. Therefore this change will not interfere with your ability to use other trackers (in fact it should increase your speed with torrents from any tracker, not just ours). Your client will also still be able to connect to peers that are using the standard ports. If your client does not allow custom ports to be used, you will have to switch to one that does.
\r\n
\r\nDo not ask us, or in the forums, which ports you should choose. The more random the choice is the harder it will be for ISPs to catch on to us and start limiting speeds on the ports we use. If we simply define another range ISPs will start throttling that range also.
\r\n
\r\nFinally, remember to forward the chosen ports in your router and/or open them in your\r\nfirewall, should you have them.', 1, 5, 9), (448, 48, 6, 'item', 'What''s this "IOError - [Errno13] Permission denied" error?', 'If you just want to fix it reboot your computer, it should solve the problem. Otherwise read on.
\r\nIOError means Input-Output Error, and that is a file system error, not a tracker one. It shows up when your client is for some reason unable to open the partially downloaded torrent files. The most common cause is two instances of the client to be running simultaneously: the last time the client was closed it somehow didn''t really close but kept running in the background, and is therefore still locking the files, making it impossible for the new instance to open them.
\r\nA more uncommon occurrence is a corrupted FAT. A crash may result in corruption that makes the partially downloaded files unreadable, and the error ensues. Running scandisk should solve the problem. (Note that this may happen only if you''re running Windows 9x - which only support FAT - or NT/2000/XP with FAT formatted hard drives. NTFS is much more robust and should never permit this problem.)\r\n', 1, 5, 10), (450, 50, 6, 'item', 'Do not immediately jump on new torrents', 'The download speed mostly depends on the seeder-to-leecher ratio (SLR). Poor download speed is mainly a problem with new and very popular torrents where the SLR is low.
\r\n(Note: make sure you remember that you did not enjoy the low speed. Seed so that others will not endure the same.)
\r\n
In particular, do not do it if you have a slow connection. The best speeds will be found around the half-life of a torrent, when the SLR will be at its highest. (The downside is that you will not be able to seed so much. It''s up to you to balance the pros and cons of this.)', 1, 6, 1), (451, 51, 6, 'item', 'Limit your upload speed', 'The upload speed affects the download speed in essentially two ways:\r\n\r\n\r\nThe full effect is a combination of the two. The upload should be kept as high as possible while allowing the ACKs to get through without delay. A good thumb rule is keeping the upload at about 80% of the theoretical upload speed. You will have to fine tune yours to find out what works best for you. (Remember that keeping the upload high has the additional benefit of helping with your ratio.)
\r\n
\r\nIf you are running more than one instance of a client it is the overall upload speed that you must take into account. Some clients limit global upload speed, others do it on a per torrent basis. Know your client. The same applies if you are using your connection for anything else (e.g. browsing or ftp), always think of the overall upload speed.', 1, 6, 2), (452, 52, 6, 'item', 'Limit the number of simultaneous connections', 'Some operating systems (like Windows 9x) do not deal well with a large number of connections, and may even crash. Also some home routers (particularly when running NAT and/or firewall with stateful inspection services) tend to become slow or crash when having to deal with too many connections. There are no fixed values for this, you may try 60 or 100 and experiment with the value. Note that these numbers are additive, if you have two instances of a client running the numbers add up.', 1, 6, 3), (453, 53, 6, 'item', 'Limit the number of simultaneous uploads', 'Isn''t this the same as above? No. Connections limit the number of peers your client is talking to and/or downloading from. Uploads limit the number of peers your client is actually uploading to. The ideal number is typically much lower than the number of connections, and highly dependent on your (physical) connection.', 1, 6, 4), (454, 54, 6, 'item', 'Just give it some time', 'As explained above peers favour other peers that upload to them. When you start leeching a new torrent you have nothing to offer to other peers and they will tend to ignore you. This makes the starts slow, in particular if, by chance, the peers you are connected to include few or no seeders. The download speed should increase as soon as you have some pieces to share.', 1, 6, 5), (455, 55, 6, 'item', 'Why is my browsing so slow while leeching?', 'Your download speed is always finite. If you are a peer in a fast torrent it will almost certainly saturate your download bandwidth, and your browsing will suffer. Many clients allows you to limit the download speed and try it.
\r\n
\r\nBrowsing was used just as an example, the same would apply to gaming, IMing, etc...', 1, 6, 6), (456, 56, 6, 'item', 'What is a proxy?', 'Basically a middleman. When you are browsing a site through a proxy your requests are sent to the proxy and the proxy forwards them to the site instead of you connecting directly to the site. There are several classifications (the terminology is far from standard):
\r\n
\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n\r\n
 Transparent A transparent proxy is one that needs no configuration on the clients. It works by automatically redirecting all port 80 traffic to the proxy. (Sometimes used as synonymous for non-anonymous.)
 Explicit/Voluntary Clients must configure their browsers to use them.
 Anonymous The proxy sends no client identification to the server. (HTTP_X_FORWARDED_FOR header is not sent; the server does not see your IP.)
 Highly Anonymous The proxy sends no client nor proxy identification to the server. (HTTP_X_FORWARDED_FOR, HTTP_VIA and HTTP_PROXY_CONNECTION headers are not sent; the server doesn''t see your IP and doesn''t even know you''re using a proxy.)
 Public (Self explanatory)
\r\n
\r\nA transparent proxy may or may not be anonymous, and there are several levels of anonymity.', 1, 7, 1), (457, 57, 6, 'item', 'How do I find out if I''m behind a (transparent/anonymous) proxy?', 'Try ProxyJudge. It lists the HTTP headers that the server where it is running received from you. The relevant ones are HTTP_CLIENT_IP, HTTP_X_FORWARDED_FOR and REMOTE_ADDR.', 1, 7, 2), (475, 75, 6, 'item', 'Why am I listed as not connectable even though I''m not NAT/Firewalled?', 'The tracker is quite smart at finding your real IP, but it does need the proxy to send the HTTP header HTTP_X_FORWARDED_FOR. If your ISP''s proxy does not then what happens is that the tracker will interpret the proxy''s IP address as the client''s IP address. So when you login and the tracker tries to connect to your client to see if you are NAT/firewalled it will actually try to connect to the proxy on the port your client reports to be using for incoming connections. Naturally the proxy will not be listening on that port, the connection will fail and the tracker will think you are NAT/firewalled.', 1, 7, 3), (462, 62, 6, 'item', 'Maybe my address is blacklisted?', 'The site keeps a list of blocked IP addresses for banned users or attackers. This works at Apache/PHP level, and only blocks logins from those addresses. It should not stop you from reaching the site. In particular it does not block lower level protocols, you should be able to ping/traceroute the server even if your address is blacklisted. If you cannot then the reason for the problem lies elsewhere.
\r\n
\r\nIf somehow your address is blocked by mistake, contact us about it.', 1, 8, 1), (463, 63, 6, 'item', 'Your ISP blocks the site''s address', '(In first place, it''s unlikely your ISP is doing so. DNS name resolution and/or network problems are the usual culprits.) \r\n
\r\nThere''s nothing we can do. You should contact your ISP (or get a new one). Note that you can still visit the site via a proxy, follow the instructions in the relevant section. In this case it doesn''t matter if the proxy is anonymous or not, or which port it listens to.
\r\n
\r\nNotice that you will always be listed as an "unconnectable" client because the tracker will be unable to check that you''re capable of accepting incoming connections.', 1, 8, 2); INSERT INTO `faq` (`id`, `link_id`, `lang_id`, `type`, `question`, `answer`, `flag`, `categ`, `order`) VALUES (465, 65, 6, 'item', 'You may try this', 'Post in the Forums, by all means. You''ll find they are usually a friendly and helpful place, provided you follow a few basic guidelines: ', 1, 9, 1), (466, 66, 6, 'item', 'Why do I get a "Your slot limit is reached! You may at most download xx torrents at the same time" error?', 'This is part of the "Slot System". The slot system is being used to limit the concurrent downloads for users that have low ratio and downloaded amount above 10 GB

\r\nRules:
\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n
Ratio below0.5 available slots1
Ratio below0.65 available slots2
Ratio below0.8 available slots3
Ratio below0.95 available slots4
Ratio above0.95 available slotsunlimited
\r\n
\r\nIn all cases the seeding slots are unlimited. However if you have already filled all your available download slots and try to start seeding you will receive the same error. In this case you must free at least one download slot in order to start all your seeds and then start the download. If all your download slots are filled the system will deny any connection before validating if you want to download or seed. So first start your seeds and after that your downloads.
\r\n

\r\nAny time, you can check your available slots in the member bar on top of the page.', 0, 5, 12), (467, 67, 6, 'item', 'What is the passkey System? How does it work?', 'The passkey system is implemented to verify if you are registered with the tracker. Every user has a personal passkey, a random key generated by the system. When a user tries to download a torrent, his personal passkey is imprinted in the tracker URL of the torrent, allowing to the tracker to identify any source connected on it. In this way, you can seed a torrent for example, at home and at your office simultaneously without any problem with the 2 different IPs.\r\n', 1, 5, 13), (468, 68, 6, 'item', 'Why do I get an "Unknown passkey" error? ', 'You will get this error, firstly if you are not registered on our tracker, or if you haven''t downloaded the torrent to use from our webpage, when you were logged in. In this case, just register or log in and re-download the torrent.
\r\nThere is a chance to get this error also, at the first time you download anything as a new user, or at the first download after you reset your passkey. The reason is simply that the tracker reviews the changes in the passkeys every few minutes and not instantly. For that reason just leave the torrent running for a few minutes, and you will get eventually an OK message from the tracker.', 1, 5, 14), (469, 69, 6, 'item', 'When do I need to reset my passkey?', '', 1, 5, 15), (470, 70, 6, 'item', 'What is DHT? Why must I turn it off and how?', 'DHT must be disabled in your client. DHT can cause your stats to be recorded incorrectly and could be seen as cheating. Anyone using this will be banned for cheating the system.\r\n
\r\nFortunately, this tracker would parse uploaded .torrent files and automatically disable DHT. That''s why you must re-downloaded the torrent before starting seeding.', 1, 5, 16), (471, 71, 6, 'categ', 'How can I help translate the site language into my native language?', '', 1, 1, 8), (472, 72, 6, 'item', 'What skills do I need to do the translation?', 'Translate the site into another language is quite easy. You needn''t be skilled in PHP or dynamic website design. In fact, all you need is proficient understanding of English (the default site language) and the language you plan to translate into. Maybe some basic knowledge in HTML would help.

\r\nMoreover, we give a detailed tutorial on how to do the translation HERE. And our coders would be more than pleased to answer the questions you may encounter.

\r\nTranslate the whole site into another language would take estimated 10 hours. And extra time is needed to maintain the translation when site code is updated.

\r\nSo, if you think you could help, feel free to CONTACT US. Needless to say, you would be rewarded.', 1, 71, 1), (473, 73, 6, 'item', 'The translation tutorial', '', 1, 71, 2), (474, 74, 6, 'item', 'Why does my client notify me of low disk space even if there is plenty left?', 'Most possible reason is that the file system of your disk partitions is FAT32, which has a maximum file size limit of 4 GB. If your operation system is Windows, consider converting file system to NTFS. Check here for details.\r\n', 1, 5, 17); -- -------------------------------------------------------- -- -- Table structure for table `files` -- CREATE TABLE IF NOT EXISTS `files` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `torrent` mediumint(8) unsigned NOT NULL DEFAULT '0', `filename` varchar(255) NOT NULL DEFAULT '', `size` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `torrent` (`torrent`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `files` -- -- -------------------------------------------------------- -- -- Table structure for table `forummods` -- CREATE TABLE IF NOT EXISTS `forummods` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `forumid` smallint(5) unsigned NOT NULL, `userid` mediumint(8) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `forumid` (`forumid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `forummods` -- -- -------------------------------------------------------- -- -- Table structure for table `forums` -- CREATE TABLE IF NOT EXISTS `forums` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `sort` smallint(5) unsigned NOT NULL DEFAULT '0', `name` varchar(60) NOT NULL, `description` varchar(255) NOT NULL DEFAULT '', `minclassread` tinyint(3) unsigned NOT NULL DEFAULT '0', `minclasswrite` tinyint(3) unsigned NOT NULL DEFAULT '0', `postcount` int(10) unsigned NOT NULL DEFAULT '0', `topiccount` int(10) unsigned NOT NULL DEFAULT '0', `minclasscreate` tinyint(3) unsigned NOT NULL DEFAULT '0', `forid` smallint(5) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `forums` -- -- -------------------------------------------------------- -- -- Table structure for table `friends` -- CREATE TABLE IF NOT EXISTS `friends` ( `id` int(12) unsigned NOT NULL AUTO_INCREMENT, `userid` mediumint(8) unsigned NOT NULL, `friendid` mediumint(8) unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `userfriend` (`userid`,`friendid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `friends` -- -- -------------------------------------------------------- -- -- Table structure for table `fun` -- CREATE TABLE IF NOT EXISTS `fun` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `body` text, `title` varchar(255) NOT NULL DEFAULT '', `status` enum('normal','dull','notfunny','funny','veryfunny','banned') NOT NULL DEFAULT 'normal', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `fun` -- -- -------------------------------------------------------- -- -- Table structure for table `funds` -- CREATE TABLE IF NOT EXISTS `funds` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `usd` decimal(8,2) NOT NULL DEFAULT '0.00', `cny` decimal(8,2) NOT NULL DEFAULT '0.00', `user` mediumint(8) unsigned NOT NULL, `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `memo` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `funds` -- -- -------------------------------------------------------- -- -- Table structure for table `funvotes` -- CREATE TABLE IF NOT EXISTS `funvotes` ( `funid` mediumint(8) unsigned NOT NULL, `userid` mediumint(8) unsigned NOT NULL, `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `vote` enum('fun','dull') NOT NULL DEFAULT 'fun', PRIMARY KEY (`funid`,`userid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `funvotes` -- -- -------------------------------------------------------- -- -- Table structure for table `invites` -- CREATE TABLE IF NOT EXISTS `invites` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `inviter` mediumint(8) unsigned NOT NULL DEFAULT '0', `invitee` varchar(80) NOT NULL DEFAULT '', `hash` char(32) NOT NULL, `time_invited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `hash` (`hash`(3)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `invites` -- -- -------------------------------------------------------- -- -- Table structure for table `iplog` -- CREATE TABLE IF NOT EXISTS `iplog` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `ip` varchar(64) NOT NULL, `userid` mediumint(8) unsigned NOT NULL, `access` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `userid` (`userid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `iplog` -- -- -------------------------------------------------------- -- -- Table structure for table `isp` -- CREATE TABLE IF NOT EXISTS `isp` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=21 ; -- -- Dumping data for table `isp` -- INSERT INTO `isp` (`id`, `name`) VALUES (1, '中国电信'), (2, '中国网通'), (3, '中国铁通'), (4, '中国移动'), (5, '中国联通'), (6, '中国教育网'), (20, 'Other'); -- -------------------------------------------------------- -- -- Table structure for table `language` -- CREATE TABLE IF NOT EXISTS `language` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `lang_name` varchar(50) NOT NULL, `flagpic` varchar(255) NOT NULL DEFAULT '', `sub_lang` tinyint(3) unsigned NOT NULL DEFAULT '1', `rule_lang` tinyint(3) unsigned NOT NULL DEFAULT '0', `site_lang` tinyint(3) unsigned NOT NULL DEFAULT '0', `site_lang_folder` varchar(255) NOT NULL DEFAULT '', `trans_state` enum('up-to-date','outdate','incomplete','need-new','unavailable') NOT NULL DEFAULT 'unavailable', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=32 ; -- -- Dumping data for table `language` -- INSERT INTO `language` (`id`, `lang_name`, `flagpic`, `sub_lang`, `rule_lang`, `site_lang`, `site_lang_folder`, `trans_state`) VALUES (1, 'Bulgarian', 'bulgaria.gif', 1, 0, 0, '', 'unavailable'), (2, 'Croatian', 'croatia.gif', 1, 0, 0, '', 'unavailable'), (3, 'Czech', 'czechrep.gif', 1, 0, 0, '', 'unavailable'), (4, 'Danish', 'denmark.gif', 1, 0, 0, '', 'unavailable'), (5, 'Dutch', 'netherlands.gif', 1, 0, 0, '', 'unavailable'), (6, 'English', 'uk.gif', 1, 1, 1, 'en', 'up-to-date'), (7, 'Estonian', 'estonia.gif', 1, 0, 0, '', 'unavailable'), (8, 'Finnish', 'finland.gif', 1, 0, 0, '', 'unavailable'), (9, 'French', 'france.gif', 1, 0, 0, '', 'unavailable'), (10, 'German', 'germany.gif', 1, 0, 0, '', 'unavailable'), (11, 'Greek', 'greece.gif', 1, 0, 0, '', 'unavailable'), (12, 'Hebrew', 'israel.gif', 1, 0, 0, '', 'unavailable'), (13, 'Hungarian', 'hungary.gif', 1, 0, 0, '', 'unavailable'), (14, 'Italian', 'italy.gif', 1, 0, 0, '', 'unavailable'), (15, '日本語', 'japan.gif', 1, 0, 0, '', 'unavailable'), (16, '한국어', 'southkorea.gif', 1, 0, 0, 'ko', 'unavailable'), (17, 'Norwegian', 'norway.gif', 1, 0, 0, '', 'unavailable'), (18, 'Other', 'jollyroger.gif', 1, 0, 0, '', 'unavailable'), (19, 'Polish', 'poland.gif', 1, 0, 0, '', 'unavailable'), (20, 'Portuguese', 'portugal.gif', 1, 0, 0, '', 'unavailable'), (21, 'Romanian', 'romania.gif', 1, 0, 0, '', 'unavailable'), (22, 'Russian', 'russia.gif', 1, 0, 0, '', 'unavailable'), (23, 'Serbian', 'serbia.gif', 1, 0, 0, '', 'unavailable'), (24, 'Slovak', 'slovakia.gif', 1, 0, 0, '', 'unavailable'), (25, '简体中文', 'china.gif', 1, 1, 1, 'chs', 'up-to-date'), (26, 'Spanish', 'spain.gif', 1, 0, 0, '', 'unavailable'), (27, 'Swedish', 'sweden.gif', 1, 0, 0, '', 'unavailable'), (28, '繁體中文', 'hongkong.gif', 1, 1, 1, 'cht', 'up-to-date'), (29, 'Turkish', 'turkey.gif', 1, 0, 0, '', 'unavailable'), (30, 'Slovenian', 'slovenia.gif', 1, 0, 0, '', 'unavailable'), (31, 'Thai', 'thailand.gif', 1, 0, 0, 'th', 'unavailable'); -- -------------------------------------------------------- -- -- Table structure for table `links` -- CREATE TABLE IF NOT EXISTS `links` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `url` varchar(255) NOT NULL, `title` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `links` -- -- -------------------------------------------------------- -- -- Table structure for table `locations` -- CREATE TABLE IF NOT EXISTS `locations` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) DEFAULT NULL, `location_main` varchar(200) NOT NULL, `location_sub` varchar(200) NOT NULL, `flagpic` varchar(50) DEFAULT NULL, `start_ip` varchar(20) NOT NULL, `end_ip` varchar(20) NOT NULL, `theory_upspeed` int(10) unsigned NOT NULL DEFAULT '10', `practical_upspeed` int(10) unsigned NOT NULL DEFAULT '10', `theory_downspeed` int(10) unsigned NOT NULL DEFAULT '10', `practical_downspeed` int(10) unsigned NOT NULL DEFAULT '10', `hit` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `locations` -- -- -------------------------------------------------------- -- -- Table structure for table `loginattempts` -- CREATE TABLE IF NOT EXISTS `loginattempts` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `ip` varchar(64) NOT NULL DEFAULT '', `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `banned` enum('yes','no') NOT NULL DEFAULT 'no', `attempts` smallint(5) unsigned NOT NULL DEFAULT '0', `type` enum('login','recover') NOT NULL DEFAULT 'login', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `loginattempts` -- -- -------------------------------------------------------- -- -- Table structure for table `media` -- CREATE TABLE IF NOT EXISTS `media` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ; -- -- Dumping data for table `media` -- INSERT INTO `media` (`id`, `name`, `sort_index`) VALUES (1, 'Blu-ray', 0), (2, 'HD DVD', 1), (4, 'MiniBD', 4), (5, 'HDTV', 5), (6, 'DVDR', 6), (7, 'Encode', 3), (3, 'Remux', 2), (8, 'CD', 7), (9, 'Track', 9); -- -------------------------------------------------------- -- -- Table structure for table `messages` -- CREATE TABLE IF NOT EXISTS `messages` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `sender` mediumint(8) unsigned NOT NULL DEFAULT '0', `receiver` mediumint(8) unsigned NOT NULL DEFAULT '0', `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `subject` varchar(128) NOT NULL DEFAULT '', `msg` text, `unread` enum('yes','no') NOT NULL DEFAULT 'yes', `location` smallint(6) NOT NULL DEFAULT '1', `saved` enum('no','yes') NOT NULL DEFAULT 'no', PRIMARY KEY (`id`), KEY `receiver` (`receiver`), KEY `sender` (`sender`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `messages` -- -- -------------------------------------------------------- -- -- Table structure for table `modpanel` -- CREATE TABLE IF NOT EXISTS `modpanel` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(128) NOT NULL DEFAULT '', `url` varchar(255) NOT NULL DEFAULT '', `info` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1020 ; -- -- Dumping data for table `modpanel` -- INSERT INTO `modpanel` (`id`, `name`, `url`, `info`) VALUES (1, 'Abnormal Upload Speed Detector', 'cheaters.php', 'See cheaters'), (2, 'Duplicate IP Check', 'ipcheck.php', 'Check for Duplicate IP Users'), (3, 'All Clients (currently)', 'allagents.php', 'Show All Clients (currently downloading/uploading/seeding)'), (4, 'Ad management', 'admanage.php', 'Manage ads at your site'), (5, 'Uploaders', 'uploaders.php', 'See uploaders stats'), (6, 'Stats', 'stats.php', 'Tracker Stats'), (7, 'IP Test', 'testip.php', 'Test if IP is banned'), (8, 'Add Bonus Points', 'amountbonus.php', 'Add Bonus Points to one or All Users.'), (9, 'Clear cache', 'clearcache.php', 'Clear cache of memcached'); -- -------------------------------------------------------- -- -- Table structure for table `news` -- CREATE TABLE IF NOT EXISTS `news` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `body` text, `title` varchar(255) NOT NULL DEFAULT '', `notify` enum('yes','no') NOT NULL DEFAULT 'no', PRIMARY KEY (`id`), KEY `added` (`added`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `news` -- -- -------------------------------------------------------- -- -- Table structure for table `offers` -- CREATE TABLE IF NOT EXISTS `offers` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `name` varchar(225) NOT NULL, `descr` text, `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `allowedtime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `yeah` smallint(5) unsigned NOT NULL DEFAULT '0', `against` smallint(5) unsigned NOT NULL DEFAULT '0', `category` smallint(5) unsigned NOT NULL DEFAULT '0', `comments` mediumint(8) unsigned NOT NULL DEFAULT '0', `allowed` enum('allowed','pending','denied') NOT NULL DEFAULT 'pending', PRIMARY KEY (`id`), KEY `userid` (`userid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `offers` -- -- -------------------------------------------------------- -- -- Table structure for table `offervotes` -- CREATE TABLE IF NOT EXISTS `offervotes` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `offerid` mediumint(8) unsigned NOT NULL DEFAULT '0', `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `vote` enum('yeah','against') NOT NULL DEFAULT 'yeah', PRIMARY KEY (`id`), KEY `userid` (`userid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `offervotes` -- -- -------------------------------------------------------- -- -- Table structure for table `overforums` -- CREATE TABLE IF NOT EXISTS `overforums` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL, `description` varchar(255) NOT NULL DEFAULT '', `minclassview` tinyint(3) unsigned NOT NULL DEFAULT '0', `sort` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `overforums` -- -- -------------------------------------------------------- -- -- Table structure for table `peers` -- CREATE TABLE IF NOT EXISTS `peers` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `torrent` mediumint(8) unsigned NOT NULL DEFAULT '0', `peer_id` binary(20) NOT NULL, `ip` varchar(64) NOT NULL DEFAULT '', `port` smallint(5) unsigned NOT NULL DEFAULT '0', `uploaded` bigint(20) unsigned NOT NULL DEFAULT '0', `downloaded` bigint(20) unsigned NOT NULL DEFAULT '0', `to_go` bigint(20) unsigned NOT NULL DEFAULT '0', `seeder` enum('yes','no') NOT NULL DEFAULT 'no', `started` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `last_action` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `prev_action` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `connectable` enum('yes','no') NOT NULL DEFAULT 'yes', `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `agent` varchar(60) NOT NULL DEFAULT '', `finishedat` int(10) unsigned NOT NULL DEFAULT '0', `downloadoffset` bigint(20) unsigned NOT NULL DEFAULT '0', `uploadoffset` bigint(20) unsigned NOT NULL DEFAULT '0', `passkey` char(32) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `userid` (`userid`), KEY `torrent` (`torrent`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED AUTO_INCREMENT=1 ; -- -- Dumping data for table `peers` -- -- -------------------------------------------------------- -- -- Table structure for table `pmboxes` -- CREATE TABLE IF NOT EXISTS `pmboxes` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `userid` mediumint(8) unsigned NOT NULL, `boxnumber` tinyint(3) unsigned NOT NULL DEFAULT '2', `name` varchar(15) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `pmboxes` -- -- -------------------------------------------------------- -- -- Table structure for table `pollanswers` -- CREATE TABLE IF NOT EXISTS `pollanswers` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `pollid` mediumint(8) unsigned NOT NULL, `userid` mediumint(8) unsigned NOT NULL, `selection` tinyint(3) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `pollid` (`pollid`), KEY `selection` (`selection`), KEY `userid` (`userid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `pollanswers` -- -- -------------------------------------------------------- -- -- Table structure for table `polls` -- CREATE TABLE IF NOT EXISTS `polls` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `question` varchar(255) NOT NULL DEFAULT '', `option0` varchar(40) NOT NULL DEFAULT '', `option1` varchar(40) NOT NULL DEFAULT '', `option2` varchar(40) NOT NULL DEFAULT '', `option3` varchar(40) NOT NULL DEFAULT '', `option4` varchar(40) NOT NULL DEFAULT '', `option5` varchar(40) NOT NULL DEFAULT '', `option6` varchar(40) NOT NULL DEFAULT '', `option7` varchar(40) NOT NULL DEFAULT '', `option8` varchar(40) NOT NULL DEFAULT '', `option9` varchar(40) NOT NULL DEFAULT '', `option10` varchar(40) NOT NULL DEFAULT '', `option11` varchar(40) NOT NULL DEFAULT '', `option12` varchar(40) NOT NULL DEFAULT '', `option13` varchar(40) NOT NULL DEFAULT '', `option14` varchar(40) NOT NULL DEFAULT '', `option15` varchar(40) NOT NULL DEFAULT '', `option16` varchar(40) NOT NULL DEFAULT '', `option17` varchar(40) NOT NULL DEFAULT '', `option18` varchar(40) NOT NULL DEFAULT '', `option19` varchar(40) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `polls` -- -- -------------------------------------------------------- -- -- Table structure for table `posts` -- CREATE TABLE IF NOT EXISTS `posts` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `topicid` mediumint(8) unsigned NOT NULL DEFAULT '0', `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `body` text, `ori_body` text, `editedby` mediumint(8) unsigned NOT NULL DEFAULT '0', `editdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `userid` (`userid`), KEY `topicid_id` (`topicid`,`id`), KEY `added` (`added`), FULLTEXT KEY `body` (`body`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `posts` -- -- -------------------------------------------------------- -- -- Table structure for table `processings` -- CREATE TABLE IF NOT EXISTS `processings` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; -- -- Dumping data for table `processings` -- INSERT INTO `processings` (`id`, `name`, `sort_index`) VALUES (1, 'Raw', 0), (2, 'Encode', 0); -- -------------------------------------------------------- -- -- Table structure for table `prolinkclicks` -- CREATE TABLE IF NOT EXISTS `prolinkclicks` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `ip` varchar(64) NOT NULL DEFAULT '', `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `prolinkclicks` -- -- -------------------------------------------------------- -- -- Table structure for table `readposts` -- CREATE TABLE IF NOT EXISTS `readposts` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `topicid` mediumint(8) unsigned NOT NULL DEFAULT '0', `lastpostread` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `topicid` (`topicid`), KEY `userid` (`userid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `readposts` -- -- -------------------------------------------------------- -- -- Table structure for table `regimages` -- CREATE TABLE IF NOT EXISTS `regimages` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `imagehash` varchar(32) NOT NULL DEFAULT '', `imagestring` varchar(8) NOT NULL DEFAULT '', `dateline` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `regimages` -- -- -------------------------------------------------------- -- -- Table structure for table `reports` -- CREATE TABLE IF NOT EXISTS `reports` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `addedby` mediumint(8) unsigned NOT NULL DEFAULT '0', `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `reportid` int(10) unsigned NOT NULL DEFAULT '0', `type` enum('torrent','user','offer','request','post','comment','subtitle') NOT NULL DEFAULT 'torrent', `reason` varchar(255) NOT NULL DEFAULT '', `dealtby` mediumint(8) unsigned NOT NULL DEFAULT '0', `dealtwith` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `reports` -- -- -------------------------------------------------------- -- -- Table structure for table `rules` -- CREATE TABLE IF NOT EXISTS `rules` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `lang_id` smallint(5) unsigned NOT NULL DEFAULT '6', `title` varchar(255) NOT NULL, `text` text, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=56 ; -- -- Dumping data for table `rules` -- INSERT INTO `rules` (`id`, `lang_id`, `title`, `text`) VALUES (1, 25, '总则 - 不遵守这些将导致帐号被封!', '[*]请不要做管理员明文禁止的事情。\r\n[*]不允许发送垃圾信息。\r\n[*]账号保留规则:\r\n 1.[b]Veteran User[/b]及以上等级用户会永远保留;\r\n 2.[b]Elite User[/b]及以上等级用户封存账号(在[url=usercp.php?action=personal]控制面板[/url])后不会被删除帐号;\r\n 3.封存账号的用户连续400天不登录将被删除帐号;\r\n 4.未封存账号的用户连续150天不登录将被删除帐号;\r\n 5.没有流量的用户(即上传/下载数据都为0)连续100天不登录将被删除帐号。\r\n[*]一切作弊的帐号会被封,请勿心存侥幸。\r\n[*]注册多个[site]账号的用户将被禁止。\r\n[*]不要把本站的种子文件上传到其他Tracker!(具体请看[url=faq.php#38][b]常见问题[/b][/url])\r\n[*]第一次在论坛或服务器中的捣乱行为会受到警告,第二次您将永远无缘[site] 。'), (2, 25, '下载规则 - 违规将会失去下载权限!', '[*]过低的分享率会导致严重的后果,包括禁止帐号。详见[url=faq.php#22]常见问题[/url]。\r\n[*]种子促销规则:\r\n [*]随机促销(种子上传后系统自动随机设为促销):\r\n [*]10%的概率成为“[color=#7c7ff6][b]50%下载[/b][/color]”;\r\n [*]5%的概率成为“[color=#f0cc00][b]免费[/b][/color]”;\r\n [*]5%的概率成为“[color=#aaaaaa][b]2x上传[/b][/color]”;\r\n [*]3%的概率成为“[color=#7ad6ea][b]50%下载&2x上传[/b][/color]”;\r\n [*]1%的概率成为“[color=#99cc66][b]免费&2x上传[/b][/color]”。\r\n [*]文件总体积大于20GB的种子将自动成为“[color=#f0cc00][b]免费[/b][/color]”。\r\n [*]Blu-ray Disk, HD DVD原盘将成为“[color=#f0cc00][b]免费[/b][/color]”。\r\n [*]电视剧等每季的第一集将成为“[color=#f0cc00][b]免费[/b][/color]”。\r\n [*]关注度高的种子将被设置为促销(由管理员定夺)。\r\n [*]促销时限:\r\n [*]除了“[color=#aaaaaa][b]2x上传[/b][/color]”以外,其余类型的促销限时7天(自种子发布时起);\r\n [*]“[color=#aaaaaa][b]2x上传[/b][/color]”无时限。\r\n [*]所有种子在发布1个月后将自动永久成为“[color=#aaaaaa][b]2x上传[/b][/color]”。 \r\n [*]我们也将不定期开启全站[color=#f0cc00][b]免费[/b][/color],届时尽情狂欢吧~:mml: :mml: :mml:\r\n[*]你只能使用允许的BT客户端下载本站资源。详见[url=faq.php#29]常见问题[/url]。'), (4, 25, '论坛总则 - 请遵循以下的守则,违规会受到警告!', '[*]禁止攻击、挑动他人的言辞。\r\n[*]禁止恶意灌水或发布垃圾信息。请勿在论坛非Water Jar版块发布无意义主题或回复(如纯表情)等。\r\n[*]不要为了获取魔力值而大肆灌水。\r\n[*]禁止在标题或正文使用脏话。\r\n[*]不要讨论禁忌、政治敏感或当地法律禁止的话题。\r\n[*]禁止任何基于种族、国家、民族、肤色、宗教、性别、年龄、性取向、身体或精神障碍的歧视性言辞。违规将导致账号永久性禁用。\r\n[*]禁止挖坟(所有挖坟帖都要被删掉)。\r\n[*]禁止重复发帖。\r\n[*]请确保问题发布在相对应的板块。\r\n[*]365天无新回复的主题将被系统自动锁定.\r\n'), (6, 25, '头像使用规定 - 请尽量遵守以下规则', '[*]允许的格式为.gif, .jpg, 和.png。\r\n[*]图片大小不能超过150KB,为了统一,系统会调整头像宽度到150像素大小(浏览器会把图片调整成合适的大小,小图片将被拉伸,而过大的图片只会浪费带宽和CPU) 。\r\n[*]请不要使用可能引起别人反感的图片,包括色情、宗教、血腥的动物/人类、宣扬某种意识形态的图片。如果你不确定某张图片是否合适,请站短管理员。'), (3, 25, '上传规则 - 谨记: 违规的种子将不经提醒而直接删除 ', '请遵守规则。如果你对规则有任何不清楚或不理解的地方,请[url=contactstaff.php]咨询管理组[/url]。[b]管理组保留裁决的权力。[/b]\r\n\r\n[b]上传总则[/b]\r\n [*]上传者必须对上传的文件拥有合法的传播权。\r\n [*]上传者必须保证上传速度与做种时间。如果在其他人完成前撤种或做种时间不足24小时,或者故意低速上传,上传者将会被警告甚至取消上传权限。\r\n [*]对于自己发布的种子,发布者将获得双倍的上传量。\r\n [*]如果你有一些违规但却有价值的资源,请将详细情况[url=contactstaff.php]告知管理组[/url],我们可能破例允许其发布。\r\n\r\n[b]上传者资格[/b]\r\n [*]任何人都能发布资源。\r\n [*]不过,有些用户需要先在[url=offers.php]候选区[/url]提交候选。详见常见问题中的[url=faq.php#22]相关说明[/url]。\r\n [*]对于游戏类资源,只有[color=#DC143C][b]上传员[/b][/color]及以上等级的用户,或者是管理组特别指定的用户,才能自由上传。其他用户必须先在[url=offers.php]候选区[/url]提交候选。\r\n\r\n[b]允许的资源和文件:[/b]\r\n [*]高清(HD)视频,包括\r\n [*]完整高清媒介,如蓝光(Blu-ray)原碟、HD DVD原碟等,或remux,\r\n [*]HDTV流媒体,\r\n [*]来源于上述媒介的高清重编码(至少为720p标准),\r\n [*]其他高清视频,如高清DV;\r\n [*]标清(SD)视频,只能是\r\n [*]来源于高清媒介的标清重编码(至少为480p标准);\r\n [*]DVDR/DVDISO,\r\n [*]DVDRip、CNDVDRip;\r\n [*]无损音轨(及相应cue表单),如FLAC、Monkey''s Audio等;\r\n [*]5.1声道或以上标准的电影音轨、音乐音轨(DTS、DTSCD镜像等),评论音轨;\r\n [*]PC游戏(必须为原版光盘镜像);\r\n [*]7日内发布的高清预告片;\r\n [*]与高清相关的软件和文档。\r\n\r\n[b]不允许的资源和文件:[/b]\r\n [*]总体积小于100MB的资源;\r\n [*]标清视频upscale或部分upscale而成的视频文件;\r\n [*]属于标清级别但质量较差的视频文件,包括CAM、TC、TS、SCR、DVDSCR、R5、R5.Line、HalfCD等;\r\n [*]RealVideo编码的视频(通常封装于RMVB或RM)、flv文件;\r\n [*]单独的样片(样片请和正片一起上传);\r\n [*]未达到5.1声道标准的有损音频文件,如常见的有损MP3、有损WMA等;\r\n [*]无正确cue表单的多轨音频文件;\r\n [*]硬盘版、高压版的游戏资源,非官方制作的游戏镜像,第三方mod,小游戏合集,单独的游戏破解或补丁;\r\n [*]RAR等压缩文件;\r\n [*]重复(dupe)的资源(判定规则见下文);\r\n [*]涉及禁忌或敏感内容(如色情、敏感政治话题等)的资源;\r\n [*]损坏的文件,指在读取或回放过程中出现错误的文件;\r\n [*]垃圾文件,如病毒、木马、网站链接、广告文档、种子中包含的种子文件等,或无关文件。\r\n\r\n[b]重复(dupe)判定规则:质量重于数量[/b]\r\n [*]视频资源按来源媒介确定优先级,主要为:Blu-ray/HD DVD > HDTV > DVD > TV。同一视频高优先级版本将使低优先级版本被判定为重复。\r\n [*]同一视频的高清版本将使标清版本被判定为重复。\r\n [*]对于动漫类视频资源,HDTV版本和DVD版本有相同的优先级,这是一个特例。\r\n [*]来源于相同媒介,相同分辨率水平的高清视频重编码\r\n [*]参考“[url=forums.php?action=viewtopic&forumid=6&topicid=1520]Scene & Internal, from Group to Quality-Degree. ONLY FOR HD-resources[/url]”按发布组确定优先级;\r\n [*]高优先级发布组发布的版本将使低优先级或相同优先级发布组发布的其他版本被判定为重复;\r\n [*]但是,总会保留一个当前最佳画质的来源经重编码而成的DVD5大小(即4.38 GB左右)的版本;\r\n [*]基于无损截图对比,高质量版本将使低质量版本被视为重复。\r\n [*]来自其他区域,包含不同配音和/或字幕的blu-ray/HD DVD原盘版本不被视为重复版本。\r\n [*]每个无损音轨资源原则上只保留一个版本,其余不同格式的版本将被视为重复。分轨FLAC格式有最高的优先级。\r\n [*]对于站内已有的资源,\r\n [*]如果新版本没有旧版本中已确认的错误/画质问题,或新版本的来源有更好的质量,新版本允许发布且旧版本将被视为重复;\r\n [*]如果旧版本已经连续断种45日以上或已经发布18个月以上,发布新版本将不受重复判定规则约束。\r\n [*]新版本发布后,旧的、重复的版本将被保留,直至断种。\r\n\r\n[b]资源打包规则(试行)[/b]\r\n 原则上只允许以下资源打包:\r\n [*]按套装售卖的高清电影合集(如[i]The Ultimate Matrix Collection Blu-ray Box[/i]);\r\n [*]整季的电视剧/综艺节目/动漫;\r\n [*]同一专题的纪录片;\r\n [*]7日内的高清预告片;\r\n [*]同一艺术家的MV\r\n [*]标清MV只允许按DVD打包,且不允许单曲MV单独发布;\r\n [*]分辨率相同的高清MV;\r\n [*]同一艺术家的音乐\r\n [*]5张或5张以上专辑方可打包发布;\r\n [*]两年内发售的专辑可以单独发布;\r\n [*]打包时应剔除站内已有的资源,或者将它们都包括进来;\r\n [*]分卷发售的动漫剧集、角色歌、广播剧等;\r\n [*]发布组打包发布的资源。\r\n 打包发布的视频资源必须来源于相同类型的媒介(如蓝光原碟),有相同的分辨率水平(如720p),编码格式一致(如x264),但预告片例外。对于电影合集,发布组也必须统一。打包发布的音频资源必须编码格式一致(如全部为分轨FLAC)。打包发布后,将视情况删除相应单独的种子。\r\n 如果你对资源打包有任何不明确的地方,请[url=contactstaff.php]咨询管理组[/url]。管理组保留资源打包相关问题的解释权和处理权。\r\n\r\n[b]例外[/b]\r\n [*]允许发布来源于TV或是DSR的体育类的标清视频。\r\n [*]允许发布小于100MB的高清相关软件和文档。\r\n [*]允许发布小于100MB的单曲专辑。\r\n [*]允许发布2.0声道或以上标准的国语/粤语音轨。\r\n [*]允许在发布的资源中附带字幕、游戏破解与补丁、字体、包装等的扫描图。上述几种文件必须统一打包或统一不打包。\r\n [*]允许在发布音轨时附带附赠DVD的相关文件。\r\n\r\n[b]种子信息[/b]\r\n 所有种子都应该有描述性的标题,必要的介绍以及其他信息。以下是一份简明的规范,完整的、详尽的规范请参阅“[url=forums.php?action=viewtopic&topicid=3438&page=0#56711]种子信息填写规范与指导[/url]”。\r\n [*]标题\r\n [*]电影:[i][中文名] 名称 [年份] [剪辑版本] [发布说明] 分辨率 来源 [音频/]视频编码-发布组名称[/i]\r\n 例:[i]蝙蝠侠:黑暗骑士 The Dark Knight 2008 PROPER 720p BluRay x264-SiNNERS[/i]\r\n [*]电视剧:[i][中文名] 名称 [年份] S**E** [发布说明] 分辨率 来源 [音频/]视频编码-发布组名称[/i]\r\n 例:[i]越狱 Prison Break S04E01 PROPER 720p HDTV x264-CTU[/i]\r\n [*]音轨:[i][中文艺术家名 - 中文专辑名] 艺术家名 - 专辑名 [年份] [版本] [发布说明] 音频编码[-发布组名称][/i]\r\n 例:[i]恩雅 - 冬季降临 Enya - And Winter Came 2008 FLAC[/i]\r\n [*]游戏:[i][中文名] 名称 [年份] [版本] [发布说明][-发布组名称][/i]\r\n 例:[i]红色警戒3:起义时刻 Command And Conquer Red Alert 3 Uprising-RELOADED[/i]\r\n [*]副标题\r\n [*]不要包含广告或求种/续种请求。\r\n [*]外部信息\r\n [*]电影和电视剧必须包含外部信息链接(如IMDb连接)地址(如果存在的话)。\r\n [*]简介\r\n [*]NFO图请写入NFO文件,而不是粘贴到简介里。\r\n [*]电影、电视剧、动漫:\r\n [*]必须包含海报、横幅或BD/HDDVD/DVD封面(如果存在的话); \r\n [*]请尽可能包含画面截图或其缩略图和链接;\r\n [*]请尽可能包含文件的详细情况,包括格式、时长、编码、码率、分辨率、语言、字幕等;\r\n [*]请尽可能包含演职员名单以及剧情概要。\r\n [*]体育节目:\r\n [*]请勿在文字介绍或截图/文件名/文件大小/时长中泄漏比赛结果。\r\n [*]音乐:\r\n [*]必须包含专辑封面和曲目列表(如果存在的话);\r\n [*]PC游戏:\r\n [*]必须包含海报或BD/HDDVD/DVD封面(如果存在的话);\r\n [*]请尽可能包含画面截图或其缩略图和链接。\r\n [*]杂项\r\n [*]请正确选择资源的类型和质量信息。\r\n [*]注意事项\r\n [*]管理员会根据规范对种子信息进行编辑。\r\n [*]请勿改变或去除管理员对种子信息作出的修改(但上传者可以修正一些错误)。\r\n [*]种子信息不符合规范的种子可能会被删除,视种子信息的规范程度而定。\r\n [*]如果资源的原始发布信息基本符合规范,请尽量使用原始发布信息。\r\n'), (8, 25, '管理守则 - 请慎用你的权限!', '[*]最重要的一条:慎用你手中的权限!\r\n[*]对于违规行为不要怕说“不”!\r\n[*]不要公开和其他管理员冲突,一切通过私下沟通解决。\r\n[*]不要太绝情,给违规者一个改过的机会。\r\n[*]不要试图“打预防针”,等到人们犯错了再去纠正。\r\n[*]尝试去改正一个不适当的帖而不是简单的关闭它。\r\n[*]多尝试移动帖子到适合的版面而不是简单地锁帖。\r\n[*]当处理版聊帖的时候要宽容适度。\r\n[*]锁帖的时候请给予简单的操作理由。\r\n[*]在屏蔽某个用户前请先站短通知他/她, 如果有所积极回应可以考虑再给2周观察期。\r\n[*]不要禁用一个注册尚未满4周的帐户。\r\n[*]永远记得以理服人。'), (12, 28, '下載規則 - 違規將會失去下載權限! ', '[*]過低的分享率會導致嚴重的后果,包括禁止帳號。詳見[url=faq.php#22]常見問題[/url]。\r\n[*]種子促銷規則:\r\n [*]隨機促銷(種子上傳後系統自動隨機設為促銷):\r\n [*]10%的概率成為“[color=#7c7ff6][b]50%下載[/b][/color]”;\r\n [*]5%的概率成為“[color=#f0cc00][b]免費[/b][/color]”;\r\n [*]5%的概率成為“[color=#aaaaaa][b]2x上傳[/b][/color]”;\r\n [*]3%的概率成為“[color=#7ad6ea][b]50%下載&2x上傳[/b][/color]”;\r\n [*]1%的概率成為“[color=#99cc66][b]免費&2x上傳[/b][/color]”。\r\n [*]檔總體積大於20GB的種子將自動成為“[color=#f0cc00][b]免費[/b][/color]”。\r\n [*]Blu-ray Disk, HD DVD原盤將成為“[color=#f0cc00][b]免費[/b][/color]”。\r\n [*]電視劇等每季的第一集將成為“[color=#f0cc00][b]免費[/b][/color]”。\r\n [*]關注度高的種子將被設置為促銷(由管理員定奪)。\r\n [*]促銷時限:\r\n [*]除了“[color=#aaaaaa][b]2x上傳[/b][/color]”以外,其餘類型的促銷限時7天(自種子發佈時起);\r\n [*]“[color=#aaaaaa][b]2x上傳[/b][/color]”無時限。\r\n [*]所有種子在發佈1個月後將自動永久成為“[color=#aaaaaa][b]2x上傳[/b][/color]”。 \r\n [*]我們也將不定期開啟全站[color=#f0cc00][b]免費[/b][/color],屆時盡情狂歡吧~:mml: :mml: :mml:\r\n[*]你只能使用允許的BT客戶端下載本站資源。詳見[url=faq.php#29]常見問題[/url]。'), (14, 28, '論壇總則 - 請遵循以下的守則,違規會受到警告! ', '[*]禁止攻擊、挑動他人的言辭。\r\n[*]禁止惡意灌水或發布垃圾信息。請勿在論壇非Water Jar版塊發布無意義主題或回復(如純表情)等。\r\n[*]不要為了獲取魔力值而大肆灌水。\r\n[*]禁止在標題或正文使用臟話。\r\n[*]不要討論禁忌、政治敏感或當地法律禁止的話題。\r\n[*]禁止任何基于種族、國家、民族、膚色、宗教、性別、年齡、性取向、身體或精神障礙的歧視性言辭。違規將導致賬號永久性禁用。\r\n[*]禁止挖墳(所有挖墳帖都要被刪掉)。\r\n[*]禁止重復發帖。\r\n[*]請確保問題發布在相對應的板塊。\r\n[*]365天無新回復的主題將被系統自動鎖定。'), (5, 25, '评论总则 - 永远尊重上传者!', '[*]无论如何,请尊重上传者!\r\n[*]所有论坛发帖的规则同样适用于评论。\r\n[*]如果你没有下载的意向,请不要随便发表否定性的评论。'), (16, 28, '頭像使用規定 - 請盡量遵守以下規則 ', '[*]允許的格式為.gif, .jpg, 和.png。\r\n[*]圖片大小不能超過150KB,為了統一,系統會調整頭像寬度到150像素大小(瀏覽器會把圖片調整成合適的大小,小圖片將被拉伸,而過大的圖片只會浪費帶寬和CPU) 。\r\n[*]請不要使用可能引起別人反感的圖片,包括色情、宗教、血腥的動物/人類、宣揚某種意識形態的圖片。如果你不確定某張圖片是否合適,請站短管理員。\r\n'), (7, 25, '趣味盒规则 - 在娱乐中赚分', '[*]任何用户都可在趣味盒中投放笑话、趣图、搞笑视频、Flash等有趣的内容,除了色情、禁忌、政治敏感和当地法律禁止的内容。\r\n[*]正常情况下,一条趣味内容在发布24小时后过期。然而,如果获得的投票数超过20且其中“有趣”的比例低于25%,趣味内容将提前过期。\r\n[*]新的趣味内容[b]只有[/b]在旧的内容过期后才能提交。\r\n[*]若趣味内容被多数用户投票认为有趣,其发布者将得到以下奖励:\r\n [*]票数超过25,其中认为“有趣”比例超过50%,发布者得到5个魔力值。\r\n [*]票数超过50,其中认为“有趣”比例超过50%,发布者得到另外的5个魔力值。\r\n [*]票数超过100,其中认为“有趣”比例超过50%,发布者得到另外的5个魔力值。\r\n [*]票数超过200,其中认为“有趣”比例超过50%,发布者得到另外的5个魔力值。\r\n [*]票数超过25,其中认为“有趣”比例超过75%,发布者得到10个魔力值。\r\n [*]票数超过50,其中认为“有趣”比例超过75%,发布者得到另外的10个魔力值。\r\n [*]票数超过100,其中认为“有趣”比例超过75%,发布者得到另外的10个魔力值。\r\n [*]票数超过200,其中认为“有趣”比例超过75%,发布者得到另外的10个魔力值。'), (11, 28, '總則 - 不遵守這些將導致帳號被封! ', '[*]請不要做管理員明文禁止的事情。\r\n[*]不允許發送垃圾信息。\r\n[*]賬號保留規則:\r\n 1.[b]Veteran User[/b]及以上等級用戶會永遠保留;\r\n 2.[b]Elite User[/b]及以上等級用戶封存賬號(在[url=usercp.php?action=personal]控制面板[/url])后不會被刪除帳號;\r\n 3.封存賬號的用戶連續400天不登錄將被刪除帳號;\r\n 4.未封存賬號的用戶連續150天不登錄將被刪除帳號;\r\n 5.沒有流量的用戶(即上傳/下載數據都為0)連續100天不登錄將被刪除帳號。\r\n[*]一切作弊的帳號會被封,請勿心存僥幸。\r\n[*]注冊多個[site]賬號的用戶將匾被禁止。\r\n[*]不要把本站的種子文件上傳到其他Tracker!(具體請看 [url=faq.php#38][b]常見問題[/b][/url])\r\n[*]第一次在論壇或服務器中的搗亂行為會受到警告,第二次您將永遠無緣[site] 。'), (13, 28, '上傳規則 - 謹記: 違規的種子將不經提醒而直接刪除 ', '請遵守規則。如果你對規則有任何不清楚或不理解的地方,請[url=contactstaff.php]諮詢管理組[/url]。[b]管理組保留裁決的權力。[/b]\r\n\r\n[b]上傳總則[/b]\r\n [*]上傳者必須對上傳的檔擁有合法的傳播權。\r\n [*]上傳者必須保證上傳速度與做種時間。如果在其他人完成前撤種或做種時間不足24小時,或者故意低速上傳,上傳者將會被警告甚至取消上傳許可權。\r\n [*]對於自己發佈的種子,發佈者將獲得雙倍的上傳量。\r\n [*]如果你有一些違規但卻有價值的資源,請將詳細情況[url=contactstaff.php]告知管理組[/url],我們可能破例允許其發佈。\r\n\r\n[b]上傳者資格[/b]\r\n [*]任何人都能發佈資源。\r\n [*]不過,有些使用者需要先在[url=offers.php]候選區[/url]提交候選。詳見常見問題中的[url=faq.php#22]相關說明[/url]。\r\n [*]對於遊戲類資源,只有[color=#DC143C][b]上傳員[/b][/color]及以上等級的使用者,或者是管理組特別指定的用戶,才能自由上傳。其他用戶必須先在[url=offers.php]候選區[/url]提交候選。\r\n\r\n[b]允許的資源和檔:[/b]\r\n [*]高清(HD)視頻,包括\r\n [*]完整高清媒介,如藍光(Blu-ray)原碟、HD DVD原碟等,或remux,\r\n [*]HDTV流媒體,\r\n [*]來源於上述媒介的高清重編碼(至少為720p標準),\r\n [*]其他高清視頻,如高清DV;\r\n [*]標清(SD)視頻,只能是\r\n [*]來源於高清媒介的標清重編碼(至少為480p標準);\r\n [*]DVDR/DVDISO,\r\n [*]DVDRip、CNDVDRip;\r\n [*]無損音軌(及相應cue表單),如FLAC、Monkey''s Audio等;\r\n [*]5.1聲道或以上標準的電影音軌、音樂音軌(DTS、DTSCD鏡像等),評論音軌;\r\n [*]PC遊戲(必須為原版光碟鏡像);\r\n [*]7日內發佈的高清預告片;\r\n [*]與高清相關的軟體和文檔。\r\n\r\n[b]不允許的資源和檔:[/b]\r\n [*]總體積小於100MB的資源;\r\n [*]標清視頻upscale或部分upscale而成的視頻檔;\r\n [*]屬於標清級別但品質較差的視頻檔,包括CAM、TC、TS、SCR、DVDSCR、R5、R5.Line、HalfCD等;\r\n [*]RealVideo編碼的視頻(通常封裝於RMVB或RM)、flv檔;\r\n [*]單獨的樣片(樣片請和正片一起上傳);\r\n [*]未達到5.1聲道標準的有損音訊檔,如常見的有損MP3、有損WMA等;\r\n [*]無正確cue表單的多軌音訊檔;\r\n [*]硬碟版、高壓版的遊戲資源,非官方製作的遊戲鏡像,協力廠商mod,小遊戲合集,單獨的遊戲破解或補丁;\r\n [*]RAR等壓縮檔;\r\n [*]重複(dupe)的資源(判定規則見下文);\r\n [*]涉及禁忌或敏感內容(如色情、敏感政治話題等)的資源;\r\n [*]損壞的檔,指在讀取或重播過程中出現錯誤的檔;\r\n [*]垃圾檔,如病毒、木馬、網站連結、廣告文檔、種子中包含的種子檔等,或無關檔。\r\n\r\n[b]重複(dupe)判定規則:品質重於數量[/b]\r\n [*]視頻資源按來源媒介確定優先順序,主要為:Blu-ray/HD DVD > HDTV > DVD > TV。同一視頻高優先順序版本將使低優先順序版本被判定為重複。\r\n [*]同一視頻的高清版本將使標清版本被判定為重複。\r\n [*]對於動漫類視頻資源,HDTV版本和DVD版本有相同的優先順序,這是一個特例。\r\n [*]來源於相同媒介,相同解析度水準的高清視頻重編碼\r\n [*]參考“[url=forums.php?action=viewtopic&forumid=6&topicid=1520]Scene & Internal, from Group to Quality-Degree. ONLY FOR HD-resources[/url]”按發佈組確定優先順序;\r\n [*]高優先順序發佈組發佈的版本將使低優先順序或相同優先順序發佈組發佈的其他版本被判定為重複;\r\n [*]但是,總會保留一個當前最佳畫質的來源經重編碼而成的DVD5大小(即4.38 GB左右)的版本;\r\n [*]基於無損截圖對比,高品質版本將使低品質版本被視為重複。\r\n [*]來自其他區域,包含不同配音和/或字幕的blu-ray/HD DVD原盤版本不被視為重複版本。\r\n [*]每個無損音軌資源原則上只保留一個版本,其餘不同格式的版本將被視為重複。分軌FLAC格式有最高的優先順序。\r\n [*]對於站內已有的資源,\r\n [*]如果新版本沒有舊版本中已確認的錯誤/畫質問題,或新版本的來源有更好的品質,新版本允許發佈且舊版本將被視為重複;\r\n [*]如果舊版本已經連續斷種45日以上或已經發佈18個月以上,發佈新版本將不受重複判定規則約束。\r\n [*]新版本發佈後,舊的、重複的版本將被保留,直至斷種。\r\n\r\n[b]資源打包規則(試行)[/b]\r\n 原則上只允許以下資源打包:\r\n [*]按套裝售賣的高清電影合集(如[i]The Ultimate Matrix Collection Blu-ray Box[/i]);\r\n [*]整季的電視劇/綜藝節目/動漫;\r\n [*]同一專題的紀錄片;\r\n [*]7日內的高清預告片;\r\n [*]同一藝術家的MV\r\n [*]標清MV只允許按DVD打包,且不允許單曲MV單獨發佈;\r\n [*]解析度相同的高清MV;\r\n [*]同一藝術家的音樂\r\n [*]5張或5張以上專輯方可打包發佈;\r\n [*]兩年內發售的專輯可以單獨發佈;\r\n [*]打包時應剔除站內已有的資源,或者將它們都包括進來;\r\n [*]分卷發售的動漫劇集、角色歌、廣播劇等;\r\n [*]發佈組打包發佈的資源。\r\n 打包發佈的視頻資源必須來源於相同類型的媒介(如藍光原碟),有相同的解析度水準(如720p),編碼格式一致(如x264),但預告片例外。對於電影合集,發佈組也必須統一。打包發佈的音訊資源必須編碼格式一致(如全部為分軌FLAC)。打包發佈後,將視情況刪除相應單獨的種子。\r\n 如果你對資源打包有任何不明確的地方,請[url=contactstaff.php]諮詢管理組[/url]。管理組保留資源打包相關問題的解釋權和處理權。\r\n\r\n[b]例外[/b]\r\n [*]允許發佈來源於TV或是DSR的體育類的標清視頻。\r\n [*]允許發佈小於100MB的高清相關軟體和文檔。\r\n [*]允許發佈小於100MB的單曲專輯。\r\n [*]允許發佈2.0聲道或以上標準的國語/粵語音軌。\r\n [*]允許在發佈的資源中附帶字幕、遊戲破解與補丁、字體、包裝等的掃描圖。上述幾種檔必須統一打包或統一不打包。\r\n [*]允許在發佈音軌時附帶附贈DVD的相關檔。\r\n\r\n[b]種子資訊[/b]\r\n 所有種子都應該有描述性的標題,必要的介紹以及其他資訊。以下是一份簡明的規範,完整的、詳盡的規範請參閱“[url=forums.php?action=viewtopic&topicid=3438&page=0#56711]種子資訊填寫規範與指導[/url]”。\r\n [*]標題\r\n [*]電影:[i][中文名] 名稱 [年份] [剪輯版本] [發佈說明] 解析度 來源 [音訊/]視頻編碼-發佈組名稱[/i]\r\n 例:[i]蝙蝠俠:黑暗騎士 The Dark Knight 2008 PROPER 720p BluRay x264-SiNNERS[/i]\r\n [*]電視劇:[i][中文名] 名稱 [年份] S**E** [發佈說明] 解析度 來源 [音訊/]視頻編碼-發佈組名稱[/i]\r\n 例:[i]越獄 Prison Break S04E01 PROPER 720p HDTV x264-CTU[/i]\r\n [*]音軌:[i][中文藝術家名 - 中文專輯名] 藝術家名 - 專輯名 [年份] [版本] [發佈說明] 音訊編碼[-發佈組名稱][/i]\r\n 例:[i]恩雅 - 冬季降臨 Enya - And Winter Came 2008 FLAC[/i]\r\n [*]遊戲:[i][中文名] 名稱 [年份] [版本] [發佈說明][-發佈組名稱][/i]\r\n 例:[i]紅色警戒3:起義時刻 Command And Conquer Red Alert 3 Uprising-RELOADED[/i]\r\n [*]副標題\r\n [*]不要包含廣告或求種/續種請求。\r\n [*]外部資訊\r\n [*]電影和電視劇必須包含外部資訊連結(如IMDb連接)位址(如果存在的話)。\r\n [*]簡介\r\n [*]NFO圖請寫入NFO檔,而不是粘貼到簡介裡。\r\n [*]電影、電視劇、動漫:\r\n [*]必須包含海報、橫幅或BD/HDDVD/DVD封面(如果存在的話); \r\n [*]請盡可能包含畫面截圖或其縮略圖和連結;\r\n [*]請盡可能包含檔的詳細情況,包括格式、時長、編碼、碼率、解析度、語言、字幕等;\r\n [*]請盡可能包含演職員名單以及劇情概要。\r\n [*]體育節目:\r\n [*]請勿在文字介紹或截圖/檔案名/檔大小/時長中洩漏比賽結果。\r\n [*]音樂:\r\n [*]必須包含專輯封面和曲目列表(如果存在的話);\r\n [*]PC遊戲:\r\n [*]必須包含海報或BD/HDDVD/DVD封面(如果存在的話);\r\n [*]請盡可能包含畫面截圖或其縮略圖和連結。\r\n [*]雜項\r\n [*]請正確選擇資源的類型和品質資訊。\r\n [*]注意事項\r\n [*]管理員會根據規範對種子資訊進行編輯。\r\n [*]請勿改變或去除管理員對種子資訊作出的修改(但上傳者可以修正一些錯誤)。\r\n [*]種子資訊不符合規範的種子可能會被刪除,視種子資訊的規範程度而定。\r\n [*]如果資源的原始發佈資訊基本符合規範,請儘量使用原始發佈資訊。\r\n'), (18, 28, '管理守則 - 請慎用你的權限! ', '[*]最重要的一條:慎用你手中的權限!\r\n[*]對于違規行為不要怕說“不”!\r\n[*]不要公開和其他管理員沖突,一切通過私下溝通解決。\r\n[*]不要太絕情,給違規者一個改過的機會。\r\n[*]不要試圖“打預防針”,等到人們犯錯了再去糾正。\r\n[*]嘗試去改正一個不適當的帖而不是簡單的關閉它。\r\n[*]多嘗試移動帖子到適合的版面而不是簡單地鎖帖。\r\n[*]當處理版聊帖的時候要寬容適度。\r\n[*]鎖帖的時候請給予簡單的操作理由。\r\n[*]在屏蔽某個用戶前請先站短通知他/她, 如果有所積極回應可以考慮再給2周觀察期。\r\n[*]不要禁用一個注冊尚未滿4周的帳戶。\r\n[*]永遠記得以理服人。\r\n'), (17, 28, '趣味盒規則 - 在娛樂中賺分 ', '[*]任何用戶都可在趣味盒中投放笑話、趣圖、搞笑視頻、Flash等有趣的內容,除了色情、禁忌、政治敏感和當地法律禁止的內容。\r\n[*]正常情況下,一條趣味內容在發布24小時后過期。然而,如果獲得的投票數超過20且其中“有趣”的比例低于25%,趣味內容將提前過期。\r\n[*]新的趣味內容[b]只有[/b]在舊的內容過期后才能提交。\r\n[*]若趣味內容被多數用戶投票認為有趣,其發布者將得到以下獎勵:\r\n [*]票數超過25,其中認為“有趣”比例超過50%,發布者得到5個魔力值。\r\n [*]票數超過50,其中認為“有趣”比例超過50%,發布者得到另外的5個魔力值。\r\n [*]票數超過100,其中認為“有趣”比例超過50%,發布者得到另外的5個魔力值。\r\n [*]票數超過200,其中認為“有趣”比例超過50%,發布者得到另外的5個魔力值。\r\n [*]票數超過25,其中認為“有趣”比例超過75%,發布者得到10個魔力值。\r\n [*]票數超過50,其中認為“有趣”比例超過75%,發布者得到另外的10個魔力值。\r\n [*]票數超過100,其中認為“有趣”比例超過75%,發布者得到另外的10個魔力值。\r\n [*]票數超過200,其中認為“有趣”比例超過75%,發布者得到另外的10個魔力值。'), (21, 6, 'General rules - Breaking these rules can and will get you banned!', '[*]Do not do things we forbid.\r\n[*]Do not spam.\r\n[*]Cherish your user account. Inactive accounts would be deleted based on the following rules:\r\n 1.[b]Veteran User[/b] or above would never be deleted.\r\n 2.[b]Elite User[/b] or above would never be deleted if packed (at [url=usercp.php?action=personal]User CP[/url]).\r\n 3.Packed accounts would be deleted if users have not logged in for more than 400 days in a row.\r\n 4.Unpacked accounts would be deleted if users have not logged in for more than 150 days in a row.\r\n 5.Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 100 days in a row.\r\n[*]User found cheating would be deleted. Don''t take chances!\r\n[*]Possession of multiple [site] accounts will result in a ban!\r\n[*]Do not upload our torrents to other trackers! (See the [url=faq.php#38]FAQ[/url] for details.)\r\n[*]Disruptive behavior in the forums or on the server will result in a warning. You will only get [b]one[/b] warning! After that it''s bye bye Kansas!'), (15, 28, '評論總則 - 永遠尊重上傳者! ', '[*]無論如何,請尊重上傳者!\r\n[*]所有論壇發帖的規則同樣適用于評論。\r\n[*]如果你沒有下載的意向,請不要隨便發表否定性的評論。'), (25, 6, 'Commenting Guidelines - Always respect uploaders no matter what!', '[*]Always respect uploaders no matter what!\r\n[*]All rules of forum posting apply to commenting, too.\r\n[*]Do not post negative comments about torrents that you don''t plan to download.'), (27, 6, 'Funbox Rules - Get bonus with fun!', '[*]Users can submit anything funny (e.g. stories, pictures, flash, video) except things that is pornographic, taboo, political sensitive or forbidden by local laws.\r\n[*]Normally a newly-submitted funbox item would be outdated after 24 hours. However, if there are 20 or more votes on a funbox item, among which votes for ''funny'' is less than 25%, the funbox item would be outdated ahead of its due time.\r\n[*]New funbox item can be submitted [b]only[/b] when the old one is outdated.\r\n[*]User, whose funbox item is voted as [b]funny[/b], would be rewarded based on the following rules:\r\n [*]More than 25 votes, among which votes for [i]funny[/i] exceed 50%. User gets 5 bonus.\r\n [*]More than 50 votes, among which votes for [i]funny[/i] exceed 50%. User gets another 5 bonus.\r\n [*]More than 100 votes, among which votes for [i]funny[/i] exceed 50%. User gets another 5 bonus.\r\n [*]More than 200 votes, among which votes for [i]funny[/i] exceed 50%. User gets another 5 bonus.\r\n [*]More than 25 votes, among which votes for [i]funny[/i] exceed 75%. User gets 10 bonus.\r\n [*]More than 50 votes, among which votes for [i]funny[/i] exceed 75%. User gets another 10 bonus.\r\n [*]More than 100 votes, among which votes for [i]funny[/i] exceed 75%. User gets another 10 bonus.\r\n [*]More than 200 votes, among which votes for [i]funny[/i] exceed 75%. User gets another 10 bonus.'), (22, 6, 'Downloading rules - By not following these rules you will lose download privileges!', '[*]Low ratios may result in severe consequences, including banning accounts. See [url=faq.php#22]FAQ[/url].\r\n[*]Rules for torrent promotion:\r\n [*]Random promotion (torrents promoted randomly by system upon uploading):\r\n [*]10% chance becoming [color=#7c7ff6][b]50% Leech[/b][/color],\r\n [*]5% chance becoming [color=#f0cc00][b]Free Leech[/b][/color],\r\n [*]5% chance becoming [color=#aaaaaa][b]2X up[/b][/color],\r\n [*]3% chance becoming [color=#7ad6ea][b]50% Leech and 2X up[/b][/color],\r\n [*]1% chance becoming [color=#99cc66][b]Free Leech and 2X up[/b][/color].\r\n [*]Torrents larger than 20GB will automatically be [color=#f0cc00][b]Free Leech[/b][/color].\r\n [*]Raw Blu-ray, HD DVD Discs will be [color=#f0cc00][b]Free Leech[/b][/color].\r\n [*]First episode of every season of TV Series, etc. will be [color=#f0cc00][b]Free Leech[/b][/color].\r\n [*]Highly popular torrents will be on promotion (decided by admins).\r\n [*]Promotion timeout:\r\n [*]Except [color=#aaaaaa][b]2X up[/b][/color], all the other types of promotion will be due after 7 days (counted from the time when the torrent is uploaded).\r\n [*][color=#aaaaaa][b]2X up[/b][/color] will never become due.\r\n [*]ALL the torrents will be [color=#aaaaaa][b]2X up[/b][/color] forever when they are on the site for over 1 month.\r\n [*]On special occasions, we would set the whole site [color=#f0cc00][b]Free Leech[/b][/color]. Grab as much as you can. :mml: :mml: :mml:\r\n[*]You may [b]only[/b] use allowed bittorrent clients at [site]. See [url=faq.php#29]FAQ[/url].'), (24, 6, 'General Forum Guidelines - Please follow these guidelines or else you might end up with a warning!', '[*]No aggressive behavior or flaming in the forums.\r\n[*]No trashing of any topics (i.e. SPAM). Do not submit meaningless topics or posts (e.g. smiley only) in any forum except Water Jar.\r\n[*]Do not flood any forum in order to get bonus.\r\n[*]No foul language on title or text.\r\n[*]Do not discuss topics that are taboo, political sensitive or forbidden by local laws.\r\n[*]No language of discrimination based on race, national or ethnic origin, color, religion, gender, age, sexual preference or mental or physical disability. Violating this rule would result in permanent ban.\r\n[*]No bumping... (All bumped threads will be deleted.)\r\n[*]No double posting. \r\n[*]Please ensure all questions are posted in the correct section!\r\n[*]Topics without new reply in 365 days would be locked automatically by system.'), (26, 6, 'Avatar Guidelines - Please try to follow these guidelines', '[*]The allowed formats are .gif, .jpg and .png. \r\n[*]Be considerate. Resize your images to a width of 150 px and a size of no more than 150 KB. (Browsers will rescale them anyway: smaller images will be expanded and will not look good; larger images will just waste bandwidth and CPU cycles.)\r\n[*]Do not use potentially offensive material involving porn, religious material, animal / human cruelty or ideologically charged images. Staff members have wide discretion on what is acceptable. If in doubt PM one. '); INSERT INTO `rules` (`id`, `lang_id`, `title`, `text`) VALUES (23, 6, 'Uploading rules - Torrents violating these rules may be deleted without notice', 'Please respect the rules, and if you have any questions about something unclear or not understandable, please [url=contactstaff.php]consult the staff[/url]. Staff reserves the rights to adjudicate.\r\n\r\n[b]GENERAL[/b]\r\n [*]You must have legal rights to the file you upload.\r\n [*]Make sure your torrents are well-seeded. If you fail to seed for at least 24 hours or till someone else completes, or purposely keep a low uploading speed, you can be warned and your privilege to upload can be removed.\r\n [*]You would get 2 times as much of uploading credit for torrents uploaded by yourself.\r\n [*]If you have something interesting that somehow violates these rules, [url=contactstaff.php]ask the staff[/url] with a detailed description and we might make an exception.\r\n\r\n[b]PRIVILEGE[/b]\r\n [*]Everyone can upload.\r\n [*]However, some must go through the [url=offers.php]Offer section[/url]. See [url=faq.php#22]FAQ[/url] for details.\r\n [*]ONLY users in the class [color=#DC143C][b]Uploader[/b][/color] or above, or users specified by staff can freely upload games. Others should go through the [url=offers.php]Offer section[/url].\r\n\r\n[b]ALLOWED CONTENTS[/b]\r\n [*]High Definition (HD) videos, including\r\n [*]complete HD media, e.g. Blu-ray disc, HD DVD disc, etc. or remux,\r\n [*]captured HDTV streams,\r\n [*]encodes from above listed sources in HD resolution (at least 720p),\r\n [*]other HD videos such as HD DV.\r\n [*]Standard Definition (SD) videos, only\r\n [*]SD encodes from HD media (at least 480p),\r\n [*]DVDR/DVDISO,\r\n [*]DVDRip, CNDVDRip.\r\n [*]Lossless audio tracks (and corresponding cue sheets), e.g. FLAC, Monkey''s Audio, etc.\r\n [*]5.1-channel (or higher) movie dubs and music tracks (DTS, DTS CD Image, etc.), and commentary tracks.\r\n [*]PC games (must be original images).\r\n [*]HD trailers released within 7 days.\r\n [*]HD-related software and documents.\r\n\r\n[b]NOT ALLOWED CONTENTS[/b]\r\n [*]Contents less than 100 MB in total.\r\n [*]Upscaled/partially upscaled in Standard Definition mastered/produced content.\r\n [*]Videos in SD resolution but with low quality, including CAM, TC, TS, SCR, DVDSCR, R5, R5.Line, HalfCD, etc.\r\n [*]RealVideo encoded videos (usually contained in RMVB or RM), flv files.\r\n [*]Individual samples (to be included in the "Main torrent").\r\n [*]Lossy audios that are not 5.1-channel (or higher), e.g. common lossy MP3''s, lossy WMAs, etc.\r\n [*]Multi-track audio files without proper cue sheets.\r\n [*]Installation-free or highly compressed games, unofficial game images, third-party mods, collection of tiny games, individual game cracks or patches.\r\n [*]RAR, etc. archived files.\r\n [*]Dupe releases. (see beneath for dupe rules.)\r\n [*]Taboo or sensitive contents (such as porn or politically sensitive topics).\r\n [*]Damaged files, i.e. files that are erroneous upon reading or playback.\r\n [*]Spam files, such as viruses, trojans, website links, advertisements, torrents in torrent, etc., or irrelevant files.\r\n\r\n[b]DUPE RULES: QUALITY OVER QUANTITY[/b]\r\n [*]Video releases are prioritized according to their source media, and mainly: Blu-ray/HD DVD > HDTV > DVD > TV. High prioritized versions will dupe other versions with low priorities of the same video.\r\n [*]HD releases will dupe SD releases of the same video.\r\n [*]For animes, HDTV versions are equal in priority to DVD versions. This is an exception.\r\n [*]Encodes from the same type of media and in the same resolution \r\n [*]They are prioritized based on "[url=forums.php?action=viewtopic&forumid=6&topicid=1520]Scene & Internal, from Group to Quality-Degree. ONLY FOR HD-resources[/url]".\r\n [*]Releases from preferred groups will dupe releases from groups with the same or lower priority.\r\n [*]However, one DVD5 sized (i.e. approx. 4.38 GB) release from the best available source will always be allowed.\r\n [*]Based on lossless screenshots comparison, releases with higher quality will dupe those with low quality.\r\n [*]Blu-ray Disk/HD DVD Original Copy releases from another region containing different dubbing and/or subtitle aren''t considered to be dupe.\r\n [*]Only one copy of the same lossless audio contents will be preserved, and copies of other formats will be duped. FLAC (in separate tracks) is most preferred.\r\n [*]For contents already on the site\r\n [*]If new release doesn''t contain the confirmed errors/glitches/problems of the old release or is based on a better source, then it''s allowed to be uploaded and the old release is duped.\r\n [*]If the old release is dead for 45 days or longer, or exists for 18 months or longer, then the new release is free from the dupe rules.\r\n [*]After uploading the new release, old releases won''t be removed until they''re dead of inactivity.\r\n\r\n[b]PACKING RULES (ON TRIAL)[/b]\r\n ONLY the following contents are allowed to be packed in principle:\r\n [*]HD movie collections sold as box set (e.g. [i]The Ultimate Matrix Collection Blu-ray Box[/i]).\r\n [*]Complete season(s) of TV Series/TV shows/animes.\r\n [*]Documentaries on the same specific subject matter.\r\n [*]HD trailers released within 7 days.\r\n [*]MVs of the same artist\r\n [*]SD MVs are allowed to be packed according to DVD discs only, and no upload of individual songs is allowed.\r\n [*]HD MVs in the same resolution.\r\n [*]Music of the same artist\r\n [*]Only 5 or more albums can be packed.\r\n [*]Albums released within 2 years can be individually uploaded.\r\n [*]Generally, contents that are already on the site should be removed from the pack upon uploading, otherwise include them all together in the pack.\r\n [*]Animes, character songs, dramas, etc. that are released in separate volumes.\r\n [*]Contents packed by formal groups.\r\n Packed video contents must be from media of the same type (e.g. Blu-ray discs), in the same resolution standard (e.g. 720p), and encoded in the same video codec (e.g. x264). However, trailer are exceptions. Moreover, a movie collection should be released from the same group. Packed audio contents must be encoded in the same audio codec (e.g. all in FLAC). Corresponding individual torrents can be removed upon packing, depending on actual situation.\r\n If you are not clear of anything about packing, please [url=contactstaff.php]consult the staff[/url]. Staff reserve all the rights to interpret and deal with packing-related issues.\r\n\r\n[b]EXCEPTIONS[/b]\r\n [*]ALLOWED: SD videos from TV/DSR in the category "Sports".\r\n [*]ALLOWED: contents less than 100 MB but related to software and documents.\r\n [*]ALLOWED: single albums that are less than 100 MB.\r\n [*]ALLOWED: 2.0-channel (or higher) Mandarin/Cantonese dubs.\r\n [*]ALLOWED: attached subtitles, game cracks and patches, fonts, scans (of packages, etc.). These files must be all either archived or unarchived.\r\n [*]ALLOWED: when uploading CD releases, attaching contents from the DVD given with the CD.\r\n\r\n[b]TORRENT INFORMATION[/b]\r\n All torrents shall have descriptive titles, necessary descriptions and other information. Following is a brief regulation. Please refer to "[url=forums.php?action=viewtopic&topicid=3438&page=0#56711]Standard and Guidance of Torrent Information[/url]" (in Chinese) for complete and detailed instructions.\r\n [*]Title\r\n [*]Movies: [i]Name [Year] [Cut] [Release Info] Resolution Source [Audio/]Video Codec-Tag[/i]\r\n e.g. [i]The Dark Knight 2008 PROPER 720p BluRay x264-SiNNERS[/i]\r\n [*]TV Series/Mini-serie: [i]Name [Year] S**E** [Release Info] Resolution Source [Audio/]Video Codec-Tag[/i]\r\n e.g. [i]Prison Break S04E01 PROPER 720p HDTV x264-CTU[/i]\r\n [*]Musics: [i]Artist - Album [Year] [Version] [Release Info] Audio Codec[-Tag][/i]\r\n e.g. [i]Enya - And Winter Came 2008 FLAC[/i]\r\n [*]Games: [i]Name [Year] [Version] [Release Info][-Tag][/i]\r\n e.g. [i]Command And Conquer Red Alert 3 Uprising-RELOADED[/i]\r\n [*]Small description\r\n [*]No advertisements or asking for a reseed/requests.\r\n [*]External Info\r\n [*]URL of external info for Movies and TV Series is required (if available).\r\n [*]Description\r\n [*]Do not use the description for your NFO-artwork! Limit those artistic expressions to the NFO only.\r\n [*]For Movies, TV Series/Mini-series and animes:\r\n [*]Poster, banner or BD/HDDVD/DVD cover is required (If available).\r\n [*]Adding screenshots or thumbnails and links to the screenshots is encouraged.\r\n [*]Adding detailed file information regarding format, runtime, codec, bitrate, resolution, language, subtitle, etc. is encouraged.\r\n [*]Adding a list of staff and cast and plot outline is encouraged.\r\n [*]For Sports:\r\n [*]Don''t spoil the results trough text/screenshots/filenames/obvious filesize/detailed runtime.\r\n [*]For Music:\r\n [*]The CD cover and the track list are required (if available).\r\n [*]For PC Games:\r\n [*]Poster, banner or BD/HDDVD/DVD cover is required (If available).\r\n [*]Adding screenshots or thumbnails and links to the screenshots is encouraged.\r\n [*]Misc\r\n [*]Please correctly specify the category and quality info.\r\n [*]NOTES\r\n [*]Moderators will edit the torrent info according to the standard.\r\n [*]Do NOT remove or alter changes done by the staff (but some mistakes can be fixed by the uploader).\r\n [*]Torrents without required information can be deleted, depending on how they meet the standard.\r\n [*]The original torrent information can be used if it basically meets the standard.\r\n'), (28, 6, 'Moderating Rules - Use your better judgement!', '[*]The most important rule: Use your better judgment!\r\n[*]Don''t be afraid to say [b]NO[/b]!\r\n[*]Don''t defy another staff member in public, instead send a PM or through IM.\r\n[*]Be tolerant! Give the user(s) a chance to reform.\r\n[*]Don''t act prematurely, let the users make their mistakes and THEN correct them.\r\n[*]Try correcting any "off topics" rather then closing a thread.\r\n[*]Move topics rather than locking them.\r\n[*]Be tolerant when moderating the chat section (give them some slack).\r\n[*]If you lock a topic, give a brief explanation as to why you''re locking it.\r\n[*]Before you disable a user account, send him/her a PM and if they reply, put them on a 2 week trial.\r\n[*]Don''t disable a user account until he or she has been a member for at least 4 weeks.\r\n[*]Convince people by reasoning rather than authority.'), (54, 25, '管理组成员退休待遇', '满足以下条件可获得的退休待遇: \r\n\r\n[code]\r\n[b]对于 [color=#DC143C]上传员 (Uploaders)[/color]: [/b]\r\n\r\n成为 [color=#1cc6d5][b]养老族 (Retiree) [/b]: [/color]\r\n 升职一年以上; 上传过200个以上的种子资源 (特殊情况如原碟发布, 0day更新等可以由管理组投票表决; 须被认定为作出过重大及持久的贡献).\r\n\r\n成为 [color=#009F00][b]VIP[/b]: [/color]\r\n 升职6个月以上; 上传过100个以上的种子资源 (特殊情况如原碟发布, 0day更新等可以由管理组投票表决).\r\n\r\n其他:\r\n 成为 [color=#F88C00][b]Extreme User[/b][/color] (如果你的条件满足 [color=#F88C00][b]Extreme User[/b][/color] 及以上, 则成为 [color=#38ACEC][b]Nexus Master[/b][/color]) .\r\n[/code]\r\n\r\n[code]\r\n[b]对于 [color=#6495ED]管理员 (Moderators)[/color]: [/b]\r\n\r\n成为 [color=#1cc6d5][b]养老族 (Retiree)[/b]: [/color]\r\n 升职一年以上; 参加过至少2次站务组正式会议; 参与过 规则/答疑 的修订工作.\r\n\r\n成为 [color=#009F00][b]VIP[/b]: [/color]\r\n 若不满足成为 [color=#1cc6d5][b]养老族 (Retiree)[/b][/color] 的条件, 你可以[b]无条件[/b]成为 [color=#009F00][b]VIP[/b][/color] .\r\n[/code]\r\n\r\n[code]\r\n[b]对于 [color=#4b0082]总管理员 (Administrators)[/color] 及 以上等级: [/b]\r\n\r\n 可以[b]直接[/b]成为 [color=#1cc6d5][b]养老族 (Retiree)[/b][/color] .\r\n[/code]'), (55, 28, '管理組成員退休待遇', '滿足以下條件可獲得的退休待遇: \r\n[code]\r\n[b]對於 [color=#DC143C]上傳員 (Uploaders)[/color]: [/b]\r\n成為 [color=#1cc6d5][b]養老族 (Retiree) [/b]: [/color]\r\n 升職一年以上; 上傳過200個以上的種子資源 (特殊情況如原碟發佈, 0day更新等可以由管理組投票表決; 須被認定為作出過重大及持久的貢獻).\r\n成為 [color=#009F00][b]VIP[/b]: [/color]\r\n 升職6個月以上; 上傳過100個以上的種子資源 (特殊情況如原碟發佈, 0day更新等可以由管理組投票表決).\r\n其他:\r\n 成為 [color=#F88C00][b]Extreme User[/b][/color] (如果你的條件滿足 [color=#F88C00][b]Extreme User[/b][/color] 及以上, 則成為 [color=#38ACEC][b]Nexus Master[/b][/color]) .\r\n[/code]\r\n[code]\r\n[b]對於 [color=#6495ED]管理員 (Moderators)[/color]: [/b]\r\n成為 [color=#1cc6d5][b]養老族 (Retiree)[/b]: [/color]\r\n 升職一年以上; 參加過至少2次站務組正式會議; 參與過 規則/答疑 的修訂工作.\r\n成為 [color=#009F00][b]VIP[/b]: [/color]\r\n 若不滿足成為 [color=#1cc6d5][b]養老族 (Retiree)[/b][/color] 的條件, 你可以[b]無條件[/b]成為 [color=#009F00][b]VIP[/b][/color] .\r\n[/code]\r\n[code]\r\n[b]對於 [color=#4b0082]總管理員 (Administrators)[/color] 及 以上等級: [/b]\r\n 可以[b]直接[/b]成為 [color=#1cc6d5][b]養老族 (Retiree)[/b][/color] .\r\n[/code]'), (50, 6, 'Rules for Subtitles - Subtitles violating these rules will be deleted', '(This text is translated from the Chinese version. In case of discrepancy, the original version in Chinese shall prevail.)\r\n\r\n[b]GENERAL PRINCIPLE:[/b]\r\n [*]All subtitles uploaded must conform to the rules (i.e. proper or qualified). Unqualified subtitles will be deleted.\r\n [*]Allowed file formats are srt/ssa/ass/cue/zip/rar.\r\n [*]If you''re uploading Vobsub (idx+sub) subtitles or subtitles of other types, or a collection (e.g. subtitles for a season pack of some TV series), please zip/rar them before uploading.\r\n [*]Cue sheet of audio tracks is allowed as well. If there are several cue sheets, please pack them all.\r\n [*]Uploading lrc lyrics or other non-subtitle/non-cue files is not permitted. Irrelevant files if uploaded will be directly deleted.\r\n\r\n[b]QUALIFYING SUBTITLE/CUE FILES: improper subtitle/cue files will be directly deleted.[/b]\r\n In any of the following cases, a subtitle/cue file will be judged as improper:\r\n [*]Fail to match the corresponding torrent.\r\n [*]Fail to be in sync with the corresponding video/audio file.\r\n [*]Packed Improperly.\r\n [*]Contain irrelevant or spam stuff.\r\n [*]Encoded incorrectly.\r\n [*]Wrong cue file.\r\n [*]Wrong language mark.\r\n [*]The title is indefinite or contains redundant info/characters.\r\n [*]Duplicate.\r\n [*]Reported by several users and confirmed with other problems.\r\n [b]The staff group reserves rights to judge and deal with improper subtitles.[/b]\r\n Please refer to [url=http://www.nexushd.org/forums.php?action=viewtopic&forumid=13&topicid=2848][i]this thread[/i][/url] in the forum for detailed regulations on qualifying subtitle/cue files, other notes and suggestions on uploading subtitles, and subtitle naming and entitling guidance.\r\n\r\n[b]IMPLEMENTING REGULATIONS OF REWARDS AND PENALTIES [/b]\r\n [*]Reporting against improper subtitles and the uploaders who purposely upload improper subtitles is always welcomed. To report an improper subtitle, please click on the [i]REPORT[/i] button of the corresponding subtitle in the subtitle section. To report a user, please click on the [i]REPORT[/i] button at the bottom of the user details page.\r\n [*]The reporter will be rewarded 50 karma points (delivered in three days) for each case after confirmation.\r\n [*]Improper subtitles will be deleted and the corresponding uploader will be fined 100 karma points in each case.\r\n [*]Users who recklessly uploading improper subtitles for karma points or other purposes, or users who maliciously report, will be fined karma points or warned depending on the seriousness of the case.\r\n'), (49, 25, '字幕区规则 - 违规字幕将被删除', '[b]总则:[/b]\r\n [*]所有上传的字幕必须符合规则(即合格的)。不合格的字幕将被删除。\r\n [*]允许上传的文件格式为srt/ssa/ass/cue/zip/rar。\r\n [*]如果你打算上传的字幕是Vobsub格式(idx+sub)或其它格式,或者是合集(如电视剧整季的字幕),请将它们打包为zip/rar后再上传。\r\n [*]字幕区开放音轨对应cue表单文件的上传。如有多个cue,请将它们打包起来。\r\n [*]不允许lrc歌词或其它非字幕/cue文件的上传。上传的无关文件将被直接删除。\r\n\r\n[b]不合格字幕/cue文件判定:被判定为不合格的字幕/cue文件将被直接删除。[/b]\r\n 出现以下情况之一的字幕/cue文件将被判定为不合格:\r\n [*]与相应种子不匹配。\r\n [*]与相应的视频/音频文件不同步。\r\n [*]打包错误。\r\n [*]包含无关文件或垃圾信息。\r\n [*]编码错误。\r\n [*]cue文件错误。\r\n [*]语种标识错误。\r\n [*]标题命名不明确或包含冗余信息或字符。\r\n [*]被判定为重复。\r\n [*]接到多个用户举报并被证实有其它问题的。\r\n [b]管理组保留裁定和处理不合格字幕的权力。[/b]\r\n 不合格字幕/cue文件判定细则、字幕上传的其它注意事项以及命名指引请参阅论坛的[url=http://www.nexushd.org/forums.php?action=viewtopic&forumid=13&topicid=2848]这个帖子[/url]。\r\n\r\n[b]字幕奖惩:[/b]\r\n [*]欢迎举报不合格的字幕和恶意发布不合格字幕的用户。举报不合格字幕请在字幕区点击相应字幕的“举报”按钮。举报用户请点击相应用户详细信息页面底部的“举报”按钮。\r\n [*]对每一例不合格字幕的举报,确认后将奖励举报者50点魔力值(三天内发放)。\r\n [*]被确定为不合格的字幕将被删除,而在每一例中,相应的字幕上传者将被扣除100点魔力值。\r\n [*]对为赚取积分等目的恶意上传不合格字幕的用户,或是恶意举报的用户,将视情节轻重扣除额外的魔力值甚至给予警告。\r\n'), (53, 6, 'Staff''s retirement benefits', 'You can get retirement benefits when meeting these condition(s) below:\r\n\r\n[code]\r\n[b]for [color=#DC143C]Uploaders[/color]: [/b]\r\n\r\nTo join [color=#1cc6d5][b]Retiree[/b]: [/color]\r\n Been promoted for more than 1 year; have posted 200 or more torrents (special cases can be decided via vote among staffs, like Source-Disc posters, scene-uploaders; should be considered as having made rare and enduring contribution).\r\n\r\nTo join [color=#009F00][b]VIP[/b]: [/color]\r\n Been promoted for more than 6 months; have posted 100 or more torrents (special cases can be decided via vote among staffs, like Source-Disc posters, scene-uploaders).\r\n\r\nOthers:\r\n Demoted to [color=#F88C00][b]Extreme User[/b][/color] (if your profile meets the corresponding condition of classes [color=#F88C00][b]Extreme User[/b][/color] and above, then promoted to [color=#38ACEC][b]Nexus Master[/b][/color]).\r\n[/code]\r\n\r\n[code]\r\n[b]for [color=#6495ED]Moderators[/color]: [/b]\r\n\r\nTo join [color=#1cc6d5][b]Retiree[/b]: [/color]\r\n Been promoted for more than 1 year; Have participated at least 2 Staff [b]Official[/b] Meetings; Have participated in Rules/FAQ modifying.\r\n\r\nTo join [color=#009F00][b]VIP[/b]: [/color]\r\n If you don''t meet the condition of joining [color=#1cc6d5][b]Retiree[/b][/color], you can join [color=#009F00][b]VIP[/b][/color] [b]unconditionally[/b].\r\n[/code]\r\n\r\n[code]\r\n[b]for [color=#4b0082]Administrators[/color] and above: [/b]\r\n\r\n You can join [color=#1cc6d5][b]Retiree[/b][/color] [b]unconditionally[/b].\r\n[/code]'), (51, 28, '字幕區規則 - 違規字幕將被刪除', '[b]總則:[/b]\r\n [*]所有上傳的字幕必須符合規則(即合格的)。不合格的字幕將被刪除。\r\n [*]允許上傳的檔案格式為srt/ssa/ass/cue/zip/rar。\r\n [*]如果你打算上傳的字幕是Vobsub格式(idx+sub)或其它格式,或者是合集(如電視劇整季的字幕),請將它們打包為zip/rar後再上傳。\r\n [*]字幕區開放音軌對應cue表單文件的上傳。如有多個cue,請將它們打包起來。\r\n [*]不允許lrc歌詞或其它非字幕/cue文件的上傳。上傳的無關檔將被直接刪除。\r\n\r\n[b]不合格字幕/cue文件判定:被判定為不合格的字幕/cue檔將被直接刪除。[/b]\r\n 出現以下情況之一的字幕/cue檔將被判定為不合格:\r\n [*]與相應種子不匹配。\r\n [*]與相應的視頻/音訊檔不同步。\r\n [*]打包錯誤。\r\n [*]包含無關檔或垃圾資訊。\r\n [*]編碼錯誤。\r\n [*]cue檔錯誤。\r\n [*]語種標識錯誤。\r\n [*]標題命名不明確或包含冗餘資訊或字元。\r\n [*]被判定為重複。\r\n [*]接到多個用戶舉報並被證實有其它問題的。\r\n [b]管理組保留裁定和處理不合格字幕的權力。[/b]\r\n 不合格字幕/cue檔判定細則、字幕上傳的其它注意事項以及命名指引請參閱論壇的[url=http://www.nexushd.org/forums.php?action=viewtopic&forumid=13&topicid=2848]這個帖子[/url]。\r\n\r\n[b]字幕獎懲:[/b]\r\n [*]歡迎舉報不合格的字幕和惡意發佈不合格字幕的用戶。舉報不合格字幕請在字幕區點擊相應字幕的“舉報”按鈕。舉報使用者請點擊相應使用者詳細資訊頁面底部的“舉報”按鈕。\r\n [*]對每一例不合格字幕的舉報,確認後將獎勵舉報者50點魔力值(三天內發放)。\r\n [*]被確定為不合格的字幕將被刪除,而在每一例中,相應的字幕上傳者將被扣除100點魔力值。\r\n [*]對為賺取積分等目的惡意上傳不合格字幕的用戶,或是惡意舉報的用戶,將視情節輕重扣除額外的魔力值甚至給予警告。\r\n'); -- -------------------------------------------------------- -- -- Table structure for table `schools` -- CREATE TABLE IF NOT EXISTS `schools` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=101 ; -- -- Dumping data for table `schools` -- INSERT INTO `schools` (`id`, `name`) VALUES (1, '南京农业大学'), (2, '中山大学'), (3, '中国石油大学'), (4, '云南大学'), (5, '河海大学'), (6, '南开大学'), (7, '兰州大学'), (8, '合肥工业大学'), (9, '上海大学'), (10, '安徽大学'), (11, '中国海洋大学'), (12, '复旦大学'), (13, '西北大学'), (14, '郑州大学'), (15, '四川大学'), (16, '华中科技大学'), (17, '天津大学'), (18, '山东大学'), (19, '中央民族大学'), (20, '苏州大学'), (21, '重庆大学'), (22, '东北农业大学'), (23, '北京工业大学'), (24, '湖南师范大学'), (25, '东北大学'), (26, '电子科技大学'), (27, '西安电子科技大学'), (28, '北京化工大学'), (29, '南京航空航天大学'), (30, '南京理工大学'), (31, '西北工业大学'), (32, '天津医科大学'), (33, '北京林业大学'), (34, '华南师范大学'), (35, '浙江大学'), (36, '长安大学'), (37, '武汉理工大学'), (38, '河北工业大学'), (39, '南京师范大学'), (40, '中国农业大学'), (41, '厦门大学'), (42, '第二军医大学'), (43, '北京理工大学'), (44, '北京大学'), (45, '上海外国语大学'), (46, '北京科技大学'), (47, '西北农林科技大学'), (48, '中南大学'), (49, '华南理工大学'), (50, '武汉大学'), (51, '福州大学'), (52, '同济大学'), (53, '中国传媒大学'), (54, '湖南大学'), (55, '上海财经大学'), (56, '国防科学技术大学'), (57, '吉林大学'), (58, '大连理工大学'), (59, '中国人民大学'), (60, '上海交通大学'), (61, '西安交通大学'), (62, '江南大学'), (63, '南京大学'), (64, '南昌大学'), (65, '太原理工大学'), (66, '中国地质大学'), (67, '清华大学'), (68, '广西大学'), (69, '中国矿业大学'), (70, '四川农业大学'), (71, '东北师范大学'), (72, '哈尔滨工业大学'), (73, '北京航空航天大学'), (74, '北京交通大学'), (75, '西南交通大学'), (76, '中国科学技术大学'), (77, '北京外国语大学'), (78, '北京邮电大学'), (79, '西安建筑科技大学'), (80, '新疆大学'), (81, '东南大学'), (82, '对外经济贸易大学'), (83, '北京中医药大学'), (84, '暨南大学'), (85, '北京语言大学'), (86, '华中师范大学'), (87, '北京师范大学'), (88, '哈尔滨工程大学'), (89, '内蒙古大学'), (90, '东华大学'), (91, '解放军信息工程大学'), (92, '上海交通大学医学院 '), (93, '华东理工大学'), (94, '第四军医大学'), (95, '大连海事大学'), (96, '华东师范大学'), (97, '辽宁大学'), (98, '深圳大学'), (99, '中央音乐学院'), (100, '中国协和医科大学'); -- -------------------------------------------------------- -- -- Table structure for table `searchbox` -- CREATE TABLE IF NOT EXISTS `searchbox` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(30) DEFAULT NULL, `showsubcat` tinyint(1) NOT NULL DEFAULT '0', `showsource` tinyint(1) NOT NULL DEFAULT '0', `showmedium` tinyint(1) NOT NULL DEFAULT '0', `showcodec` tinyint(1) NOT NULL DEFAULT '0', `showstandard` tinyint(1) NOT NULL DEFAULT '0', `showprocessing` tinyint(1) NOT NULL DEFAULT '0', `showteam` tinyint(1) NOT NULL DEFAULT '0', `showaudiocodec` tinyint(1) NOT NULL DEFAULT '0', `catsperrow` smallint(5) unsigned NOT NULL DEFAULT '7', `catpadding` smallint(5) unsigned NOT NULL DEFAULT '25', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ; -- -- Dumping data for table `searchbox` -- INSERT INTO `searchbox` (`id`, `name`, `showsubcat`, `showsource`, `showmedium`, `showcodec`, `showstandard`, `showprocessing`, `showteam`, `showaudiocodec`, `catsperrow`, `catpadding`) VALUES (4, 'chd', 1, 0, 1, 1, 1, 0, 1, 0, 10, 7); -- -------------------------------------------------------- -- -- Table structure for table `secondicons` -- CREATE TABLE IF NOT EXISTS `secondicons` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `source` tinyint(3) unsigned NOT NULL DEFAULT '0', `medium` tinyint(3) unsigned NOT NULL DEFAULT '0', `codec` tinyint(3) unsigned NOT NULL DEFAULT '0', `standard` tinyint(3) unsigned NOT NULL DEFAULT '0', `processing` tinyint(3) unsigned NOT NULL DEFAULT '0', `team` tinyint(3) unsigned NOT NULL DEFAULT '0', `audiocodec` tinyint(3) unsigned NOT NULL DEFAULT '0', `name` varchar(30) NOT NULL, `class_name` varchar(255) DEFAULT NULL, `image` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=23 ; -- -- Dumping data for table `secondicons` -- INSERT INTO `secondicons` (`id`, `source`, `medium`, `codec`, `standard`, `processing`, `team`, `audiocodec`, `name`, `class_name`, `image`) VALUES (1, 0, 1, 1, 0, 0, 0, 0, 'Blu-ray/H.264', NULL, 'bdh264.png'), (2, 0, 1, 2, 0, 0, 0, 0, 'Blu-ray/VC-1', NULL, 'bdvc1.png'), (3, 0, 1, 4, 0, 0, 0, 0, 'Blu-ray/MPEG-2', NULL, 'bdmpeg2.png'), (4, 0, 2, 1, 0, 0, 0, 0, 'HD DVD/H.264', NULL, 'hddvdh264.png'), (5, 0, 2, 2, 0, 0, 0, 0, 'HD DVD/VC-1', NULL, 'hddvdvc1.png'), (6, 0, 2, 4, 0, 0, 0, 0, 'HD DVD/MPEG-2', NULL, 'hddvdmpeg2.png'), (7, 0, 3, 1, 0, 0, 0, 0, 'Remux/H.264', NULL, 'remuxh264.png'), (8, 0, 3, 2, 0, 0, 0, 0, 'Remux/VC-1', NULL, 'remuxvc1.png'), (9, 0, 3, 4, 0, 0, 0, 0, 'Remux/MPEG-2', NULL, 'remuxmpeg2.png'), (10, 0, 4, 0, 0, 0, 0, 0, 'AVCHD', NULL, 'avchd.png'), (11, 0, 5, 1, 0, 0, 0, 0, 'HDTV/H.264', NULL, 'hdtvh264.png'), (12, 0, 5, 4, 0, 0, 0, 0, 'HDTV/MPEG-2', NULL, 'hdtvmpeg2.png'), (13, 0, 6, 0, 0, 0, 0, 0, 'DVDR', NULL, 'dvdr.png'), (14, 0, 7, 1, 0, 0, 0, 0, 'Rip/H.264', NULL, 'riph264.png'), (15, 0, 7, 3, 0, 0, 0, 0, 'Rip/Xvid', NULL, 'ripxvid.png'), (16, 0, 8, 5, 0, 0, 0, 0, 'CD/FLAC', NULL, 'cdflac.png'), (17, 0, 8, 6, 0, 0, 0, 0, 'CD/APE', NULL, 'cdape.png'), (18, 0, 8, 7, 0, 0, 0, 0, 'CD/DTS', NULL, 'cddts.png'), (19, 0, 8, 9, 0, 0, 0, 0, 'CD/Other', NULL, 'cdother.png'), (20, 0, 9, 5, 0, 0, 0, 0, 'Extract/FLAC', NULL, 'extractflac.png'), (21, 0, 9, 7, 0, 0, 0, 0, 'Extract/DTS', NULL, 'extractdts.png'), (22, 0, 9, 8, 0, 0, 0, 0, 'Extract/AC-3', NULL, 'extractac3.png'); -- -------------------------------------------------------- -- -- Table structure for table `shoutbox` -- CREATE TABLE IF NOT EXISTS `shoutbox` ( `id` int(10) NOT NULL AUTO_INCREMENT, `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `date` int(10) unsigned NOT NULL DEFAULT '0', `text` text NOT NULL, `type` enum('sb','hb') NOT NULL DEFAULT 'sb', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `shoutbox` -- -- -------------------------------------------------------- -- -- Table structure for table `sitelog` -- CREATE TABLE IF NOT EXISTS `sitelog` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `txt` text NOT NULL, `security_level` enum('normal','mod') NOT NULL DEFAULT 'normal', PRIMARY KEY (`id`), KEY `added` (`added`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `sitelog` -- -- -------------------------------------------------------- -- -- Table structure for table `snatched` -- CREATE TABLE IF NOT EXISTS `snatched` ( `id` int(10) NOT NULL AUTO_INCREMENT, `torrentid` mediumint(8) unsigned NOT NULL DEFAULT '0', `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `ip` varchar(64) NOT NULL DEFAULT '', `port` smallint(5) unsigned NOT NULL DEFAULT '0', `uploaded` bigint(20) unsigned NOT NULL DEFAULT '0', `downloaded` bigint(20) unsigned NOT NULL DEFAULT '0', `to_go` bigint(20) unsigned NOT NULL DEFAULT '0', `seedtime` int(10) unsigned NOT NULL DEFAULT '0', `leechtime` int(10) unsigned NOT NULL DEFAULT '0', `last_action` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `startdat` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `completedat` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `finished` enum('yes','no') NOT NULL DEFAULT 'no', PRIMARY KEY (`id`), KEY `torrentid_userid` (`torrentid`,`userid`), KEY `userid` (`userid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `snatched` -- -- -------------------------------------------------------- -- -- Table structure for table `sources` -- CREATE TABLE IF NOT EXISTS `sources` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ; -- -- Dumping data for table `sources` -- INSERT INTO `sources` (`id`, `name`, `sort_index`) VALUES (1, 'Blu-ray', 0), (2, 'HD DVD', 0), (3, 'DVD', 0), (4, 'HDTV', 0), (5, 'TV', 0), (6, 'Other', 0); -- -------------------------------------------------------- -- -- Table structure for table `staffmessages` -- CREATE TABLE IF NOT EXISTS `staffmessages` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `sender` mediumint(8) unsigned NOT NULL DEFAULT '0', `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `msg` text, `subject` varchar(128) NOT NULL DEFAULT '', `answeredby` mediumint(8) unsigned NOT NULL DEFAULT '0', `answered` tinyint(1) NOT NULL DEFAULT '0', `answer` text, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `staffmessages` -- -- -------------------------------------------------------- -- -- Table structure for table `standards` -- CREATE TABLE IF NOT EXISTS `standards` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ; -- -- Dumping data for table `standards` -- INSERT INTO `standards` (`id`, `name`, `sort_index`) VALUES (1, '1080p', 0), (2, '1080i', 0), (3, '720p', 0), (4, 'SD', 0); -- -------------------------------------------------------- -- -- Table structure for table `stylesheets` -- CREATE TABLE IF NOT EXISTS `stylesheets` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `uri` varchar(255) NOT NULL DEFAULT '', `name` varchar(64) NOT NULL DEFAULT '', `addicode` text, `designer` varchar(50) NOT NULL DEFAULT '', `comment` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=14 ; -- -- Dumping data for table `stylesheets` -- INSERT INTO `stylesheets` (`id`, `uri`, `name`, `addicode`, `designer`, `comment`) VALUES (2, 'styles/BlueGene/', 'Blue Gene', '', 'Zantetsu', 'HDBits clone'), (3, 'styles/BlasphemyOrange/', 'Blasphemy Orange', '', 'Zantetsu', 'Bit-HDTV clone'), (4, 'styles/Classic/', 'Classic', '', 'Zantetsu', 'TBSource original mod'), (6, 'styles/DarkPassion/', 'Dark Passion', '', 'Zantetsu', ''), (7, 'styles/BambooGreen/', 'Bamboo Green', '', 'Xia Zuojie', 'Baidu Hi clone'); -- -------------------------------------------------------- -- -- Table structure for table `subs` -- CREATE TABLE IF NOT EXISTS `subs` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `torrent_id` mediumint(8) unsigned NOT NULL, `lang_id` smallint(5) unsigned NOT NULL, `title` varchar(255) NOT NULL DEFAULT '', `filename` varchar(255) NOT NULL DEFAULT '', `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `size` bigint(20) unsigned NOT NULL DEFAULT '0', `uppedby` mediumint(8) unsigned NOT NULL DEFAULT '0', `anonymous` enum('yes','no') NOT NULL DEFAULT 'no', `hits` mediumint(8) unsigned NOT NULL DEFAULT '0', `ext` varchar(10) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `torrentid_langid` (`torrent_id`,`lang_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `subs` -- -- -------------------------------------------------------- -- -- Table structure for table `suggest` -- CREATE TABLE IF NOT EXISTS `suggest` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `keywords` varchar(255) NOT NULL DEFAULT '', `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `adddate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `keywords` (`keywords`(4)), KEY `adddate` (`adddate`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `suggest` -- -- -------------------------------------------------------- -- -- Table structure for table `sysoppanel` -- CREATE TABLE IF NOT EXISTS `sysoppanel` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(128) NOT NULL DEFAULT '', `url` varchar(255) NOT NULL DEFAULT '', `info` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3028 ; -- -- Dumping data for table `sysoppanel` -- INSERT INTO `sysoppanel` (`id`, `name`, `url`, `info`) VALUES (1, 'Delete disabled users', 'deletedisabled.php', 'Delete all disabled users'), (2, 'Manage tracker forum', 'forummanage.php', 'Edit/Delete forum'), (3, 'MySQL Stats', 'mysql_stats.php', 'See MySql stats'), (4, 'Mass mailer', 'massmail.php', 'Send e-mail to all users on the tracker'), (5, 'Do cleanup', 'docleanup.php', 'Do cleanup functions'), (6, 'Ban System', 'bans.php', 'Ban / Unban IP'), (7, 'Failed Logins', 'maxlogin.php', 'Show Failed Login Attempts'), (8, 'Bitbucket', 'bitbucketlog.php', 'Bitbucket Log'), (9, 'Ban EMAIL address', 'bannedemails.php', 'Ban EMAILs stop registration.'), (10, 'Allow EMAIL address', 'allowedemails.php', 'Allow EMAIL registration.'), (11, 'Location', 'location.php', 'Manage location and location speed'), (12, 'Add Upload', 'amountupload.php', 'Add upload to certain classes'); -- -------------------------------------------------------- -- -- Table structure for table `teams` -- CREATE TABLE IF NOT EXISTS `teams` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC AUTO_INCREMENT=6 ; -- -- Dumping data for table `teams` -- INSERT INTO `teams` (`id`, `name`, `sort_index`) VALUES (1, 'HDS', 0), (2, 'CHD', 0), (3, 'MySiLU', 0), (4, 'WiKi', 0), (5, 'Other', 0); -- -------------------------------------------------------- -- -- Table structure for table `thanks` -- CREATE TABLE IF NOT EXISTS `thanks` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `torrentid` mediumint(8) unsigned NOT NULL DEFAULT '0', `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `torrentid_id` (`torrentid`,`id`), KEY `torrentid_userid` (`torrentid`,`userid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `thanks` -- -- -------------------------------------------------------- -- -- Table structure for table `topics` -- CREATE TABLE IF NOT EXISTS `topics` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `userid` mediumint(8) unsigned NOT NULL DEFAULT '0', `subject` varchar(128) NOT NULL, `locked` enum('yes','no') NOT NULL DEFAULT 'no', `forumid` smallint(5) unsigned NOT NULL DEFAULT '0', `firstpost` int(10) unsigned NOT NULL DEFAULT '0', `lastpost` int(10) unsigned NOT NULL DEFAULT '0', `sticky` enum('no','yes') NOT NULL DEFAULT 'no', `hlcolor` tinyint(3) unsigned NOT NULL DEFAULT '0', `views` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `userid` (`userid`), KEY `subject` (`subject`), KEY `forumid_lastpost` (`forumid`,`lastpost`), KEY `forumid_sticky_lastpost` (`forumid`,`sticky`,`lastpost`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `topics` -- -- -------------------------------------------------------- -- -- Table structure for table `torrents` -- CREATE TABLE IF NOT EXISTS `torrents` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, `info_hash` binary(20) NOT NULL, `name` varchar(255) NOT NULL DEFAULT '', `filename` varchar(255) NOT NULL DEFAULT '', `save_as` varchar(255) NOT NULL DEFAULT '', `descr` text, `small_descr` varchar(255) NOT NULL DEFAULT '', `ori_descr` text, `category` smallint(5) unsigned NOT NULL DEFAULT '0', `source` tinyint(3) unsigned NOT NULL DEFAULT '0', `medium` tinyint(3) unsigned NOT NULL DEFAULT '0', `codec` tinyint(3) unsigned NOT NULL DEFAULT '0', `standard` tinyint(3) unsigned NOT NULL DEFAULT '0', `processing` tinyint(3) unsigned NOT NULL DEFAULT '0', `team` tinyint(3) unsigned NOT NULL DEFAULT '0', `audiocodec` tinyint(3) unsigned NOT NULL DEFAULT '0', `size` bigint(20) unsigned NOT NULL DEFAULT '0', `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `type` enum('single','multi') NOT NULL DEFAULT 'single', `numfiles` smallint(5) unsigned NOT NULL DEFAULT '0', `comments` mediumint(8) unsigned NOT NULL DEFAULT '0', `views` int(10) unsigned NOT NULL DEFAULT '0', `hits` int(10) unsigned NOT NULL DEFAULT '0', `times_completed` mediumint(8) unsigned NOT NULL DEFAULT '0', `leechers` mediumint(8) unsigned NOT NULL DEFAULT '0', `seeders` mediumint(8) unsigned NOT NULL DEFAULT '0', `last_action` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `visible` enum('yes','no') NOT NULL DEFAULT 'yes', `banned` enum('yes','no') NOT NULL DEFAULT 'no', `owner` mediumint(8) unsigned NOT NULL DEFAULT '0', `nfo` blob, `sp_state` tinyint(3) unsigned NOT NULL DEFAULT '1', `anonymous` enum('yes','no') NOT NULL DEFAULT 'no', `url` int(10) unsigned DEFAULT NULL, `pos_state` enum('normal','sticky') NOT NULL DEFAULT 'normal', `cache_stamp` tinyint(3) unsigned NOT NULL DEFAULT '0', `picktype` enum('hot','classic','recommended','normal') NOT NULL DEFAULT 'normal', `picktime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `sp_state_temp` enum('2up_free','2up','free','half_down','normal') NOT NULL DEFAULT 'normal', `last_reseed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `info_hash` (`info_hash`), KEY `owner` (`owner`), KEY `visible_pos_id` (`visible`,`pos_state`,`id`), KEY `url` (`url`), KEY `category_visible_banned` (`category`,`visible`,`banned`), KEY `visible_banned_pos_id` (`visible`,`banned`,`pos_state`,`id`), FULLTEXT KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `torrents` -- -- -------------------------------------------------------- -- -- Table structure for table `torrents_state` -- CREATE TABLE IF NOT EXISTS `torrents_state` ( `global_sp_state` tinyint(3) unsigned NOT NULL DEFAULT '1' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `torrents_state` -- INSERT INTO `torrents_state` (`global_sp_state`) VALUES (1); -- -------------------------------------------------------- -- -- Table structure for table `uploadspeed` -- CREATE TABLE IF NOT EXISTS `uploadspeed` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=19 ; -- -- Dumping data for table `uploadspeed` -- INSERT INTO `uploadspeed` (`id`, `name`) VALUES (1, '64kbps'), (2, '128kbps'), (3, '256kbps'), (4, '512kbps'), (5, '768kbps'), (6, '1Mbps'), (7, '1.5Mbps'), (8, '2Mbps'), (9, '3Mbps'), (10, '4Mbps'), (11, '5Mbps'), (12, '6Mbps'), (13, '7Mbps'), (14, '8Mbps'), (15, '9Mbps'), (16, '10Mbps'), (17, '48Mbps'), (18, '100Mbit'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE IF NOT EXISTS `users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(40) NOT NULL DEFAULT '', `passhash` varchar(32) NOT NULL DEFAULT '', `secret` varbinary(20) NOT NULL, `email` varchar(80) NOT NULL DEFAULT '', `status` enum('pending','confirmed') NOT NULL DEFAULT 'pending', `added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `last_login` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `last_access` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `last_home` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `last_offer` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `forum_access` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `last_staffmsg` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `last_pm` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `last_comment` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `last_post` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `last_browse` int(10) unsigned NOT NULL DEFAULT '0', `last_music` int(10) unsigned NOT NULL DEFAULT '0', `last_catchup` int(10) unsigned NOT NULL DEFAULT '0', `editsecret` varbinary(20) NOT NULL, `privacy` enum('strong','normal','low') NOT NULL DEFAULT 'normal', `stylesheet` tinyint(3) unsigned NOT NULL DEFAULT '1', `caticon` tinyint(3) unsigned NOT NULL DEFAULT '1', `fontsize` enum('small','medium','large') NOT NULL DEFAULT 'medium', `info` text, `acceptpms` enum('yes','friends','no') NOT NULL DEFAULT 'yes', `commentpm` enum('yes','no') NOT NULL DEFAULT 'yes', `ip` varchar(64) NOT NULL DEFAULT '', `class` tinyint(3) unsigned NOT NULL DEFAULT '1', `max_class_once` tinyint(3) NOT NULL DEFAULT '1', `avatar` varchar(255) NOT NULL DEFAULT '', `uploaded` bigint(20) unsigned NOT NULL DEFAULT '0', `downloaded` bigint(20) unsigned NOT NULL DEFAULT '0', `seedtime` bigint(20) unsigned NOT NULL DEFAULT '0', `leechtime` bigint(20) unsigned NOT NULL DEFAULT '0', `title` varchar(30) NOT NULL DEFAULT '', `country` smallint(5) unsigned NOT NULL DEFAULT '107', `notifs` varchar(500) DEFAULT NULL, `modcomment` text, `enabled` enum('yes','no') NOT NULL DEFAULT 'yes', `avatars` enum('yes','no') NOT NULL DEFAULT 'yes', `donor` enum('yes','no') NOT NULL DEFAULT 'no', `donated` decimal(8,2) NOT NULL DEFAULT '0.00', `donated_cny` decimal(8,2) NOT NULL DEFAULT '0.00', `donoruntil` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `warned` enum('yes','no') NOT NULL DEFAULT 'no', `warneduntil` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `noad` enum('yes','no') NOT NULL DEFAULT 'no', `noaduntil` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `torrentsperpage` tinyint(3) unsigned NOT NULL DEFAULT '0', `topicsperpage` tinyint(3) unsigned NOT NULL DEFAULT '0', `postsperpage` tinyint(3) unsigned NOT NULL DEFAULT '0', `clicktopic` enum('firstpage','lastpage') NOT NULL DEFAULT 'firstpage', `deletepms` enum('yes','no') NOT NULL DEFAULT 'yes', `savepms` enum('yes','no') NOT NULL DEFAULT 'no', `showhot` enum('yes','no') NOT NULL DEFAULT 'yes', `showclassic` enum('yes','no') NOT NULL DEFAULT 'yes', `support` enum('yes','no') NOT NULL DEFAULT 'no', `picker` enum('yes','no') NOT NULL DEFAULT 'no', `stafffor` varchar(255) NOT NULL, `supportfor` varchar(255) NOT NULL, `pickfor` varchar(255) NOT NULL, `supportlang` varchar(50) NOT NULL, `passkey` varchar(32) NOT NULL DEFAULT '', `promotion_link` varchar(32) DEFAULT NULL, `uploadpos` enum('yes','no') NOT NULL DEFAULT 'yes', `forumpost` enum('yes','no') NOT NULL DEFAULT 'yes', `downloadpos` enum('yes','no') NOT NULL DEFAULT 'yes', `clientselect` tinyint(3) unsigned NOT NULL DEFAULT '0', `signatures` enum('yes','no') NOT NULL DEFAULT 'yes', `signature` varchar(800) NOT NULL DEFAULT '', `lang` smallint(5) unsigned NOT NULL DEFAULT '6', `cheat` smallint(6) NOT NULL DEFAULT '0', `download` int(10) unsigned NOT NULL DEFAULT '0', `upload` int(10) unsigned NOT NULL DEFAULT '0', `isp` tinyint(3) unsigned NOT NULL DEFAULT '0', `invites` smallint(5) unsigned NOT NULL DEFAULT '0', `invited_by` mediumint(8) unsigned NOT NULL DEFAULT '0', `gender` enum('Male','Female','N/A') NOT NULL DEFAULT 'N/A', `vip_added` enum('yes','no') NOT NULL DEFAULT 'no', `vip_until` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `seedbonus` decimal(10,1) NOT NULL DEFAULT '0.0', `charity` decimal(10,1) NOT NULL DEFAULT '0.0', `bonuscomment` text, `parked` enum('yes','no') NOT NULL DEFAULT 'no', `leechwarn` enum('yes','no') NOT NULL DEFAULT 'no', `leechwarnuntil` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `lastwarned` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `timeswarned` tinyint(3) unsigned NOT NULL DEFAULT '0', `warnedby` mediumint(8) unsigned NOT NULL DEFAULT '0', `sbnum` tinyint(3) unsigned NOT NULL DEFAULT '70', `sbrefresh` smallint(5) unsigned NOT NULL DEFAULT '120', `hidehb` enum('yes','no') DEFAULT 'no', `showimdb` enum('yes','no') DEFAULT 'yes', `showdescription` enum('yes','no') DEFAULT 'yes', `showcomment` enum('yes','no') DEFAULT 'yes', `showclienterror` enum('yes','no') NOT NULL DEFAULT 'no', `showdlnotice` tinyint(1) NOT NULL DEFAULT '1', `tooltip` enum('minorimdb','medianimdb','off') NOT NULL DEFAULT 'off', `shownfo` enum('yes','no') DEFAULT 'yes', `timetype` enum('timeadded','timealive') DEFAULT 'timealive', `appendsticky` enum('yes','no') DEFAULT 'yes', `appendnew` enum('yes','no') DEFAULT 'yes', `appendpromotion` enum('highlight','word','icon','off') DEFAULT 'icon', `appendpicked` enum('yes','no') DEFAULT 'yes', `dlicon` enum('yes','no') DEFAULT 'yes', `bmicon` enum('yes','no') DEFAULT 'yes', `showsmalldescr` enum('yes','no') NOT NULL DEFAULT 'yes', `showcomnum` enum('yes','no') DEFAULT 'yes', `showlastcom` enum('yes','no') DEFAULT 'no', `showlastpost` enum('yes','no') NOT NULL DEFAULT 'no', `pmnum` tinyint(3) unsigned NOT NULL DEFAULT '10', `school` smallint(5) unsigned NOT NULL DEFAULT '35', `showfb` enum('yes','no') NOT NULL DEFAULT 'yes', PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`), KEY `status_added` (`status`,`added`), KEY `ip` (`ip`), KEY `uploaded` (`uploaded`), KEY `downloaded` (`downloaded`), KEY `country` (`country`), KEY `last_access` (`last_access`), KEY `enabled` (`enabled`), KEY `warned` (`warned`), KEY `cheat` (`cheat`), KEY `class` (`class`), KEY `passkey` (`passkey`(8)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Dumping data for table `users` -- -- 2010-06-03 ALTER TABLE `users` CHANGE `sbnum` `sbnum` SMALLINT UNSIGNED NOT NULL DEFAULT '70' ; DELETE FROM `adminpanel` WHERE `adminpanel`.`id` = 5 LIMIT 1; -- 2009.11.17 CREATE TABLE IF NOT EXISTS `adclicks` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `adid` int(11) unsigned DEFAULT NULL, `userid` int(11) unsigned DEFAULT NULL, `added` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- 2010-06-15 ALTER TABLE `torrents` ADD `promotion_time_type` TINYINT UNSIGNED NOT NULL DEFAULT '0' AFTER `sp_state` ; ALTER TABLE `torrents` ADD `promotion_until` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `promotion_time_type` ; -- 2010-09-05 ALTER TABLE `friends` CHANGE `id` `id` INT( 10 ) UNSIGNED NOT NULL AUTO_INCREMENT ; ALTER TABLE `torrents` DROP `sp_state_temp`; -- 2011-12-02 INSERT INTO `agent_allowed_family` ( `id` , `family` , `start_name` , `peer_id_pattern` , `peer_id_match_num` , `peer_id_matchtype` , `peer_id_start` , `agent_pattern` , `agent_match_num` , `agent_matchtype` , `agent_start` , `exception` , `allowhttps` , `comment` , `hits` ) VALUES ( NULL , 'Transmission2.x', 'Transmission 2.0', '/^-TR2([0-9])([0-9])([0-9])-/', '3', 'dec', '-TR2000-', '/^Transmission\\/2\\.([0-9])([0-9])/', '3', 'dec', 'Transmission/2.00', 'no', 'yes', '', '0' ); INSERT INTO `agent_allowed_family` ( `id` , `family` , `start_name` , `peer_id_pattern` , `peer_id_match_num` , `peer_id_matchtype` , `peer_id_start` , `agent_pattern` , `agent_match_num` , `agent_matchtype` , `agent_start` , `exception` , `allowhttps` , `comment` , `hits` ) VALUES ( NULL , 'uTorrent 3.x', 'uTorrent/3000', '/^-UT3([0-9])([0-9])([0-9])-/', '3', 'dec', '-UT3000-', '/^uTorrent\\/3([0-9])([0-9])([0-9])/', '3', 'dec', 'uTorrent/3000', 'no', 'yes', '', '0' );