forked from riverstore/mtpt
-
Notifications
You must be signed in to change notification settings - Fork 3
/
mtpt.sql
2583 lines (2417 loc) · 379 KB
/
mtpt.sql
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Navicat MySQL Data Transfer
Source Server : localhost_3306
Source Server Version : 50045
Source Host : localhost:3306
Source Database : mtpt
Target Server Type : MYSQL
Target Server Version : 50045
File Encoding : 65001
Date: 2013-10-04 01:15:23
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `adclicks`
-- ----------------------------
DROP TABLE IF EXISTS `adclicks`;
CREATE TABLE `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 AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of adclicks
-- ----------------------------
-- ----------------------------
-- Table structure for `adminpanel`
-- ----------------------------
DROP TABLE IF EXISTS `adminpanel`;
CREATE TABLE `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 AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of adminpanel
-- ----------------------------
INSERT INTO `adminpanel` VALUES ('1', '添加用户', 'adduser.php', '添加一个新用户');
INSERT INTO `adminpanel` VALUES ('3', '重置用户密码', 'reset.php', '当用户申请密码搞忘时重置用户密码');
INSERT INTO `adminpanel` VALUES ('4', '全站发信', 'staffmess.php', '给全站用户发送站内信');
INSERT INTO `adminpanel` VALUES ('6', '查看投票', 'polloverview.php', '查看投票统计信息');
INSERT INTO `adminpanel` VALUES ('7', '被警告用户', 'warned.php', '查看被tracker警告过的用户');
INSERT INTO `adminpanel` VALUES ('8', '免费种子设定', 'freeleech.php', '设定种子为特殊状态');
INSERT INTO `adminpanel` VALUES ('9', 'FAQ 管理', 'faqmanage.php', '编辑FAQ 页面');
INSERT INTO `adminpanel` VALUES ('10', '规则管理', 'modrules.php', '编辑规则页面');
INSERT INTO `adminpanel` VALUES ('11', '分类管理', 'catmanage.php', '管理种子分类');
INSERT INTO `adminpanel` VALUES ('12', '用户搜索', 'searchuser.php', '用户搜索');
INSERT INTO `adminpanel` VALUES ('13', '删除搜索关键字', 'delkeywords.php', '删除用户搜索的关键字记录');
INSERT INTO `adminpanel` VALUES ('14', '增加上传量', 'amountupload.php', '增加上传量');
-- ----------------------------
-- Table structure for `advertisements`
-- ----------------------------
DROP TABLE IF EXISTS `advertisements`;
CREATE TABLE `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','shoutindex','shoutlogin') 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 default NULL,
`endtime` datetime default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `agent_allowed_exception`
-- ----------------------------
DROP TABLE IF EXISTS `agent_allowed_exception`;
CREATE TABLE `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;
-- ----------------------------
-- Records of agent_allowed_exception
-- ----------------------------
INSERT INTO `agent_allowed_exception` VALUES ('16', 'uTorrent 1.80B (Build 6838)', '-UT180B-', 'uTorrent/180B(6838)', 'buggy build that always seeding bad request');
INSERT INTO `agent_allowed_exception` VALUES ('16', 'uTorrent 1.83', '-UT183B-', 'uTorrent/183B(14809)', 'PTLiar use this agent.');
-- ----------------------------
-- Table structure for `agent_allowed_family`
-- ----------------------------
DROP TABLE IF EXISTS `agent_allowed_family`;
CREATE TABLE `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 AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of agent_allowed_family
-- ----------------------------
INSERT INTO `agent_allowed_family` VALUES ('1', 'Azureus 2.5.0.4', 'Azureus 2.5.0.4', '/^-AZ2504-/', '0', 'dec', '-AZ2504-', '/^Azureus 2.5.0.4/', '0', 'dec', 'Azureus 2.5.0.4', 'no', 'yes', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('2', 'Ktorrent 4.0.x', 'Ktorrent 4.0.x', '/^-KT4([0-9])([0-9])([0-9])-/', '0', 'dec', '-KT4000-', '/^KTorrent\\/4\\.([0-9])\\.([0-9])/', '0', 'dec', 'KTorrent/4.0.0', 'no', 'yes', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('3', 'Bittorrent 6.x', 'Bittorrent 6.0.1', '/^M6-([0-9])-([0-9])--/', '2', 'dec', 'M6-0-1--', '/^BitTorrent\\/6([0-9])([0-9])([0-9])/', '3', 'dec', 'BitTorrent/6010', 'no', 'yes', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('4', 'Deluge 0.x', 'Deluge 0.5.8.9', '/^-DE0([0-9])([0-9])([0-9])-/', '3', 'dec', '-DE0589-', '/^Deluge 0\\.([0-9])\\.([0-9])\\.([0-9])/', '3', 'dec', 'Deluge 0.5.8.9', 'no', 'yes', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('5', 'Transmission1.x', 'Transmission 1.06 (build 5136)', '/^-TR1([0-9])([0-9])([0-9])-/', '3', 'dec', '-TR1060-', '/^Transmission\\/1\\.([0-9])([0-9])/', '3', 'dec', 'Transmission/1.06', 'no', 'yes', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('6', 'RTorrent 0.x(with libtorrent 0.x)', 'rTorrent 0.8.0 (with libtorrent 0.12.0)', '/^-lt([0-9A-E])([0-9A-E])([0-9A-E])([0-9A-E])-/', '4', 'hex', '-lt0C00-', '/^rtorrent\\/0\\.([0-9])\\.([0-9])\\/0\\.([1-9][0-9]*)\\.(0|[1-9][0-9]*)/', '4', 'dec', 'rtorrent/0.8.0/0.12.0', 'no', 'no', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('7', 'Rufus 0.x', 'Rufus 0.6.9', '', '0', 'dec', '', '/^Rufus\\/0\\.([0-9])\\.([0-9])/', '2', 'dec', 'Rufus/0.6.9', 'no', 'no', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('8', 'Azureus 3.x', 'Azureus 3.0.5.0', '/^-AZ3([0-9])([0-9])([0-9])-/', '3', 'dec', '-AZ3050-', '/^Azureus 3\\.([0-9])\\.([0-9])\\.([0-9])/', '3', 'dec', 'Azureus 3.0.5.0', 'no', 'yes', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('9', 'uTorrent 1.7.x', 'uTorrent 1.7.5', '/^-UT17([0-9])([0-9])-/', '2', 'dec', '-UT1750-', '/^uTorrent\\/17([0-9])([0-9])/', '2', 'dec', 'uTorrent/1750', 'no', 'yes', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('10', 'BitRocket 0.x', 'BitRocket 0.3.3(32)', '/^-BR0([0-9])([1-9][0-9]*)-/', '2', 'dec', '-BR0332-', '/^BitRocket\\/0\\.([0-9])\\.([0-9])\\(([1-9][0-9]*)\\) libtorrent\\/0\\.([1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)/', '6', 'dec', 'BitRocket/0.3.3(32) libtorrent/0.13.0.0', 'no', 'yes', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('11', 'MLDonkey 2.9.x', 'MLDonkey 2.9.2', '/^-ML2\\.9\\.([0-9])-/', '1', 'dec', '-ML2.9.2-', '/^MLDonkey\\/2\\.9\\.([0-9])/', '1', 'dec', 'MLDonkey/2.9.2', 'no', 'yes', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('12', 'uTorrent 1.8.x', 'uTorrent 1.8.0', '/^-UT18([0-9])([0-9])-/', '2', 'dec', '-UT1800-', '/^uTorrent\\/18([0-9])([0-9])/', '2', 'dec', 'uTorrent/1800', 'no', 'yes', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('13', 'Azureus 4.x', 'Vuze 4.0.0.2', '/^-AZ4([0-9])([0-9])([0-9])-/', '3', 'dec', '-AZ4002-', '/^Azureus 4\\.([0-9])\\.([0-9])\\.([0-9])/', '3', 'dec', 'Azureus 4.0.0.2', 'no', 'yes', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('14', 'SymTorrent', '', '', '0', 'dec', '', '/^SymTorrent/', '0', 'dec', 'SymTorrent', 'no', 'no', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('15', 'Deluge 1.x', 'Deluge 1.1.6', '/^-DE1([0-9])([0-9])([0-9])-/', '3', 'dec', '-DE1160-', '/^Deluge 1\\.([0-9])\\.([0-9])/', '2', 'dec', 'Deluge 1.1.6', 'no', 'yes', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('16', 'uTorrent 1.8xB', 'uTorrent 1.80 Beta (build 9137)', '/^-UT18([0-9])B-/', '1', 'dec', '-UT180B-', '/^uTorrent\\/18([0-9])B\\(([1-9][0-9]*)\\)/', '2', 'dec', 'uTorrent/180B(9137)', 'no', 'yes', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('17', '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', '', '1');
INSERT INTO `agent_allowed_family` VALUES ('19', 'uTorrent 3.x', 'uTorrent 3.0', '/^-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');
INSERT INTO `agent_allowed_family` VALUES ('18', 'uTorrent 3.x.xB', 'uTorrent 3.0 Beta', '/^-UT3([0-9])([0-9])B-/', '2', 'dec', '-UT300B-', '/^uTorrent\\/3([0-9])([0-9])B/', '2', 'dec', 'uTorrent/300B', 'no', 'yes', '', '0');
INSERT INTO `agent_allowed_family` VALUES ('20', 'Transmission2.x', 'Transmission 2.00', '/^-TR2([0-9])([0-9])([0-9])-/', '3', 'dec', '-TR2000-', '/^Transmission\\/2\\.([0-9])([0-9])/', '3', 'dec', 'Transmission/2.00', 'no', 'yes', '', '0');
-- ----------------------------
-- Table structure for `allowedemails`
-- ----------------------------
DROP TABLE IF EXISTS `allowedemails`;
CREATE TABLE `allowedemails` (
`id` int(10) NOT NULL auto_increment,
`value` mediumtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `attachments`
-- ----------------------------
DROP TABLE IF EXISTS `attachments`;
CREATE TABLE `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',
`inuse` tinyint(1) NOT NULL default '1',
PRIMARY KEY (`id`),
KEY `pid` (`userid`,`id`),
KEY `dateline` (`added`,`isimage`,`downloads`),
KEY `dlkey` (`dlkey`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `audiocodecs`
-- ----------------------------
DROP TABLE IF EXISTS `audiocodecs`;
CREATE TABLE `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 AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of audiocodecs
-- ----------------------------
INSERT INTO `audiocodecs` VALUES ('1', 'FLAC', '', '0');
INSERT INTO `audiocodecs` VALUES ('2', 'APE', '', '0');
INSERT INTO `audiocodecs` VALUES ('3', 'DTS', '', '0');
INSERT INTO `audiocodecs` VALUES ('4', 'MP3', '', '0');
INSERT INTO `audiocodecs` VALUES ('5', 'OGG', '', '0');
INSERT INTO `audiocodecs` VALUES ('6', 'AAC', '', '0');
INSERT INTO `audiocodecs` VALUES ('7', 'Other', '', '0');
-- ----------------------------
-- Table structure for `avps`
-- ----------------------------
DROP TABLE IF EXISTS `avps`;
CREATE TABLE `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;
-- ----------------------------
-- Records of avps
-- ----------------------------
INSERT INTO `avps` VALUES ('lastcleantime', '', '0', '1380819357');
INSERT INTO `avps` VALUES ('lastcleantime2', '', '0', '1380819937');
INSERT INTO `avps` VALUES ('lastcleantime3', '', '0', '1380819937');
INSERT INTO `avps` VALUES ('lastcleantime4', '', '0', '1380819937');
INSERT INTO `avps` VALUES ('lastcleantime5', '', '0', '1380819937');
-- ----------------------------
-- Table structure for `bannedemails`
-- ----------------------------
DROP TABLE IF EXISTS `bannedemails`;
CREATE TABLE `bannedemails` (
`id` int(10) NOT NULL auto_increment,
`value` mediumtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of bannedemails
-- ----------------------------
-- ----------------------------
-- Table structure for `bans`
-- ----------------------------
DROP TABLE IF EXISTS `bans`;
CREATE TABLE `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 AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of bans
-- ----------------------------
-- ----------------------------
-- Table structure for `bitbucket`
-- ----------------------------
DROP TABLE IF EXISTS `bitbucket`;
CREATE TABLE `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 AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of bitbucket
-- ----------------------------
-- ----------------------------
-- Table structure for `blocks`
-- ----------------------------
DROP TABLE IF EXISTS `blocks`;
CREATE TABLE `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 AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of blocks
-- ----------------------------
-- ----------------------------
-- Table structure for `bonusapp`
-- ----------------------------
DROP TABLE IF EXISTS `bonusapp`;
CREATE TABLE `bonusapp` (
`userid` int(10) NOT NULL,
`namecharge` int(10) NOT NULL,
PRIMARY KEY (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of bonusapp
-- ----------------------------
-- ----------------------------
-- Table structure for `bookmarks`
-- ----------------------------
DROP TABLE IF EXISTS `bookmarks`;
CREATE TABLE `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 AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of bookmarks
-- ----------------------------
-- ----------------------------
-- Table structure for `categories`
-- ----------------------------
DROP TABLE IF EXISTS `categories`;
CREATE TABLE `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 AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of categories
-- ----------------------------
INSERT INTO `categories` VALUES ('401', '4', 'c_movies', '电影', 'movies_dvdr.png', '0');
INSERT INTO `categories` VALUES ('402', '4', 'c_tvseries', '剧集', 'tvseries_xvid.png', '1');
INSERT INTO `categories` VALUES ('403', '4', 'c_tvshows', '综艺', 'tvshows.png', '2');
INSERT INTO `categories` VALUES ('404', '4', 'c_doc', '纪录片', 'doc.png', '8');
INSERT INTO `categories` VALUES ('405', '4', 'c_anime', '动漫', 'anime.png', '3');
INSERT INTO `categories` VALUES ('406', '4', 'c_mv', 'MV', 'musicvideos.png', '9');
INSERT INTO `categories` VALUES ('407', '4', 'c_sports', '体育', 'sports.png', '6');
INSERT INTO `categories` VALUES ('408', '4', 'c_hqaudio', '软件', 'appz.png', '9');
INSERT INTO `categories` VALUES ('409', '4', 'c_misc', '其他', 'misc.png', '19');
INSERT INTO `categories` VALUES ('410', '4', 'c_game', '游戏', 'games_pc.png', '10');
INSERT INTO `categories` VALUES ('411', '4', 'c_doucument', '学习', 'study.png', '16');
INSERT INTO `categories` VALUES ('423', '4', '', '原创', 'movies_bd.png', '17');
INSERT INTO `categories` VALUES ('414', '4', '', '音乐', 'music.png', '4');
-- ----------------------------
-- Table structure for `caticons`
-- ----------------------------
DROP TABLE IF EXISTS `caticons`;
CREATE TABLE `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 AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of caticons
-- ----------------------------
INSERT INTO `caticons` VALUES ('1', '标准', 'scenetorrents/', 'pic/category/chd/scenetorrents/catsprites.css', 'yes', 'no', 'NexusPHP', 'Modified from SceneTorrents');
-- ----------------------------
-- Table structure for `cheaters`
-- ----------------------------
DROP TABLE IF EXISTS `cheaters`;
CREATE TABLE `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 AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of cheaters
-- ----------------------------
-- ----------------------------
-- Table structure for `chronicle`
-- ----------------------------
DROP TABLE IF EXISTS `chronicle`;
CREATE TABLE `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 AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of chronicle
-- ----------------------------
-- ----------------------------
-- Table structure for `codecs`
-- ----------------------------
DROP TABLE IF EXISTS `codecs`;
CREATE TABLE `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 AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of codecs
-- ----------------------------
INSERT INTO `codecs` VALUES ('1', 'H.264', '0');
INSERT INTO `codecs` VALUES ('2', 'VC-1', '0');
INSERT INTO `codecs` VALUES ('3', 'Xvid', '0');
INSERT INTO `codecs` VALUES ('4', 'MPEG-2', '0');
INSERT INTO `codecs` VALUES ('5', 'Other', '0');
-- ----------------------------
-- Table structure for `comments`
-- ----------------------------
DROP TABLE IF EXISTS `comments`;
CREATE TABLE `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',
`request` mediumint(9) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `user` (`user`),
KEY `torrent_id` (`torrent`,`id`),
KEY `offer_id` (`offer`,`id`),
FULLTEXT KEY `text` (`text`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of comments
-- ----------------------------
-- ----------------------------
-- Table structure for `countries`
-- ----------------------------
DROP TABLE IF EXISTS `countries`;
CREATE TABLE `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 AUTO_INCREMENT=108 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of countries
-- ----------------------------
INSERT INTO `countries` VALUES ('1', 'Sweden', 'sweden.gif');
INSERT INTO `countries` VALUES ('2', 'United States of America', 'usa.gif');
INSERT INTO `countries` VALUES ('3', 'Russia', 'russia.gif');
INSERT INTO `countries` VALUES ('4', 'Finland', 'finland.gif');
INSERT INTO `countries` VALUES ('5', 'Canada', 'canada.gif');
INSERT INTO `countries` VALUES ('6', 'France', 'france.gif');
INSERT INTO `countries` VALUES ('7', 'Germany', 'germany.gif');
INSERT INTO `countries` VALUES ('8', '中国', 'china.gif');
INSERT INTO `countries` VALUES ('9', 'Italy', 'italy.gif');
INSERT INTO `countries` VALUES ('10', 'Denmark', 'denmark.gif');
INSERT INTO `countries` VALUES ('11', 'Norway', 'norway.gif');
INSERT INTO `countries` VALUES ('12', 'United Kingdom', 'uk.gif');
INSERT INTO `countries` VALUES ('13', 'Ireland', 'ireland.gif');
INSERT INTO `countries` VALUES ('14', 'Poland', 'poland.gif');
INSERT INTO `countries` VALUES ('15', 'Netherlands', 'netherlands.gif');
INSERT INTO `countries` VALUES ('16', 'Belgium', 'belgium.gif');
INSERT INTO `countries` VALUES ('17', 'Japan', 'japan.gif');
INSERT INTO `countries` VALUES ('18', 'Brazil', 'brazil.gif');
INSERT INTO `countries` VALUES ('19', 'Argentina', 'argentina.gif');
INSERT INTO `countries` VALUES ('20', 'Australia', 'australia.gif');
INSERT INTO `countries` VALUES ('21', 'New Zealand', 'newzealand.gif');
INSERT INTO `countries` VALUES ('23', 'Spain', 'spain.gif');
INSERT INTO `countries` VALUES ('24', 'Portugal', 'portugal.gif');
INSERT INTO `countries` VALUES ('25', 'Mexico', 'mexico.gif');
INSERT INTO `countries` VALUES ('26', 'Singapore', 'singapore.gif');
INSERT INTO `countries` VALUES ('70', 'India', 'india.gif');
INSERT INTO `countries` VALUES ('65', 'Albania', 'albania.gif');
INSERT INTO `countries` VALUES ('29', 'South Africa', 'southafrica.gif');
INSERT INTO `countries` VALUES ('30', 'South Korea', 'southkorea.gif');
INSERT INTO `countries` VALUES ('31', 'Jamaica', 'jamaica.gif');
INSERT INTO `countries` VALUES ('32', 'Luxembourg', 'luxembourg.gif');
INSERT INTO `countries` VALUES ('34', 'Belize', 'belize.gif');
INSERT INTO `countries` VALUES ('35', 'Algeria', 'algeria.gif');
INSERT INTO `countries` VALUES ('36', 'Angola', 'angola.gif');
INSERT INTO `countries` VALUES ('37', 'Austria', 'austria.gif');
INSERT INTO `countries` VALUES ('38', 'Yugoslavia', 'yugoslavia.gif');
INSERT INTO `countries` VALUES ('39', 'Western Samoa', 'westernsamoa.gif');
INSERT INTO `countries` VALUES ('40', 'Malaysia', 'malaysia.gif');
INSERT INTO `countries` VALUES ('41', 'Dominican Republic', 'dominicanrep.gif');
INSERT INTO `countries` VALUES ('42', 'Greece', 'greece.gif');
INSERT INTO `countries` VALUES ('43', 'Guatemala', 'guatemala.gif');
INSERT INTO `countries` VALUES ('44', 'Israel', 'israel.gif');
INSERT INTO `countries` VALUES ('45', 'Pakistan', 'pakistan.gif');
INSERT INTO `countries` VALUES ('46', 'Czech Republic', 'czechrep.gif');
INSERT INTO `countries` VALUES ('47', 'Serbia', 'serbia.gif');
INSERT INTO `countries` VALUES ('48', 'Seychelles', 'seychelles.gif');
INSERT INTO `countries` VALUES ('50', 'Puerto Rico', 'puertorico.gif');
INSERT INTO `countries` VALUES ('51', 'Chile', 'chile.gif');
INSERT INTO `countries` VALUES ('52', 'Cuba', 'cuba.gif');
INSERT INTO `countries` VALUES ('53', 'Congo', 'congo.gif');
INSERT INTO `countries` VALUES ('54', 'Afghanistan', 'afghanistan.gif');
INSERT INTO `countries` VALUES ('55', 'Turkey', 'turkey.gif');
INSERT INTO `countries` VALUES ('56', 'Uzbekistan', 'uzbekistan.gif');
INSERT INTO `countries` VALUES ('57', 'Switzerland', 'switzerland.gif');
INSERT INTO `countries` VALUES ('58', 'Kiribati', 'kiribati.gif');
INSERT INTO `countries` VALUES ('59', 'Philippines', 'philippines.gif');
INSERT INTO `countries` VALUES ('60', 'Burkina Faso', 'burkinafaso.gif');
INSERT INTO `countries` VALUES ('61', 'Nigeria', 'nigeria.gif');
INSERT INTO `countries` VALUES ('62', 'Iceland', 'iceland.gif');
INSERT INTO `countries` VALUES ('63', 'Nauru', 'nauru.gif');
INSERT INTO `countries` VALUES ('64', 'Slovenia', 'slovenia.gif');
INSERT INTO `countries` VALUES ('66', 'Turkmenistan', 'turkmenistan.gif');
INSERT INTO `countries` VALUES ('67', 'Bosnia Herzegovina', 'bosniaherzegovina.gif');
INSERT INTO `countries` VALUES ('68', 'Andorra', 'andorra.gif');
INSERT INTO `countries` VALUES ('69', 'Lithuania', 'lithuania.gif');
INSERT INTO `countries` VALUES ('71', 'Netherlands Antilles', 'nethantilles.gif');
INSERT INTO `countries` VALUES ('72', 'Ukraine', 'ukraine.gif');
INSERT INTO `countries` VALUES ('73', 'Venezuela', 'venezuela.gif');
INSERT INTO `countries` VALUES ('74', 'Hungary', 'hungary.gif');
INSERT INTO `countries` VALUES ('75', 'Romania', 'romania.gif');
INSERT INTO `countries` VALUES ('76', 'Vanuatu', 'vanuatu.gif');
INSERT INTO `countries` VALUES ('77', 'Vietnam', 'vietnam.gif');
INSERT INTO `countries` VALUES ('78', 'Trinidad & Tobago', 'trinidadandtobago.gif');
INSERT INTO `countries` VALUES ('79', 'Honduras', 'honduras.gif');
INSERT INTO `countries` VALUES ('80', 'Kyrgyzstan', 'kyrgyzstan.gif');
INSERT INTO `countries` VALUES ('81', 'Ecuador', 'ecuador.gif');
INSERT INTO `countries` VALUES ('82', 'Bahamas', 'bahamas.gif');
INSERT INTO `countries` VALUES ('83', 'Peru', 'peru.gif');
INSERT INTO `countries` VALUES ('84', 'Cambodia', 'cambodia.gif');
INSERT INTO `countries` VALUES ('85', 'Barbados', 'barbados.gif');
INSERT INTO `countries` VALUES ('86', 'Bangladesh', 'bangladesh.gif');
INSERT INTO `countries` VALUES ('87', 'Laos', 'laos.gif');
INSERT INTO `countries` VALUES ('88', 'Uruguay', 'uruguay.gif');
INSERT INTO `countries` VALUES ('89', 'Antigua Barbuda', 'antiguabarbuda.gif');
INSERT INTO `countries` VALUES ('90', 'Paraguay', 'paraguay.gif');
INSERT INTO `countries` VALUES ('93', 'Thailand', 'thailand.gif');
INSERT INTO `countries` VALUES ('92', 'Union of Soviet Socialist Republics', 'ussr.gif');
INSERT INTO `countries` VALUES ('94', 'Senegal', 'senegal.gif');
INSERT INTO `countries` VALUES ('95', 'Togo', 'togo.gif');
INSERT INTO `countries` VALUES ('96', 'North Korea', 'northkorea.gif');
INSERT INTO `countries` VALUES ('97', 'Croatia', 'croatia.gif');
INSERT INTO `countries` VALUES ('98', 'Estonia', 'estonia.gif');
INSERT INTO `countries` VALUES ('99', 'Colombia', 'colombia.gif');
INSERT INTO `countries` VALUES ('100', 'Lebanon', 'lebanon.gif');
INSERT INTO `countries` VALUES ('101', 'Latvia', 'latvia.gif');
INSERT INTO `countries` VALUES ('102', 'Costa Rica', 'costarica.gif');
INSERT INTO `countries` VALUES ('103', 'Egypt', 'egypt.gif');
INSERT INTO `countries` VALUES ('104', 'Bulgaria', 'bulgaria.gif');
INSERT INTO `countries` VALUES ('105', 'Isla de Muerte', 'jollyroger.gif');
INSERT INTO `countries` VALUES ('107', 'Pirates', 'jollyroger.gif');
-- ----------------------------
-- Table structure for `downloadspeed`
-- ----------------------------
DROP TABLE IF EXISTS `downloadspeed`;
CREATE TABLE `downloadspeed` (
`id` tinyint(3) unsigned NOT NULL auto_increment,
`name` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of downloadspeed
-- ----------------------------
INSERT INTO `downloadspeed` VALUES ('4', '512kbps');
INSERT INTO `downloadspeed` VALUES ('5', '768kbps');
INSERT INTO `downloadspeed` VALUES ('6', '1Mbps');
INSERT INTO `downloadspeed` VALUES ('7', '1.5Mbps');
INSERT INTO `downloadspeed` VALUES ('8', '2Mbps');
INSERT INTO `downloadspeed` VALUES ('9', '3Mbps');
INSERT INTO `downloadspeed` VALUES ('10', '4Mbps');
INSERT INTO `downloadspeed` VALUES ('12', '6Mbps');
INSERT INTO `downloadspeed` VALUES ('14', '8Mbps');
INSERT INTO `downloadspeed` VALUES ('16', '10Mbps');
INSERT INTO `downloadspeed` VALUES ('17', '48Mbps');
INSERT INTO `downloadspeed` VALUES ('18', '100Mbit');
-- ----------------------------
-- Table structure for `drawlottery`
-- ----------------------------
DROP TABLE IF EXISTS `drawlottery`;
CREATE TABLE `drawlottery` (
`id` int(10) NOT NULL auto_increment,
`num1` int(10) NOT NULL default '0',
`num2` int(10) NOT NULL default '0',
`num3` int(10) NOT NULL default '0',
`num4` int(10) NOT NULL default '0',
`num5` int(10) NOT NULL default '0',
`drawtime` date NOT NULL default '0000-00-00',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of drawlottery
-- ----------------------------
-- ----------------------------
-- Table structure for `faq`
-- ----------------------------
DROP TABLE IF EXISTS `faq`;
CREATE TABLE `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 AUTO_INCREMENT=488 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of faq
-- ----------------------------
INSERT INTO `faq` VALUES ('1', '1', '25', 'categ', '基本问题', '', '1', '0', '1');
INSERT INTO `faq` VALUES ('2', '2', '25', 'categ', '用户信息', '', '1', '0', '2');
INSERT INTO `faq` VALUES ('3', '3', '25', 'categ', '数据统计', '', '1', '0', '3');
INSERT INTO `faq` VALUES ('4', '4', '25', 'categ', '发布', '', '1', '0', '4');
INSERT INTO `faq` VALUES ('5', '5', '25', 'categ', '下载', '', '1', '0', '5');
INSERT INTO `faq` VALUES ('6', '6', '25', 'categ', '我该怎样提升下载速度?', '', '0', '0', '6');
INSERT INTO `faq` VALUES ('7', '7', '25', 'categ', '我的网络提供商(ISP)使用了透明代理。我应该怎么做?', '', '0', '0', '7');
INSERT INTO `faq` VALUES ('8', '8', '25', 'categ', '为什么我连不上?难道我被网站屏蔽了?', '', '0', '0', '8');
INSERT INTO `faq` VALUES ('9', '9', '25', 'categ', '如果从这里找不到我的问题的解答,我该怎么办?', '', '1', '0', '9');
INSERT INTO `faq` VALUES ('10', '10', '25', 'item', '什么是PT?', 'PT(Private Tracker)下载其实也是BT下载的一种,在有限的范围内,下载的用户基本都可以达到自己带宽的上限。PT下载还通过论坛制度的约束机制将BT的设计理念现实化,真正让用户做到下载的过程中努力上传。因此,PT下载的速度很快,能够让用户带宽得到最大程度的使用,而且种子时效长。', '1', '1', '1');
INSERT INTO `faq` VALUES ('11', '11', '25', 'item', '从这里下载的数据需要流量费用么?', '不需要 !!! 当前学校对IPV6的优惠政策是不计费;\r\n另外我们是校园网内下载,所以即便是ipv4也不扣流量费。', '1', '1', '2');
INSERT INTO `faq` VALUES ('13', '13', '25', 'item', '我注册了一个账号但是却没有收到验证邮件!', '这很有可能是Tracker所在的服务器网络出现了问题。你可以填写<a href=\"confirm_resend.php\" class=\"faqlink\">这个表格</a>让服务器重发验证邮件。<br />\r\n通常没有得到确认的注册帐户会在24小时后被删除,所以你可以在第二天重试。需要注意的是,如果你第一次没有收到确认信,第二次有很大的可能仍然无法收到确认信,所以换一个E-mail地址是一个不错的主意。', '0', '2', '1');
INSERT INTO `faq` VALUES ('14', '14', '25', 'item', '我忘记了我的用户名/密码了,能帮我找回来么?', '请填写<a class=\"faqlink\" href=\"recover.php\">这个表单</a>,我们将把登录详情发还给你。', '1', '2', '2');
INSERT INTO `faq` VALUES ('15', '15', '25', 'item', '我可以给我的账号改个名字么?', '我们并不建议给账号改名。\r\n<br />\r\n如果一定需要请阅读此贴<a class=\"faqlink\" href=http://pt.nwsuaf6.edu.cn/forums.php?action=viewtopic&forumid=7&topicid=4245>点击进入</a>', '3', '2', '3');
INSERT INTO `faq` VALUES ('16', '16', '25', 'item', '我已经通过候选上传了一个种子.为什么等级又降回来了?', '通过候选等级提升一天是为了方便用户发布资源</a>\r\n每天系统都会判定一次用户等级</a>\r\n这时候等级依然按照上面的等级规定判定.</a>\r\n所以说通过候选之后等级只是暂时提升一天', '3', '2', '4');
INSERT INTO `faq` VALUES ('17', '17', '25', 'item', '那么,什么是我的分享率(Ratio)?以及如何快速提高分享率?', '就在页面功能分区的下面。<br />\r\n<br />\r\n<img src=\"pic/ratio.png\" alt=\"ratio\" />\r\n<br />\r\n<br />\r\n区分你的整体分享率和独立分享率是很重要的。整体分享率关注的是自从你加入站点以来,账号的整体上传与下载量。而独立分享率则针对每一个你正在下载或做种的文件。\r\n<br />\r\n<br />\r\n你可能看到两种符号来代替数字:\"Inf.\",这个是无限(Infinity)的缩写,意思是你的下载量为0字节,而上传量则是任意一个非零的值(上传量/下载量=无穷大);\"---\",应该被视为“不可用”,这说明了你的下载量和上传量都是0字节。(上传量/下载量=0/0 这是一个不确定的量)。\r\n<br />\r\n<br />\r\n<br />\r\n下载置顶的免费热门种子并保种一段时间是提高分享率的好方法<br />\r\n一般两天内就能从土豆脱离出来<br />\r\n', '3', '2', '5');
INSERT INTO `faq` VALUES ('18', '18', '25', 'item', '为什么我的IP地址显示在我的个人信息页面上?', '只有你自己和网站Moderator及以上的管理员可以看到你的IP地址和Email。普通用户是看不到这些信息的。', '0', '2', '6');
INSERT INTO `faq` VALUES ('21', '21', '25', 'item', '为什么我的“可连接”是“否”?(以及为什么我需要关注这个问题?)', '首先按照以下设置检查你的utorrent客户端是否设置正确:<br />\r\n<br />\r\n<img src=\"pic/utset1.png\" alt=\"ratio\" /><br />\r\n以utorrent2.2为例,打开选项---设置<br />\r\n<br />\r\n<br />\r\n<img src=\"pic/utset2.png\" alt=\"ratio\" /><br />\r\n切换到“任务”标签,取消“启用DHT网络”、“新建时启用DHT”、“启用本地发现”;<br />\r\n勾选“向Tracker查询状态信息”、“启用用户交换”、“启用UDP tracker支持”;<br />\r\n“传出连接”设为“启用”,勾选“允许传入旧式连接”。<br />\r\n<br />\r\n<br />\r\n<img src=\"pic/utset3.png\" alt=\"ratio\" /><br />\r\n<b>切换到“高级”标签,将“net.disable_incoming_ipv6”改为\"*false\"。(有的版本为net.disable_ipv6)</b><br />\r\n<br />\r\n设置好utorrent后如果还为“否”请继续往下看:<br />\r\nTracker服务器认为你在防火墙后,或者在NAT桥接后,并且无法接收其他Peer的连接请求。\r\n<br />\r\n<br />\r\n这意味着其它的大批Peer无法连接到你,只能由你连接到他们。更糟糕的情况是,如果两个Peer都处于这样的状态,他们将完全无法连接到对方。这对于整体速度有着非常不利的影响。\r\n<br />\r\n<br />\r\n对于这个问题,有以下解决方式:对于防火墙,打开用于接收连接的端口(即你在BT客户端中定义的端口);对于NAT,你需要配置NAT服务器使用Basic NAT方式而不是NAPT(不同的路由有着不同的运行方式。翻阅你的路由文档或客服论坛。你也可以在<a class=\"faqlink\" href=\"http://portforward.com/\">PortForward</a>找到关于此问题的大量信息)。\r\n\r\n\r\n\r\n\r\n\r\n', '2', '2', '9');
INSERT INTO `faq` VALUES ('22', '22', '25', 'item', '不同的用户等级代表了什么含义?', '<table cellspacing=\"3\" cellpadding=\"0\">\r\n<tr>\r\n<td class=\"embedded\" width=\"200\" valign=\"top\"> <b class=\"Peasant_Name\">西农土豆(Peasant)</b></td>\r\n<td class=\"embedded\" width=\"5\"> </td>\r\n<td class=\"embedded\"> 被降级的用户,他们有30天时间来提升分享率,否则他们会被踢。不能发表趣味盒内容;不能申请友情链接;不能上传字幕。\r\n</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"User_Name\">入道新丁(User)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"PowerUser_Name\">初学乍练(PowerUser)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">可以直接发布种子;可以查看NFO文档;可以查看用户列表; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\"); 可以删除自己上传的字幕。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"EliteUser_Name\">渐入佳境(EliteUse)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\"><b class=\"EliteUser_Name\">渐入佳境</b>及以上用户封存账号后不会被删除;可以请求续种。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"CrazyUser_Name\">炉火纯青(CrazyUser)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">可以在做种/下载/发布的时候选择匿名模式。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"InsaneUser_Name\">自成一派(InsaneUser)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">可以查看普通日志。得到一个邀请名额</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"VeteranUser_Name\">功行圆满(VeteranUse)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">可以查看其它用户的评论、帖子历史。<b class=\"VeteranUser_Name\">功行圆满</b>及以上用户会永远保留账号。得到二个邀请名额</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"ExtremeUser_Name\">登峰造极(ExtremeUser)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">可以更新过期的外部信息;得到二个邀请名额</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"UltimateUser_Name\">出神入化(UltimateUser)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">得到三个邀请名额。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"NexusMaster_Name\">绝世神人(NexusMaster)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">得到五个邀请名额。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <img class=\"star\" src=\"pic/trans.gif\" alt=\"Star\" /></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">为网站捐款的主。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"VIP_Name\">贵宾(VIP)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">和<b class=\"NexusMaster_Name\">绝世神人</b>拥有相同权限并被认为是精英成员。免除自动降级。下载种子将不消耗麦粒(上传量和下载量记算不变)</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"User_Name\">其它</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">自定义等级。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Retiree_Name\">养老族(Retiree)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">退休后的管理组成员。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Uploader_Name\">发布员(Uploader)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">专注的发布者。免除自动降级;可以查看匿名用户的真实身份。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Downloader_Name\">保种员(Downloader)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">专注的保种者。免除自动降级;可以查看匿名用户的真实身份。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Moderator_Name\">管理员(Moderator)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">可以查看管理组信箱、举报信箱;管理趣味盒内容、投票内容;可以编辑或删除任何发布的种子;可以管理候选;可以查看机密日志;可以删除任何字幕;可以管理日志中的代码、史册;可以查看用户的邀请记录;可以管理用户帐号的一般信息。<b>不能</b>管理友情链接、最近消息、论坛版块;<b>不能</b>查看用户IP或Email等机密信息;不能删除账号。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Administrator_Name\">站长(Administrator)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">除了不可以管理捐赠外,可以做任何事。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"StaffLeader_Name\">主管(Staff Leader)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">网站主管,可以做任何事。</td>\r\n</tr>\r\n</table>', '1', '2', '10');
INSERT INTO `faq` VALUES ('23', '23', '25', 'item', '提升和降级又是怎样被执行的呢?', '<table cellspacing=\"3\" cellpadding=\"0\">\r\n<tr>\r\n<td class=\"embedded\" width=\"200\" valign=\"top\"> <b class=\"Peasant_Name\">西农土豆</b></td>\r\n<td class=\"embedded\" width=\"5\"> </td>\r\n<td class=\"embedded\" valign=\"top\">当以下情况时将被自动降至本级:<br />\r\n1.如果你已经下载了超过50GB,你应该有大于0.4的分享率。<br />\r\n2.如果你已经下载了超过100GB,你应该有大于0.5的分享率。<br />\r\n3.如果你已经下载了超过200GB,你应该有大于0.6的分享率。<br />\r\n4.如果你已经下载了超过400GB,你应该有大于0.7的分享率。<br />\r\n5.如果你已经下载了超过800GB,你应该有大于0.8的分享率。</td>\r\n</tr>\r\n\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"PowerUser_Name\">初学乍练</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">必须注册至少1周,并且下载至少10G,分享率大于1.05。<br />\r\n当条件符合时将被自动提升。注意,无论何时,如果你的分享率低于0.95,你将自动降级。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"EliteUser_Name\">渐入佳境</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">必须注册至少2周,并且下载至少30G,分享率大于1.55。\r\n<br />\r\n当条件符合时将被自动提升。注意,无论何时,如果你的分享率低于1.45,你将自动降级。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"CrazyUser_Name\">炉火纯青</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">必须注册至少4周,并且下载至少60G,分享率大于2.05。\r\n<br />\r\n当条件符合时将被自动提升。注意,无论何时,如果你的分享率低于1.95,你将自动降级。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"InsaneUser_Name\">自成一派</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">必须注册至少8周,并且下载至少100G,分享率大于2.55。<br />\r\n当条件符合时将被自动提升。注意,无论何时,如果你的分享率低于2.45,你将自动降级。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"VeteranUser_Name\">功行圆满</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">必须注册至少16周,并且下载至少400G,分享率大于3.05。<br />\r\n当条件符合时将被自动提升。注意,无论何时,如果你的分享率低于2.95,你将自动降级。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"ExtremeUser_Name\">登峰造极</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">必须注册至少24周,并且下载至少1024G,分享率大于3.55。<br />\r\n当条件符合时将被自动提升。注意,无论何时,如果你的分享率低于3.45,你将自动降级。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"UltimateUser_Name\">出神入化</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">必须注册至少36周,并且下载至少1536G,分享率大于4.05。<br />\r\n当条件符合时将被自动提升。注意,无论何时,如果你的分享率低于3.95,你将自动降级。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"NexusMaster_Name\">绝世神人</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">必须注册至少52周,并且下载至少3075G,分享率大于4.55。<br />\r\n当条件符合时将被自动提升。注意,无论何时,如果你的分享率低于4.45,你将自动降级。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <img class=\"star\" src=\"pic/trans.gif\" alt=\"Star\" /></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">只需捐款,详见<a class=\"faqlink\" href=\"donate.php\">这里</a>。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"VIP_Name\">贵宾(VIP)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">由管理员仔细斟酌后分配给他们认为对于站点某方面有特殊贡献的用户。<br />\r\n(任何索取贵宾等级的要求将被自动无视)</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"User_Name\">其它</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">用户使用魔力值兑换,或由管理员仔细斟酌后授权。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Retiree_Name\">养老族(Retiree)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">由管理员授予。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Uploader_Name\">发布员(Uploader)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">由管理员分配(参见\'发布\'部分以了解详情)。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Downloader_Name\">保种员(Downloader)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">由管理员分配(参见\'发布\'部分以了解详情)。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Moderator_Name\">管理员(Moderator)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">无需多问,我们会找到你的!</td>\r\n</tr>\r\n</table>', '1', '2', '11');
INSERT INTO `faq` VALUES ('25', '25', '25', 'item', '为什么我的朋友不能加入?', '用户数目有所限制(你可以查看“首页->站点数据->上限”)。当达到那个数目时,我们会停止接受新成员。<br />\r\n由于非活跃用户(长期不使用账号的用户)引起账号资源浪费,因此我们将清理该部分用户,为其他想加入用户腾出空间。<br />\r\n关于非活跃用户清理规则,参考<a class=\"faqlink\" href=\"rules.php\">规则</a>。', '0', '2', '7');
INSERT INTO `faq` VALUES ('26', '26', '25', 'item', '怎样自定义头像?', '首先,找一个你喜欢的图片,当然了它不能违反我们的<a class=\"faqlink\" href=\"rules.php\">规则</a>。然后你要找一个存放它的地方,比方说我们自己的<a class=\"faqlink\" href=\"bitbucket-upload.php\">上传器</a>。出于服务器负载的考虑,我们更希望你将图片上传到别的网站,然后将其URL粘贴到你的<a class=\"faqlink\" href=\"usercp.php?action=personal\">控制面板</a>的头像URL部分。 <br />\r\n<br />\r\n请不要为了仅仅测试头像而发帖。如果一切顺利,你将在你的详情页面看到它。', '0', '2', '8');
INSERT INTO `faq` VALUES ('27', '27', '25', 'item', '最常见的数据未能得到更新的原因', '<ul>\r\n<li>服务器过载/未响应。只要尝试着保持会话直到服务器恢复响应(不推荐连续手动刷新,这样会加重服务器负载)。</li>\r\n<li>你正在使用不稳定的客户端。如果你想要使用测试版或者CVS版本,你需要自己承担由此带来的风险。</li>\r\n</ul>', '1', '3', '1');
INSERT INTO `faq` VALUES ('28', '28', '25', 'item', '最佳的尝试', '<ul>\r\n<li>如果你当前正下载/上传的种子并不在你的用户详情页面中,你可以等一会或者强制进行手动更新。</li>\r\n<li>确保你正确地关闭了客户端软件,否则Tracker服务器无法收到\"event=completed\"的信号。</li>\r\n<li>如果Tracker服务器挂了,不要停止上传。只要在你退出客户端之前服务器恢复工作,所有的数据都会得到正确地更新。</li>\r\n</ul>', '1', '3', '2');
INSERT INTO `faq` VALUES ('29', '29', '25', 'item', '我可以任意选择Bittorrent客户端软件么?', '根据<a class=\"faqlink\" href=\"aboutnexus.php\">NexusPHP</a>对常见BitTorrent客户端的测试,目前本站Tracker<b>只允许</b>使用以下的BitTorrent客户端软件。<br />\r\n<a class=\"faqlink\" href=\"aboutnexus.php\">NexusPHP</a>的测试报告可<a class=\"faqlink\" href=\"http://www.nexusphp.com/wiki/%E5%AE%A2%E6%88%B7%E7%AB%AF%E6%B5%8B%E8%AF%95%E6%8A%A5%E5%91%8A\">在此查看</a>。\r\n<br />\r\n<b>Windows:</b>\r\n<ul>\r\n<li><a class=\"faqlink\" href=\"http://azureus.sourceforge.net\">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2及后续版本</li>\r\n<li><a class=\"faqlink\" href=\"http://www.utorrent.com\">uTorrent</a>: 1.6.1, 1.7.5, 1.7.6, 1.7.7, 1.8Beta(Build 10364), 2.0(Build 17624)及后续版本</li>\r\n<li><a class=\"faqlink\" href=\"http://www.bittorrent.com\">BitTorrent</a>: 6.0.1, 6.0.2, 6.0.3及后续版本</li>\r\n<li><a class=\"faqlink\" href=\"http://deluge-torrent.org\">Deluge</a>: 0.5.9.1, 1.1.6及后续版本</li>\r\n<li><a class=\"faqlink\" href=\"http://rufus.sourceforge.net\">Rufus</a>: 0.6.9, 0.7.0及后续版本</li>\r\n</ul>\r\n<b>Linux:</b>\r\n<ul>\r\n<li><a class=\"faqlink\" href=\"http://azureus.sourceforge.net\">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2及后续版本</li>\r\n<li><a class=\"faqlink\" href=\"http://deluge-torrent.org\">Deluge</a>: 0.5.9.1, 1.1.6及后续版本</li>\r\n<li><a class=\"faqlink\" href=\"http://rufus.sourceforge.net\">Rufus</a>: 0.6.9, 0.7.0及后续版本</li>\r\n<li><a class=\"faqlink\" href=\"http://www.transmissionbt.com\">Transmission</a>: 1.21及后续版本</li>\r\n<li><a class=\"faqlink\" href=\"http://libtorrent.rakshasa.no\">rTorrent</a>: 0.8.0(配合libtorrent 0.12.0或后续版本)及后续版本</li>\r\n<li><a class=\"faqlink\" href=\"http://www.rahul.net/dholmes/ctorrent/\">Enhanced CTorrent</a>: 3.3.2及后续版本</li>\r\n<li><a class=\"faqlink\" href=\"http://ktorrent.org/\">KTorrent</a>: 4.0.5及后续版本</li>\r\n</ul>\r\n<b>MacOS X:</b>\r\n<ul>\r\n<li><a class=\"faqlink\" href=\"http://azureus.sourceforge.net\">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2及后续版本</li>\r\n<li><a class=\"faqlink\" href=\"http://www.transmissionbt.com\">Transmission</a>: 1.21及后续版本</li>\r\n<li><a class=\"faqlink\" href=\"http://sourceforge.net/projects/bitrocket/\">BitRocket</a>: 0.3.3(32)及后续版本</li>\r\n</ul>\r\n<b>Symbian (仅供测试):</b>\r\n<ul>\r\n<li><a class=\"faqlink\" href=\"http://amorg.aut.bme.hu/projects/symtorrent\">SymTorrent</a>: 1.41及后续版本</li>\r\n</ul>\r\n<br />\r\n\r\n<b>以上客户端在https支持方面</b>\r\n<ul>\r\n<li>uTorrent 1.61: 无法准确解析https的tracker, 同时在使用会将自己标识为uTorrent 1.5</li>\r\n<li>Rufus: 没有https支持, 并且已经几年没有继续开发</li>\r\n<li>rtorrent: 需要手工设置SSL证书, 详细信息请自行查阅其官方网站说明</li>\r\n</ul>\r\n\r\n<br />\r\n\r\n同时请尽量避免使用处于测试期的客户端软件, 如uTorrent 1.8.0B。\r\n\r\n为了从本站得到最好的下载体验,我们高度推荐<a class=\"faqlink\" href=\"http://www.utorrent.com/download.php\">uTorrent</a> 以及<a class=\"faqlink\" href=\"http://azureus.sourceforge.net/download.php\">Azureus</a>这两个软件的最新稳定版。', '3', '5', '3');
INSERT INTO `faq` VALUES ('30', '30', '25', 'item', '为什么我正在下载/做种的一个种子会在我的详情页面中被列出多次?', '如果因为某些原因(比方说死机,客户端失去响应)你的客户端非正常退出并且你又重新打开它,它会被分配到一个全新的Peer ID, 这样它显示为一个全新的种子。而旧的种子将永远不会收到“event=completed”或“event=stopped”的信号,因此将一直被列出直到Tracker清理超时的Peer。 无视了它就可以了,它最后会消失的。', '1', '3', '4');
INSERT INTO `faq` VALUES ('31', '31', '25', 'item', '为什么我已经完成/取消的种子仍然在我的详情页面里?', '有一些客户端,比如说TorrentStorm和Nova Torrent,在取消或者完成一个任务的时候不能向Tracker服务器正确发送信号。在那样的情况下,Tracker服务器将一直保持等待信号的状态(因此会一直列出种子的状态为做种/下载的状态)直到Tracker清理超时的Peer。无视了它就可以了,它最后会消失的。', '0', '3', '5');
INSERT INTO `faq` VALUES ('33', '33', '25', 'item', '多IP(我可以从不同的电脑登录/下载吗?)', '是的,目前Tracker服务器支持单个用户从任意个数的IP地址同时访问/下载。<br />\r\n然而,对于单种是有限制的。对于每个种子,最多允许3个做种的连接,最多只允许1个下载的连接(这意味着,对于某个种子你一次只能在一个地方下载)。', '1', '3', '1');
INSERT INTO `faq` VALUES ('36', '36', '25', 'item', '为什么我不能发布种子?', '初学乍练以上级别能正常发种<br />\r\n土豆及入道新丁请在候选区发布候选.符合规定会很快通过并且提升等级一天\r\n<br />请看<a class=\"faqlink\" href=\"rules.php\">规则</a>。<br />\r\n发种规则请看<a class=\"faqlink\" href=http://pt.nwsuaf6.edu.cn/forums.php?action=viewtopic&forumid=13&topicid=540>点击进入</a>任何不符合规则的种子都会被删除', '3', '4', '1');
INSERT INTO `faq` VALUES ('37', '37', '25', 'item', '我需要满足哪些条件才能加入发布小组呢?', '你所必须满足的条件:\r\n<ul>\r\n<li>具有稳定的资源来源</li>\r\n<li>平均每周资源发布数量不少于5个</li>\r\n</ul>\r\n你必须确保发布的文件符合以下特征:\r\n<ul>\r\n<li>不超过7天之前</li>\r\n<li>你必须要有做种的能力,或者可以确保至少有效供种24小时。</li>\r\n<li>你需要有至少达到2MBit的上传带宽。</li>\r\n</ul>\r\n如果你认为你符合以上条件,那么不要犹豫,<a class=\"faqlink\" href=\"contactstaff.php\">联系管理组</a>吧。<br />\r\n<b>记住!</b> 仔细填写你的申请!确保申请中包含你的上传速度以及你计划发布的内容的类型。<br />\r\n只有仔细填写并且经过慎重考虑的申请才会纳入我们的视野。', '1', '4', '2');
INSERT INTO `faq` VALUES ('38', '38', '25', 'item', '我可以发布你们这里的种子到别的Tracker服务器么?', '不能。我们是一个封闭的、限制用户数的社区。只有注册用户才能够使用我们的Tracker。将我们的种子文件发布到其他Tracker服务器是徒劳的,因为绝大多数试图下载这些文件的人将无法连接到我们的服务器。将我们的种子发布到其他Tracker只让那里的用户恼怒(因为无法下载)并且对我们产生敌对情绪,所以这种行为是我们是不能容忍的。<br />\r\n<br />\r\n如果其他网站的管理员向我们举报我们的种子被发布在他们的站点上,对此负责的用户将因此被移出我们的社区。<br />\r\n<br />\r\n但是对于从我们这里下载得到的文件,你可以随意操控它们(发布者明确说明为<b>独占</b>的资源除外)。你可以制作另一个种子,写入其他Tracker的地址,并发布到你喜欢的站点上。', '1', '4', '3');
INSERT INTO `faq` VALUES ('39', '39', '25', 'item', '下载来的文件该怎么打开?', '在这份<a class=\"faqlink\" href=\"formats.php\">指引</a>里面找找看吧。', '0', '5', '1');
INSERT INTO `faq` VALUES ('40', '40', '25', 'item', '我下载了一部电影,但是不明白CAM/TS/TC/SCR是什么意思?', '在这份<a class=\"faqlink\" href=\"videoformats.php\">指引</a>里面找找看吧。', '0', '5', '2');
INSERT INTO `faq` VALUES ('41', '41', '25', 'item', '为什么一个可用的种子忽然就消失了?', '以下原因都会导致这个现象的出现:<br />\r\n(<b>1</b>) 按照<a class=\"faqlink\" href=\"rules.php\">网站规则</a>,这个种子不符合规则已被删除。\r\n<br />\r\n(<b>2</b>) 发布者因为文件存在问题而删除了它。一般来说,发布者会发布一个替代的版本的。<br />\r\n(<b>3</b>) 在长时间断种后种子被自动删除了。', '1', '5', '3');
INSERT INTO `faq` VALUES ('42', '42', '25', 'item', '续种及辅种教程', '首先,感谢你有想做种跟大家分享你电脑上资源的想法,感谢你对麦田的支持。\r\n \r\n 众所周知,如果随便发补相同的种子的话,会造成你不必要的浪费及管理员的工作量。辅种或者说补种是说如果你手上有某资源,但是别人已经发布过相同的资源在PT上,那么你就不需要利用UT重新制作种子,只需要“补种”或者“辅种”即可。\r\n \r\n 这样做和自己发布种子效果是一样的,只是发种人不是你而已,PT的目的是分享,这也是我们的宗旨。\r\n\r\n续种和辅种的步骤都是一样的,具体如下:\r\n<ul>\r\n<li>下载种子文件。</li>\r\n<li>打开种子文件,“保存位置”选文件现在的位置,并勾选“跳过散列检测”</li>\r\n<li>μTorrent的“状态”一栏提示“已检查 ××%”</li>\r\n<li>检查完成,“tracker状态”一栏提示“工作中”,表示操作成功</li>\r\n<li>若没有提示“已检查 ××%”,请确保文件相同,并且位置没有选错。</li>\r\n</ul>\r\n以上步骤的前提是你的资源和已经发布过的资源是否完全相同\r\n<br/><b>也有可能你没开ut的时候....无人做种...别人点了请求续种<br/>\r\n这样的话你只需要打开ut让种子开始做种就行了</b>', '1', '5', '4');
INSERT INTO `faq` VALUES ('43', '43', '25', 'item', '为什么我的下载有时候停在99%?', '你所下载到的片段越多,寻找拥有你所缺少的片段的同伴就将变得越困难。这就是为什么有时候在下载即将完成的时候,速度会变得非常慢,甚至完全停止了。只要耐心等候,或早或晚剩下的部分一定能够下载到的。<br />\r\n偶尔情况下会出现不能下载的状况<br />\r\n可以点击ut面板上的文件<br />\r\n找到红色的.即未下载完成的<br />向发布者私下索要此文件放进去校验', '3', '5', '5');
INSERT INTO `faq` VALUES ('44', '44', '25', 'item', '\"former volume not mounted\"这条信息是什么意思?', '1、请确认文件保存的位置存在。比如保存到了f盘,但是电脑上并没有f盘\r\n<br />2、麦田上配置好的ut会自动把种子文件保存到d盘,请确定电脑上存在d盘,或者更改此选项为别的路径。注意最好保存,否则可能导致无法正常做种\r\n<br />\r\n总之换个地方存试试吧', '3', '5', '6');
INSERT INTO `faq` VALUES ('45', '45', '25', 'item', '100MB大小的种子,我怎么下了120MB的东西回来?', '参见哈希验证失败的那个问题。如果你的客户端收到了错误的数据,那么它将会重新下载这一部分,因此总下载量有可能比种子大小略微大一些。确保“屏蔽发送错误数据的客户端”的那个选项被打开了,这样可以减少额外的下载。', '0', '5', '7');
INSERT INTO `faq` VALUES ('46', '46', '25', 'item', '为什么我的客户端的Tracker服务器状态出现\"Your ratio is too low! You need to wait xx h to start\"的错误?', '在<b>新</b>种子被上传到Tracker服务器之后,有一些用户必须等一些时间才能开始下载。<br>\r\n这个延迟只会影响那些分享率较低且下载量大于10G的用户。<br />\r\n<br />\r\n<table cellspacing=\"3\" cellpadding=\"0\">\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率低于</td>\r\n <td class=\"embedded\" width=\"40\">0.4</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">延迟</td>\r\n <td class=\"embedded\" width=\"100\">24小时</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率低于</td>\r\n <td class=\"embedded\" width=\"40\">0.5</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">延迟</td>\r\n <td class=\"embedded\" width=\"100\">12小时</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率低于</td>\r\n <td class=\"embedded\" width=\"40\">0.6</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">延迟</td>\r\n <td class=\"embedded\" width=\"100\">6小时</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率低于</td>\r\n <td class=\"embedded\" width=\"40\">0.8</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">延迟</td>\r\n <td class=\"embedded\" width=\"100\">3小时</td>\r\n</tr>\r\n</table>', '0', '5', '8');
INSERT INTO `faq` VALUES ('47', '47', '25', 'item', '为什么发生了这个错误? \"Port xxxx is blacklisted\"?', '你的客户端向Tracker服务器报告它正在使用某个默认的BT协议端口(6881-6889)或是任何其他常见P2P端口来作为连接端口。<br />\r\n<br />\r\n本站不允许这些通常被P2P协议默认使用的端口。原因是目前ISP常常对这些端口进行限速。<br />\r\n<br />\r\n被屏蔽的端口如下:<br />\r\n<br />\r\n<table cellspacing=\"3\" cellpadding=\"0\">\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">Direct Connect</td>\r\n <td class=\"embedded\" width=\"100\">411 - 413</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">BitTorrent</td>\r\n <td class=\"embedded\" width=\"100\">6881 - 6889</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">Kazza</td>\r\n <td class=\"embedded\" width=\"100\">1214</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">Gnutella</td>\r\n <td class=\"embedded\" width=\"100\">6346 - 6347</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">Emule</td>\r\n <td class=\"embedded\" width=\"100\">4662</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">WinMX</td>\r\n <td class=\"embedded\" width=\"100\">6699</td>\r\n </tr>\r\n</table>\r\n<br />\r\n要使用我们的Tracker服务器,你必须配置你的客户端使用未在上面列出的端口范围(从49152到65535都是不错的选择,参看<a class=\"faqlink\" href=\"http://www.iana.org/assignments/port-numbers\">IANA</a>)。注意某些客户端,如Azureus 2.0.7.0或更高版本,对所有的种子都使用同一端口。而其他大多数客户端为每一个种子开放一个端口,你在选择端口范围应考虑到这个问题(一般来说端口范围小于10。设置一个过大的范围并不一定有好处,而且可能有安全隐患)。 <br />\r\n<br />\r\n这些端口是用于同伴间通信的,而非用于客户端连接到Tracker服务器。因此这个改动并不会影响你使用其他Tracker服务器(事实上,它甚至可能<i>加快</i>所有Tracker服务器上种子的速度)。你的客户端也仍然能够连接到那些使用默认端口的同伴。如果你的客户端不支持自己自定义端口,那么换一个吧。<br />\r\n<br />\r\n不要向我们询问,或者在论坛里面提问究竟应该选择什么端口。我们的用户选择的端口越随机,ISP就越难以捉摸清楚我们使用的端口,从而无法对我们的端口进行限速。如果我们只是简单地规定一个范围,那么ISP又会很快对那个范围内的端口进行限速的。<br />\r\n<br />\r\n最后还要说的是,记得在你的路由和/或防火墙上打开你选择的端口,如果你有这些东西的话。', '0', '5', '9');
INSERT INTO `faq` VALUES ('48', '48', '25', 'item', '那么这个呢? “IO错误 - [错误号13] 许可被拒绝”?', '如果你只是想要解决这个问题的话,重新启动你的电脑应该就可以了。否则的话,继续读下去。<br />\r\n<br />\r\nIO错误指的是输入-输出错误,这是一个文件系统错误,而非来自我们的Tracker服务器。当你的客户端由于某些原因不能打开种子中未下载完成的文件时,这个错误就会发生。 通常原因是客户端的两个实例同时在运行:当上一次关闭客户端时因为某种原因它没有被真正关闭,从而始终在后台运行。因此文件被锁定,使得新的实例不能打开这个文件。<br />\r\n<br />\r\n另外一个不常出现的原因是因为老旧的FAT文件系统。某些系统崩溃可能导致未下载完成的文件损坏,接着就出现了这个错误。运行一次scandisk应该可以解决这个问题。注意,只有当你使用Windows 9X操作系统(只支持FAT文件系统)或者在Windows NT/2000/XP中使用FAT文件系统的时候才比较可能出现这个问题。NTFS文件系统要健壮许多,不太可能出现这样的问题。', '1', '5', '10');
INSERT INTO `faq` VALUES ('476', '12', '25', 'item', '为什么我无法下载本站资源?', '在网络通畅的前提下,若做种数为0则说明无人做种因此暂时无法下载.需要做种的人打开ut开始做种的时候才会有速度..可以请求续种或者试试别的资源;若做种数非0还是无法下载说明你的客户端有问题,试试这个客户端吧!<a class=\"faqlink\" href=uTorrent221.zip>http://pt.nwsuaf6.edu.cn/uTorrent221.zip</a>(右键-“目标另存为”即可下载)。<br /><br />\r\n注意:下载完成后请 不要 立即关闭客户端,这样你在分享他人的资源时别人也可以分享你的资源,同时你的用户等级也会慢慢提升;反之,只知索取却不愿奉献,你将被自动降级直至无法下载任何资源。对待生活亦应如此。\r\n<br />\r\n<br />\r\n请先阅读新手入门<a class=\"faqlink\" href=http://pt.nwsuaf6.edu.cn/forums.php?action=viewtopic&forumid=13&topicid=1728>点击进入</a><br /><br />第一次下载或者土豆用户下载千万不要右键另存为<br />\r\n点击左键会出现提醒分享率的页面.点击已阅读方可正常下载<br /><br />', '3', '1', '3');
INSERT INTO `faq` VALUES ('481', '77', '25', 'item', '上传下载没有速度or速度很慢', '首先请确定ut右下角显示的是绿色图标.<br />\r\n就在显示上传下载速度附近.绿色会提示网络正常\r\n<br />\r\n黄色或者红色<br />\r\n请关闭系统自带防火墙<br />\r\n并请点击设置->连接->随机端口\r\n<br />\r\n确定并且等待一段时间<br />\r\n\r\n<br />\r\n然后请确定种子有人上传<br />\r\n点击种子详情下方有做种状态<br />\r\n最后请确定上传者可连接<br />\r\n请私信上传者检查第一步<br />\r\n<br />\r\n<br />如果仍然不能解决请加新手群<br /><br />', '3', '5', '20');
INSERT INTO `faq` VALUES ('482', '78', '25', 'item', '土豆将不能下载资源了么?', '土豆用户有30天的时间提高自己的分享率<br />\r\n<br />\r\n请先阅读新手入门<a class=\"faqlink\" href=http://pt.nwsuaf6.edu.cn/forums.php?action=viewtopic&forumid=13&topicid=1728>点击进入</a><br /><br />第一次下载或者土豆用户下载千万不要右键另存为<br />\r\n点击左键会出现提醒分享率的页面.点击已阅读方可正常下载<br /><br />\r\n下载置顶的免费热门种子并保种一段时间是提高分享率的好方法<br />\r\n一般两天内就能从土豆脱离出来<br />\r\n<br />', '3', '5', '21');
INSERT INTO `faq` VALUES ('51', '51', '25', 'item', '限制上传速度', '上传速度将从以下两种方式显著影响下载速度:\r\n<ul>\r\n <li>Bittorrent的同伴倾向于回馈那些给它们提上传的同伴。这就意味着如果A和B正在同时下载一个文件,而A又在高速向B传送数据,那么B将会尝试着回报A。因此高速上传将导致高速下载。</li>\r\n\r\n <li>由于TCP协议的工作方式,当A正从B下载某些东西的时候,A必须不停地向B发送成功收到B所发送来的数据的信号(被称为确认──ACK ── 某种“已收到”的信息)。如果A没有发送ACK信号,那么B将暂停向A发送数据并且进入等候状态。如果A正在全速上传,很有可能没有用来发送ACK信号的带宽,因此ACK信号被耽搁。在这种情况下,过高速度的上传导致了低速的下载。</li>\r\n</ul>\r\n实际的效果是以上两个原因的结合。上传速度应该在保证ACK能正常传输的前提下被设得尽量高。 <b>一个很好的实践理论是保持上传速度在理论上限的80%。</b>你也可以细细研究什么是最适合你的速度(同时也请记住高速上传对于你的分享率很有帮助)。<br />\r\n<br />\r\n如果你正在运行一个以上的种子任务,你应该考虑的是全局上传速度。某些客户端能限制了全局上传速度,其他的则能对每一个种子分别进行设置。了解你的客户端。如果你正在使用你的电脑做别的某些应用(比方说上网或者从FTP拖东西),也需考虑一下它们对于全局上传的影响。', '1', '6', '2');
INSERT INTO `faq` VALUES ('52', '52', '25', 'item', '限制同时连接数', '某些操作系统(例如Windows 9X)对于大量连接数支持不完善,甚至有可能因此而崩溃。也有一些家用路由(尤其当运行着NAT以及/或者打开防火墙状态检查服务时)会因大量连接数而变得很慢或者崩溃。对于连接数没有固定的最佳值,你可以试试看60或者100。记住这些连接数是累加的,所以如果你的客户端运行了两个会话,这两个数字要加在一起。', '1', '6', '3');
INSERT INTO `faq` VALUES ('53', '53', '25', 'item', '限制同时上传数', '上传数难道和连接数有什么不一样吗?是的,两者是不同的。连接数限制了你的客户端所能对话以及/或者下载的同伴数。上传数则限制了你的客户端实际能上传的同伴数。理想的数值一般要比连接数低许多,并且与你的物理带宽高度相关。', '1', '6', '4');
INSERT INTO `faq` VALUES ('54', '54', '25', 'item', '那怎么办?等待一会吧', '如我们在上面所解释的,在BT下载过程中一个同伴更加倾向于回报那些上传给它的同伴。当你开始一个新的下载任务时,你没有文件片断提高给其他同伴,因此他们通常会无视你。这使得开始阶段的下载非常缓慢,由其是当你所连接到的同伴只有很少是(或者没有)做种者。一旦你获得了一些能用于共享的文件片断,下载速度会有所改观。', '1', '6', '5');
INSERT INTO `faq` VALUES ('55', '55', '25', 'item', '为什么在我下载的时候浏览网页速度如此之慢?', '你的下载带宽是有限的。如果你正在下载一个速度很快的种子,它几乎肯定将占满你的下载带宽。这是浏览网页显然就会变慢。很多BT客户端允许你限制下载速度,你可以试试。<br />\r\n<br />\r\n浏览网页只是作为举例之一,同样的问题也会出现在游戏,即时通信软件上......', '1', '6', '1');
INSERT INTO `faq` VALUES ('56', '56', '25', 'item', '什么是代理?', '基本上说,代理就是中间人。当你通过代理访问某个站点的时候,你的请求将首先被发送到代理处,然后由代理转发到你所请求的站点,而不是你直接连通到网站。下面是几种典型的代理分类(术语不是那么的规范):<br />\r\n<br />\r\n<table cellspacing=\"3\" cellpadding=\"0\">\r\n <tr>\r\n <td class=\"embedded\" valign=\"top\" width=\"100\"> 透明代理</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" valign=\"top\">透明代理在客户端无需配置。他将自动把80端口的信息重定向到代理(有时候也作为非匿名代理的同义词);</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" valign=\"top\"> 显式代理</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" valign=\"top\">浏览器必须经过配置才能使用代理;</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" valign=\"top\"> 匿名代理</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" valign=\"top\">代理将不会把客户标记发送至服务器端 (HTTP_X_FORWARDED_FOR头标志将不被发送。服务器也因此看不到你的IP);</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" valign=\"top\"> 高度匿名代理</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" valign=\"top\">代理将不会把客户标记或代理标记发送至服务器端 (HTTP_X_FORWARDED_FOR和HTTP_VIA and HTTP_PROXY_CONNECTION头标志将不被发送。服务器看不到你的IP,甚至不知道你正在使用代理);</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" valign=\"top\"> 公用</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" valign=\"top\">(不言自明了)。</td>\r\n </tr>\r\n</table>\r\n<br />\r\n透明代理可能是匿名的,也可能是非匿名的,且匿名也有相应的等级。', '1', '7', '1');
INSERT INTO `faq` VALUES ('57', '57', '25', 'item', '我该怎样发现自己正处于一个(透明的/匿名的)代理后面?', '试试看<a href=\"http://proxyjudge.org\" class=\"faqlink\">ProxyJudge</a>。它列出了服务器端从你这里所收到的HTTP的头标志。相关的几个标志是HTTP_CLIENT_IP,HTTP_X_FORWARDED_FOR和REMOTE_ADDR。', '1', '7', '2');
INSERT INTO `faq` VALUES ('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');
INSERT INTO `faq` VALUES ('62', '62', '25', 'item', '也许是因为我的IP地址被列入黑名单了?', '这个网站有屏蔽被禁用户或攻击者的IP地址的功能。该功能在Apache/PHP层面上起作用,且只能屏蔽从这些地址<i>登录</i>网站。这不会阻止你<i>连接</i>到网站,更无法从底层的协议层面进行屏蔽。即便你的地址已经被列入了黑名单,你应该仍能够通过ping/traceroute命令连同服务器。如果你不能连通服务器,那么问题的原因在别处。<br />\r\n<br />\r\n如果你的IP地址因某种原因错误地被我们屏蔽了,请联系我们。', '1', '8', '1');
INSERT INTO `faq` VALUES ('63', '63', '25', 'item', '你的ISP屏蔽了本站的地址', '首先,这一般不像你的ISP的所作所为。DNS域名解析以及/或者网络问题是常见的真凶。\r\n<br />\r\n对此我们无能为力。你应该联系你的ISP(或者换一个)。记住你仍然可以通过代理访问本站,参看此常见问题关于代理的部分。在这种情况下,代理是否匿名或者使用哪个监听端口都不重要了。<br />\r\n<br />\r\n注意,你的“可连接状态”将因此一直被列为“否”,因为此时Tracker服务器无法检查你的BT客户端接收连接的状态。', '1', '8', '2');
INSERT INTO `faq` VALUES ('65', '65', '25', 'item', '不妨试试这个', '论坛同样有很多解决问题的帖子<a class=\"faqlink\" href=http://pt.nwsuaf6.edu.cn/forums.php?action=viewforum&forumid=13>点击进入</a><br />\r\n用任何手段在<a class=\"faqlink\" href=\"forums.php\">论坛</a>发帖。通常情况下你能得到友善而有用的帮助。这里给你一些基本的指导:<ul>\r\n<li>确保你的问题的确不在这篇FAQ中。这样的发帖导致的结果就是返回这篇FAQ。</li>\r\n<li>在发帖之前,看看置顶。很多时候,还没有被我们的FAQ所收录的最新的信息都可以在那里被找到。</li>\r\n<li>帮助我们也就是帮助你自己。不要仅仅说“嘿我这里出问题了!!”提供一些详情,这样我们就不用猜测或者浪费时间来询问了。你使用的是什么客户端?什么操作系统?怎样的网络设置?如果发生了错误,是什么样的具体错误信息?有问题的种子文件是哪个?你所提供的信息越多,对你的帮助也就越容易,你的帖子也就更加容易得到回复。</li>\r\n<li>不需要说的是:保持礼貌。趾高气扬得命令别人帮助你很少会有用。</li></ul>\r\n<br /><br /><br />\r\n如果均没有解决问题请加麦田新手群.会有人为你解决问题145543216\r\n\r\n请善用论坛的搜索功能<a class=\"faqlink\" href=http://pt.nwsuaf6.edu.cn/forums.php?action=search>点击进入</a><br />', '3', '9', '1');
INSERT INTO `faq` VALUES ('66', '66', '25', 'item', '什么是\"Your slot limit is reached! You may at most download xx torrents at the same time\"错误?', '这是“最大连接数系统”。最大连接数系统用于限制那些分享率较低且下载量大于10GB的用户的最大同时下载数。<br /><br />\r\n规则如下: <br /><br />\r\n<table cellspacing=\"3\" cellpadding=\"0\">\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率低于</td>\r\n <td class=\"embedded\" width=\"40\">0.5</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">最大连接数</td>\r\n <td class=\"embedded\" width=\"40\">1</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率低于</td>\r\n <td class=\"embedded\" width=\"40\">0.65</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">最大连接数</td>\r\n <td class=\"embedded\" width=\"40\">2</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率低于</td>\r\n <td class=\"embedded\" width=\"40\">0.8</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">最大连接数</td>\r\n <td class=\"embedded\" width=\"40\">3</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率低于</td>\r\n <td class=\"embedded\" width=\"40\">0.95</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">最大连接数</td>\r\n <td class=\"embedded\" width=\"40\">4</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率大于</td>\r\n <td class=\"embedded\" width=\"40\">0.95</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">最大连接数</td>\r\n <td class=\"embedded\" width=\"40\">无限制</td>\r\n</tr>\r\n</table>\r\n<br />\r\n无论何时,同时的上传数不设限。但是如果你当前的下载数已达到了你的最大连接数,这时开启新的做种任务,你也会收到同样的错误提示。在这种情况下,你必须先关闭一个下载任务,然后开启所有的上传任务,然后继续刚才关闭的下载任务。因为当你的连接数被占满,系统将不加验证直接拒绝任何下载或上传的请求。 <br />\r\n<br /><br />\r\n你可以在任意时间察看自己的连接数,该信息在页面顶端信息栏中被列出。', '0', '5', '12');
INSERT INTO `faq` VALUES ('67', '67', '25', 'item', '什么是密钥系统?它是怎么工作的?什么时候我需要重置我的密钥?', '密钥系统在BT客户端连接Tracker服务器时起到验证身份的作用。每一个用户都有一个系统随机生成的密钥。当用户下载某个种子文件时,他的私人密钥被添加到种子文件的Tracker服务器URL中。通过这种方式,你可以在家中或者办公室使用不同的IP来做种某个文件。\r\n <ul><li> 如果你的密钥被泄漏,且别的用户正在使用这个密钥(即使用你的帐户)下载文件。在这种情况下,你能在你的详情页面看到你并未下载或上传的种子。</li>\r\n<li>当你的客户端崩溃,或者你的连接并没有正常被终止。在这样的情况下,就算你已经关闭了你的客户端,你仍然在你的详情页面看到正在上传/下载的记录。通常情况下这些“冗余种子”将在30分钟之内被自动清除,但是如果你马上继续你的下载而服务器又提示“You already are downloading the same torrent”的错误,那么你需要重置你的密钥,然后重新下载种子文件,之后继续下载过程。 </li></ul>\r\n\r\n\r\n\r\n', '1', '5', '13');
INSERT INTO `faq` VALUES ('68', '68', '25', 'item', '“Unknown passkey”这错误是咋回事?', '首先,如果你不是我们的注册用户,将会发生这个错误。其次,有可能你没有在登录状态下从我们的网页里下载种子文件。如果是这两种情况,只要注册一个帐号或者登录后下载种子文件就可以了。<br />\r\n另外,当你注册了一个新用户并且开始第一次下载的时候,或者你刚刚重置了你的密钥时,也可能出现这个错误。原因是系统并非实时检查密钥的改变。如果是因为这个原因,那么就让种子任务等一会儿,最后一定能收到Tracker服务器发回的成功信息。', '0', '5', '14');
INSERT INTO `faq` VALUES ('69', '69', '25', 'item', '什么时候我需要重置我的密钥?', '<ul><li> 如果你的密钥被泄漏,且别的用户正在使用这个密钥(即使用你的帐户)下载文件。在这种情况下,你能在你的详情页面看到你并未下载或上传的种子。</li>\r\n<li>当你的客户端崩溃,或者你的连接并没有正常被终止。在这样的情况下,就算你已经关闭了你的客户端,你仍然在你的详情页面看到正在上传/下载的记录。通常情况下这些“冗余种子”将在30分钟之内被自动清除,但是如果你马上继续你的下载而服务器又提示“You already are downloading the same torrent”的错误,那么你需要重置你的密钥,然后重新下载种子文件,之后继续下载过程。 </li></ul>', '1', '5', '15');
INSERT INTO `faq` VALUES ('70', '70', '25', 'item', 'DHT是什么?为什么一定要关闭这个功能?', 'DHT必须从你的客户端被禁止。DHT可能导致你的数据被错误地记录,可以视为一种作弊行为。任何使用DHT的用户将因作弊而被系统禁止。<br />\r\n幸运的是,目前Tracker服务器会自动分析用户上传的种子文件,强制去除DHT的支持。这也是为什么种子发布者必须重新下载种子才能正常做种的原因之一。', '1', '5', '16');
INSERT INTO `faq` VALUES ('74', '74', '25', 'item', '为什么我的磁盘还有充足的空间,却提示“一个或多个文件超出系统文件大小限制,这些文件无法被正确保存”?', '很可能是因为你的磁盘分区的文件系统为FAT32,该文件系统不支持大于4GB的单个文件。如果你使用的是Windows系统,你可以在磁盘的属性中查看其文件系统信息。你可以将磁盘文件系统转换成更高级的NTFS来解决该问题。<br />\r\n你可以在命令行窗口使用convert命令将FAT32无损转成NTFS文件系统格式。<br /><br />\r\n<b>命令说明</b>\r\nCONVERT volume /FS:NTFS [/V] [/CvtArea:filename] [/NoSecurity] [/X]<br />\r\nvolume 指定驱动器号(后面跟一个冒号)、装载点或卷名。<br />\r\n/FS:NTFS 指定要被转换成 NTFS 的卷。<br />\r\n/V 指定 Convert 应该用详述模式运行。<br />\r\n/CvtArea:filename 将根目录中的一个接续文件指定为NTFS 系统文件的占位符。<br />\r\n/NoSecurity 指定每个人都可以访问转换的文件和目录的安全设置。<br />\r\n/X 如果必要,先强行卸载卷。该卷的所有打开的句柄则无效。 <br /><br />\r\n<b>简单说</b><br />:\r\n打开 命令提示符窗口。<br />\r\n在命令提示符窗口,请键入:<br />\r\nconvert drive_letter:/fs:ntfs<br />\r\n例如:转换D盘为NTFS,可输入convert D:/fs:ntfs\r\nPS:win7可能需要以管理员身份运行命令行:开始>>所有程序>>附件>>右击“命令提示符”,“以管理员身份运行”,如果还不懂,联系管理员。', '1', '5', '17');
INSERT INTO `faq` VALUES ('374', '74', '28', 'item', '為什么我的磁碟還有充足的空間,用戶端卻輔助說明磁碟剩餘空間不足?', '很可能是因為你的磁碟割區的檔案系統為FAT32,該檔案系統不支援大于4GB的單個檔案。如果你使用的是Windows系統,你可以在磁碟的屬性中檢視其檔案系統資訊。你可以將磁碟檔案系統轉換成更進階的NTFS來解決該問題。<br />\r\n你可以在指令行視窗使用convert指令將FAT32無損轉成NTFS檔案系統格式。<br /><br />\r\n<b>指令說明</b>\r\nCONVERT volume /FS:NTFS [/V] [/CvtArea:filename] [/NoSecurity] [/X]<br />\r\nvolume 指定磁碟機號(后面跟一個冒號)、裝載點或卷名。<br />\r\n/FS:NTFS 指定要被轉換成 NTFS 的卷。<br />\r\n/V 指定 Convert 應該用詳述型態執行。<br />\r\n/CvtArea:filename 將根目錄中的一個接續檔案指定為NTFS 系統檔案的占位符。<br />\r\n/NoSecurity 指定每個人都可以存取轉換的檔案和目錄的安全設定。<br />\r\n/X 如果必要,先強行卸載卷。該卷的所有開啟的控點則無效。 <br /><br />\r\n<b>簡單說</b><br />:\r\n開啟 指令輔助說明符視窗。<br />\r\n在指令輔助說明符視窗,請鍵入:<br />\r\nconvert drive_letter:/fs:ntfs<br />\r\n例如:轉換D槃為NTFS,可匯入convert D:/fs:ntfs', '1', '5', '17');
INSERT INTO `faq` VALUES ('368', '68', '28', 'item', '“Unknown passkey”這錯誤是咋回事?', '首先,如果你不是我們的註冊用戶,將會發生這個錯誤。其次,有可能你沒有在登入狀態下從我們的網頁裡下載種子檔案。如果是這兩種情況,只要註冊一個帳號或者登入后下載種子檔案就可以了。<br />\r\n另外,當你註冊了一個新用戶并且開始第一次下載的時候,或者你剛剛重置了你的加密鍵時,也可能出現這個錯誤。原因是系統并非實時檢查加密鍵的改變。如果是因為這個原因,那么就讓種子工作等一會兒,最后一定能收到Tracker伺服器發回的成功資訊。', '1', '5', '14');
INSERT INTO `faq` VALUES ('369', '69', '28', 'item', '什么時候我需要重置我的加密鍵?', '<ul><li> 如果你的加密鍵被泄漏,且別的用戶正在使用這個加密鍵(即使用你的帳戶)下載檔案。在這種情況下,你能在你的詳情頁面看到你并未下載或上傳的種子。</li>\r\n<li>當你的用戶端崩潰,或者你的連線并沒有正常被終止。在這樣的情況下,就算你已經關閉了你的用戶端,你仍然在你的詳情頁面看到正在上傳/下載的記錄。通常情況下這些“多餘種子”將在30分鐘之內被自動清除,但是如果你馬上繼續你的下載而伺服器又輔助說明“You already are downloading the same torrent”的錯誤,那么你需要重置你的加密鍵,然后重新下載種子檔案,之后繼續下載過程。 </li></ul>', '1', '5', '15');
INSERT INTO `faq` VALUES ('370', '70', '28', 'item', 'DHT是什么?為什么一定要關閉這個功能?', 'DHT必須從你的用戶端被禁止。DHT可能導致你的資料被錯誤地記錄,可以視為一種作弊行為。任何使用DHT的用戶將因作弊而被系統禁止。<br />\r\n幸運的是,目前Tracker伺服器會自動解析用戶上傳的種子檔案,強制去除DHT的支援。這也是為什么種子發布者必須重新下載種子才能正常做種的原因之一。', '1', '5', '16');
INSERT INTO `faq` VALUES ('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.<br /><br />\r\nMoreover, we give a detailed tutorial on how to do the translation <a href=\"#73\" class=\"faqlink\"><b>HERE</b></a>. And our coders would be more than pleased to answer the questions you may encounter.<br /><br />\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.<br /><br />\r\nSo, if you think you could help, feel free to <a class=\"faqlink\" href=\"contactstaff.php\"><b>CONTACT US</b></a>. Needless to say, you would be rewarded.', '1', '71', '1');
INSERT INTO `faq` VALUES ('373', '73', '28', 'item', 'The translation tutorial', '<ul>\r\n<li>How does multi-language work?<br />\r\nCurrently we use language files to store all the static words that a user can see on web pages. <br />\r\nEvery php code file has a corresponding language file for a certain language. And we named the language file \'lang_\' plus the filename of the php code file. i.e. the language file of the php code file \'details.php\' would be \'lang_details.php\'. <br />\r\nWe has some mechanism in php codes to read the exact language files of user\'s preferred language, and you shouldn\'t worry about that.<br /></li>\r\n<li>What\'s in language files?<br />\r\nIn a language file is an array of strings. These strings contain all the static words that a user can see on web pages. When we need to say some words on a php code file, we call for a string in the array. And the output of the php code file, that is what users see on the web pages, would show the value of the string.<br />\r\nSounds dizzying? Well, you need not care about all these. All you gotta do is translate the values of the strings in the language files into another language. <b>Let\'s see an example</b>:<br /><br />\r\nThe following is the content of the English language file \'lang_users.php\', which works for the php code file \'users.php\'. <br /><br />\r\n<img src=\"pic/langfileeng.png\" alt=\"langfileeng\" /><br />\r\nIf you wanna translate it into Simplified Chinese, all you need is edit the file into this:<br />\r\n<img src=\"pic/langfilechs.png\" alt=\"langfilechs\" /><br />\r\nSee, in every line, the left part, that is before <i>=></i>, is the name of a string, which you shouldn\'t touch. All you need to is translate the right part, after <i>=></i>, which is the value of the string, into another language.<br />\r\nSometimes you need to look at the corresponding web pages to get the context meaning of some words.<br /></li>\r\n<li>Sounds easy? See what do you need to do.<br />\r\nIf you feel like to help us, <a class=\"faqlink\" href=\"aboutnexus.php#contact\"><b>CONTACT US</b></a> and we will send you a pack of the English language files (or any other available language if you prefer). Received it, you can start translating the value of strings (which is in English), into another language. It should take you several hours to do the whole work. After this, send back the translated language files to us.<br />\r\nIf no bugs or hacking codes are found in testing, we would put the new language into work.<br />\r\nSometimes the language files need to be updated, typically adding new strings, when site codes are updated. If you feel like it, you can help maintain the language files.<br /></li>\r\n<li><font color=\"red\"><b>IMPORTANT</b></font><br />\r\nThe text of language files must be encoded in UTF-8. When saving files, be sure to set the character encoding to UTF-8. Otherwise mojibake may happen.</li></ul>', '1', '71', '2');
INSERT INTO `faq` VALUES ('362', '62', '28', 'item', '也許是因為我的IP位址被列入黑名單了?', '這個網站有屏蔽被禁用戶或攻擊者的IP位址的功能。該功能在Apache/PHP層面上起作用,且只能屏蔽從這些位址<i>登入</i>網站。這不會阻止你<i>連線</i>到網站,更無法從底層的協定層面進行屏蔽。即便你的位址已經被列入了黑名單,你應該仍能夠通過ping/traceroute指令連同伺服器。如果你無法連通伺服器,那么問題的原因在別處。<br />\r\n<br />\r\n如果你的IP位址因某種原因錯誤地被我們屏蔽了,請聯繫我們。', '1', '8', '1');
INSERT INTO `faq` VALUES ('363', '63', '28', 'item', '你的ISP屏蔽了本站的位址', '首先,這一般不像你的ISP的所作所為。DNS域名解析以及/或者網路問題是常見的真凶。\r\n<br />\r\n對此我們無能為力。你應該聯繫你的ISP(或者換一個)。記住你仍然可以通過代理存取本站,參看此常見問題關于代理的部分。在這種情況下,代理是否匿名或者使用哪個監聽通訊埠都不重要了。<br />\r\n<br />\r\n注意,你的“可連線狀態”將因此一直被列為“否”,因為此時Tracker伺服器無法檢查你的BT用戶端接收連線的狀態。', '1', '8', '2');
INSERT INTO `faq` VALUES ('365', '65', '28', 'item', '不妨試試這個', '用任何手段在<a class=\"faqlink\" href=\"forums.php\">論壇</a>發帖。通常情況下你能得到友善而有用的輔助說明。這裡給你一些基本的指導:<ul>\r\n<li>確保你的問題的確不在這篇FAQ中。這樣的發帖導致的結果就是傳回這篇FAQ。</li>\r\n<li>在發帖之前,看看置頂。很多時候,還沒有被我們的FAQ所收錄的最新的資訊都可以在那裡被找到。</li>\r\n<li>輔助說明我們也就是輔助說明你自己。不要僅僅說“嘿我這裡出問題了!!”提供一些詳情,這樣我們就不用猜測或者浪費時間來詢問了。你使用的是什么用戶端?什么作業系統?怎樣的網路設定?如果發生了錯誤,是什么樣的具體錯誤資訊?有問題的種子檔案是哪個?你所提供的資訊越多,對你的輔助說明也就越容易,你的帖子也就更加容易得到回覆。</li>\r\n<li>不需要說的是:保持禮貌。趾高氣揚得指令別人輔助說明你很少會有用。</li></ul>', '1', '9', '1');
INSERT INTO `faq` VALUES ('366', '66', '28', 'item', '什么是\"Your slot limit is reached! You may at most download xx torrents at the same time\"錯誤?', '這是“最大連線數系統”。最大連線數系統用于限制那些分享率較低且下載量大于10GB的用戶的最大同時下載數。<br /><br />\r\n規則如下: <br /><br />\r\n<table cellspacing=\"3\" cellpadding=\"0\">\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率低于</td>\r\n <td class=\"embedded\" width=\"40\">0.5</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">最大連線數</td>\r\n <td class=\"embedded\" width=\"40\">1</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率低于</td>\r\n <td class=\"embedded\" width=\"40\">0.65</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">最大連線數</td>\r\n <td class=\"embedded\" width=\"40\">2</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率低于</td>\r\n <td class=\"embedded\" width=\"40\">0.8</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">最大連線數</td>\r\n <td class=\"embedded\" width=\"40\">3</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率低于</td>\r\n <td class=\"embedded\" width=\"40\">0.95</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">最大連線數</td>\r\n <td class=\"embedded\" width=\"40\">4</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率大于</td>\r\n <td class=\"embedded\" width=\"40\">0.95</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">最大連線數</td>\r\n <td class=\"embedded\" width=\"40\">無限制</td>\r\n</tr>\r\n</table>\r\n<br />\r\n無論何時,同時的上傳數不設限。但是如果你目前的下載數已達到了你的最大連線數,這時開啟新的做種工作,你也會收到同樣的錯誤輔助說明。在這種情況下,你必須先關閉一個下載工作,然后開啟所有的上傳工作,然后繼續剛才關閉的下載工作。因為當你的連線數被占滿,系統將不加驗證直接拒絕任何下載或上傳的要求。 <br />\r\n<br /><br />\r\n你可以在任意時間察看自己的連線數,該資訊在頁面頂端資訊欄中被列出。', '0', '5', '12');
INSERT INTO `faq` VALUES ('367', '67', '28', 'item', '什么是加密鍵系統?它是怎么工作的?', '加密鍵系統在BT用戶端連線Tracker伺服器時起到驗證身份的作用。每一個用戶都有一個系統隨機生成的加密鍵。當用戶下載某個種子檔案時,他的私人加密鍵被添加到種子檔案的Tracker伺服器URL中。通過這種方式,你可以在家中或者辦公室使用不同的IP來做種某個檔案。\r\n\r\n', '1', '5', '13');
INSERT INTO `faq` VALUES ('301', '1', '28', 'categ', '網站資訊', '', '1', '0', '1');
INSERT INTO `faq` VALUES ('302', '2', '28', 'categ', '用戶資訊', '', '1', '0', '2');
INSERT INTO `faq` VALUES ('303', '3', '28', 'categ', '資料統計', '', '1', '0', '3');
INSERT INTO `faq` VALUES ('304', '4', '28', 'categ', '發布', '', '1', '0', '4');
INSERT INTO `faq` VALUES ('305', '5', '28', 'categ', '下載', '', '1', '0', '5');
INSERT INTO `faq` VALUES ('306', '6', '28', 'categ', '我該怎樣提升下載速度?', '', '1', '0', '6');
INSERT INTO `faq` VALUES ('307', '7', '28', 'categ', '我的網路提供商(ISP)使用了透通代理。我應該怎么做?', '', '1', '0', '7');
INSERT INTO `faq` VALUES ('308', '8', '28', 'categ', '為什么我連不上?難道我被網站屏蔽了?', '', '1', '0', '8');
INSERT INTO `faq` VALUES ('309', '9', '28', 'categ', '如果從這裡找不到我的問題的解答,我該怎么辦?', '', '1', '0', '9');
INSERT INTO `faq` VALUES ('310', '10', '28', 'item', '到底什么是BT(Bittorrent)?我要如何才能弄到這類程式?', '參看<a class=\"faqlink\" href=\"http://www.btfaq.com/\">Brian的BitTorrent FAQ及指導</a>。', '1', '1', '1');
INSERT INTO `faq` VALUES ('311', '11', '28', 'item', '我們捐出來的錢上哪兒去了?', '所有捐助的錢用于維護伺服器的費用。', '1', '1', '2');
INSERT INTO `faq` VALUES ('312', '12', '28', 'item', '我從哪裡可以搞到來源碼的拷貝?', '這個Tracker使用的是NexusPHP的程式碼。程式碼抓取事宜,請看<a class=\"faqlink\" href=\"aboutnexus.php\">這裡</a>。<br />\r\nNexusPHP的程式碼是根據TBSource的源碼改寫的。TBDev網站,Tracker來源碼以及社區論壇都在這裡:<a class=\"faqlink\" href=\"http://www.tbdev.net/\">TBDev.net</a>。', '1', '1', '3');
INSERT INTO `faq` VALUES ('313', '13', '28', 'item', '我註冊了一個賬號但是卻沒有收到驗證郵件!', '這很有可能是Tracker所在的伺服器網路出現了問題。你可以填寫<a href=\"confirm_resend.php\" class=\"faqlink\">這個表格</a>讓伺服器重發驗證郵件。<br />\r\n通常沒有得到確認的註冊帳戶會在24小時后被移除,所以你可以在第二天重試。需要注意的是,如果你第一次沒有收到確認信,第二次有很大的可能仍然無法收到確認信,所以換一個E-mail位址是一個不錯的主意。', '1', '2', '1');
INSERT INTO `faq` VALUES ('314', '14', '28', 'item', '我忘記了我的用戶名/密碼了,能幫我找回來么?', '請填寫<a class=\"faqlink\" href=\"recover.php\">這個表單</a>,我們將把登入詳情發還給你。', '1', '2', '2');
INSERT INTO `faq` VALUES ('315', '15', '28', 'item', '我可以給我的賬號改個名字么?', '我們并不支援給賬號改名。', '1', '2', '3');
INSERT INTO `faq` VALUES ('316', '16', '28', 'item', '你可以移除一個(已確認的)賬號么?', '我們一般不提供該類服務,所以不要要求移除任何一個被你邀請的帳號。', '1', '2', '4');
INSERT INTO `faq` VALUES ('317', '17', '28', 'item', '那么,什么是我的分享率(Ratio)?', '就在頁面功能割區的下面。<br />\r\n<br />\r\n<img src=\"pic/ratio.png\" alt=\"ratio\" />\r\n<br />\r\n<br />\r\n區分你的整體分享率和獨立分享率是很重要的。整體分享率關注的是自從你加入網站以來,賬號的整體上傳與下載量。而獨立分享率則針對每一個你正在下載或做種的檔案。\r\n<br />\r\n<br />\r\n你可能看到兩種象徵式來代替數字:\"Inf.\",這個是無限(Infinity)的縮寫,意思是你的下載量為0位元組,而上傳量則是任意一個非零的值(上傳量/下載量=無窮大);\"---\",應該被視為“不可用”,這說明了你的下載量和上傳量都是0位元組。(上傳量/下載量=0/0 這是一個不確定的量)。\r\n', '1', '2', '5');
INSERT INTO `faq` VALUES ('318', '18', '28', 'item', '為什么我的IP位址察看在我的個人資訊頁面上?', '只有你自己和網站Moderator及以上的管理員可以看到你的IP位址和Email。普通用戶是看不到這些資訊的。', '1', '2', '6');
INSERT INTO `faq` VALUES ('321', '21', '28', 'item', '為什么我的“可連線”是“否”?(以及為什么我需要關注這個問題?)', 'Tracker伺服器認為你在防火牆后,或者在NAT橋接后,并且無法接收其他Peer的連線要求。\r\n<br />\r\n<br />\r\n這意味着其他的大批Peer無法連線到你,只能由你連線到他們。更糟糕的情況是,如果兩個Peer都處于這樣的狀態,他們將完全無法連線到對方。這對于整體速度有着非常不利的影響。\r\n<br />\r\n<br />\r\n對于這個問題,有以下解決方式:對于防火牆,開啟用于接收連線的通訊埠(即你在BT用戶端中定義的通訊埠);對于NAT,你需要配置NAT伺服器使用Basic NAT方式而不是NAPT(不同的路線有着不同的執行方式。翻閱你的路線文件或客服論壇。你也可以在<a class=\"faqlink\" href=\"http://portforward.com/\">PortForward</a>找到關于此問題的大量資訊)。\r\n\r\n\r\n\r\n\r\n\r\n', '1', '2', '9');
INSERT INTO `faq` VALUES ('322', '22', '28', 'item', '不同的用戶等級代表了什么含義?', '<table cellspacing=\"3\" cellpadding=\"0\">\r\n<tr>\r\n<td class=\"embedded\" width=\"200\" valign=\"top\"> <b class=\"Peasant_Name\">Peasant</b></td>\r\n<td class=\"embedded\" width=\"5\"> </td>\r\n<td class=\"embedded\"> 被降級的用戶,他們有30天時間來提升分享率,否則他們會被踢。無法發表趣味盒內容;無法申請友情鏈結;無法上傳字幕。\r\n</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"User_Name\">User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">新用戶的預設級別。只能在每周六中午12點至每周日晚上11點59分發布種子。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"PowerUser_Name\">Power User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">得到一個邀請名額;可以直接發布種子;可以檢視NFO文件;可以檢視用戶清單;可以要求續種; 可以傳送邀請; 可以檢視排行榜;可以檢視其他用戶的種子曆史(如果用戶隱私等級未設定為\"強\"); 可以移除自己上傳的字幕。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"EliteUser_Name\">Elite User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\"><b class=\"EliteUser_Name\">Elite User</b>及以上用戶封存賬號后不會被移除。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"CrazyUser_Name\">Crazy User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">得到兩個邀請名額;可以在做種/下載/發布的時候選取匿名型態。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"InsaneUser_Name\">Insane User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">可以檢視普通日誌。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"VeteranUser_Name\">Veteran User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">得到三個邀請名額;可以檢視其他用戶的評論、帖子曆史。<b class=\"VeteranUser_Name\">Veteran User</b>及以上用戶會永遠保留賬號。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"ExtremeUser_Name\">Extreme User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">可以更新過期的外部資訊;可以檢視Extreme User論壇。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"UltimateUser_Name\">Ultimate User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">得到五個邀請名額。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"NexusMaster_Name\">Nexus Master</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">得到十個邀請名額。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <img class=\"star\" src=\"pic/trans.gif\" alt=\"Star\" /></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">為網站捐款的主。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"VIP_Name\">貴賓(VIP)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">和<b class=\"NexusMaster_Name\">Nexus Master</b>擁有相同許可權并被認為是精英成員。免除自動降級。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"User_Name\">其他</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">自訂等級。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Retiree_Name\">養老族(Retiree)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">退休后的管理組成員。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Uploader_Name\">發布員(Uploader)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">專注的發布者。免除自動降級;可以檢視匿名用戶的真實身份。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Moderator_Name\">總版主(Moderator)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">可以檢視管理組郵箱、舉報郵箱;管理趣味盒內容、投票內容;可以編輯或移除任何發布的種子;可以管理候選;可以管理論壇帖子、用戶評論;可以檢視機密日誌;可以移除任何字幕;可以管理日誌中的程式碼、史冊;可以檢視用戶的邀請記錄;可以管理用戶帳號的一般資訊。<b>無法</b>管理友情鏈結、最近訊息、論壇版塊;<b>無法</b>將種子設為置頂或促銷;<b>無法</b>檢視用戶IP或Email等機密資訊;無法移除賬號。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Administrator_Name\">管理員(Administrator)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">除了無法改變網站設定、管理捐贈外,可以做任何事。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"SysOp_Name\">維護開發員(Sysop)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">網站開發/維護人員,可以改變網站設定,無法管理捐贈。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"StaffLeader_Name\">主管(Staff Leader)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">網站主管,可以做任何事。</td>\r\n</tr>\r\n</table>', '1', '2', '10');
INSERT INTO `faq` VALUES ('323', '23', '28', 'item', '提升和降級又是怎樣被執行的呢?', '<table cellspacing=\"3\" cellpadding=\"0\">\r\n<tr>\r\n<td class=\"embedded\" width=\"200\" valign=\"top\"> <b class=\"Peasant_Name\">Peasant</b></td>\r\n<td class=\"embedded\" width=\"5\"> </td>\r\n<td class=\"embedded\" valign=\"top\">當以下情況時將被自動降至本級:<br />\r\n1.如果你已經下載了超過50GB,你應該有大于0.4的分享率。<br />\r\n2.如果你已經下載了超過100GB,你應該有大于0.5的分享率。<br />\r\n3.如果你已經下載了超過200GB,你應該有大于0.6的分享率。<br />\r\n4.如果你已經下載了超過400GB,你應該有大于0.7的分享率。<br />\r\n5.如果你已經下載了超過800GB,你應該有大于0.8的分享率。</td>\r\n</tr>\r\n\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"PowerUser_Name\">Power User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">必須註冊至少4周,并且下載至少50G,分享率大于1.05。<br />\r\n當條件符合時將被自動提升。注意,無論何時,如果你的分享率低于0.95,你將自動降級。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"EliteUser_Name\">Elite User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">必須註冊至少8周,并且下載至少120G,分享率大于1.55。\r\n<br />\r\n當條件符合時將被自動提升。注意,無論何時,如果你的分享率低于1.45,你將自動降級。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"CrazyUser_Name\">Crazy User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">必須註冊至少15周,并且下載至少300G,分享率大于2.05。\r\n<br />\r\n當條件符合時將被自動提升。注意,無論何時,如果你的分享率低于1.95,你將自動降級。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"InsaneUser_Name\">Insane User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">必須註冊至少25周,并且下載至少500G,分享率大于2.55。<br />\r\n當條件符合時將被自動提升。注意,無論何時,如果你的分享率低于2.45,你將自動降級。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"VeteranUser_Name\">Veteran User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">必須註冊至少40周,并且下載至少750G,分享率大于3.05。<br />\r\n當條件符合時將被自動提升。注意,無論何時,如果你的分享率低于2.95,你將自動降級。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"ExtremeUser_Name\">Extreme User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">必須註冊至少60周,并且下載至少1TB,分享率大于3.55。<br />\r\n當條件符合時將被自動提升。注意,無論何時,如果你的分享率低于3.45,你將自動降級。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"UltimateUser_Name\">Ultimate User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">必須註冊至少80周,并且下載至少1.5TB,分享率大于4.05。<br />\r\n當條件符合時將被自動提升。注意,無論何時,如果你的分享率低于3.95,你將自動降級。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"NexusMaster_Name\">Nexus Master</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">必須註冊至少100周,并且下載至少3TB,分享率大于4.55。<br />\r\n當條件符合時將被自動提升。注意,無論何時,如果你的分享率低于4.45,你將自動降級。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <img class=\"star\" src=\"pic/trans.gif\" alt=\"Star\" /></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">只需捐款,詳見<a class=\"faqlink\" href=\"donate.php\">這裡</a>。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"VIP_Name\">貴賓(VIP)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">由管理員仔細斟酌后配置給他們認為對于網站某方面有特殊貢獻的用戶。<br />\r\n(任何索取貴賓等級的要求將被自動無視)</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"User_Name\">其他</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">用戶使用魔力值兌換,或由管理員仔細斟酌后授權。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Retiree_Name\">養老族(Retiree)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">由管理員授予。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Uploader_Name\">發布員(Uploader)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">由管理員配置(參見\'發布\'部分以了解詳情)。</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Moderator_Name\">總版主(Moderator)</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">無需多問,我們會找到你的!</td>\r\n</tr>\r\n</table>', '1', '2', '11');
INSERT INTO `faq` VALUES ('325', '25', '28', 'item', '為什么我的朋友無法加入?', '用戶數目有所限制(你可以檢視“首頁->網站資料->上限”)。當達到那個數目時,我們會停止接受新成員。<br />\r\n由于非活躍用戶(長期不使用賬號的用戶)引起賬號資源浪費,因此我們將清理該部分用戶,為其他想加入用戶騰出空間。<br />\r\n關于非活躍用戶清理規則,參照<a class=\"faqlink\" href=\"rules.php\">規則</a>。', '1', '2', '1');
INSERT INTO `faq` VALUES ('326', '26', '28', 'item', '怎樣自訂頭像?', '首先,找一個你喜歡的圖片,當然了它無法違反我們的<a class=\"faqlink\" href=\"rules.php\">規則</a>。然后你要找一個存放它的地方,比方說我們自己的<a class=\"faqlink\" href=\"bitbucket-upload.php\">上傳器</a>。出于伺服器負載的考慮,我們更希望你將圖片上傳到別的網站,然后將其URL黏貼到你的<a class=\"faqlink\" href=\"usercp.php?action=personal\">控制面板</a>的頭像URL部分。 <br />\r\n<br />\r\n請不要為了僅僅測試頭像而發帖。如果一切順利,你將在你的詳情頁面看到它。', '1', '2', '1');
INSERT INTO `faq` VALUES ('327', '27', '28', 'item', '最常見的資料未能得到更新的原因', '<ul>\r\n<li>伺服器超載/未回應。只要嘗試着保持階段作業直到伺服器回復回應(不建議連續手動清除,這樣會加重伺服器負載)。</li>\r\n<li>你正在使用不穩定的用戶端。如果你想要使用測試版或者CVS版本,你需要自己承擔由此帶來的風險。</li>\r\n</ul>', '1', '3', '1');
INSERT INTO `faq` VALUES ('328', '28', '28', 'item', '最佳的嘗試', '<ul>\r\n<li>如果你目前正下載/上傳的種子并不在你的用戶詳情頁面中,你可以等一會或者強制進行手動更新。</li>\r\n<li>確保你正確地關閉了用戶端軟體,否則Tracker伺服器無法收到\"event=completed\"的訊號。</li>\r\n<li>如果Tracker伺服器掛了,不要停止上傳。只要在你結束用戶端之前伺服器回復工作,所有的資料都會得到正確地更新。</li>\r\n</ul>', '1', '3', '2');
INSERT INTO `faq` VALUES ('329', '29', '28', 'item', '我可以任意選取Bittorrent用戶端軟體么?', '根據<a class=\"faqlink\" href=\"aboutnexus.php\">NexusPHP</a>對常見BitTorrent用戶端的測試,目前本站Tracker<b>只允許</b>使用以下的BitTorrent用戶端軟體。<br />\r\n<a class=\"faqlink\" href=\"aboutnexus.php\">NexusPHP</a>的測試報告可<a class=\"faqlink\" href=\"http://www.nexusphp.com/wiki/%E5%AE%A2%E6%88%B7%E7%AB%AF%E6%B5%8B%E8%AF%95%E6%8A%A5%E5%91%8A\">在此檢視</a>。\r\n<br />\r\n<b>Windows:</b>\r\n<ul>\r\n<li><a class=\"faqlink\" href=\"http://azureus.sourceforge.net\">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2及后續版本</li>\r\n<li><a class=\"faqlink\" href=\"http://www.utorrent.com\">uTorrent</a>: 1.6.1, 1.7.5, 1.7.6, 1.7.7, 1.8Beta(Build 10364), 2.0(Build 17624)及后續版本</li>\r\n<li><a class=\"faqlink\" href=\"http://www.bittorrent.com\">BitTorrent</a>: 6.0.1, 6.0.2, 6.0.3及后續版本</li>\r\n<li><a class=\"faqlink\" href=\"http://deluge-torrent.org\">Deluge</a>: 0.5.9.1, 1.1.6及后續版本</li>\r\n<li><a class=\"faqlink\" href=\"http://rufus.sourceforge.net\">Rufus</a>: 0.6.9, 0.7.0及后續版本</li>\r\n</ul>\r\n<b>Linux:</b>\r\n<ul>\r\n<li><a class=\"faqlink\" href=\"http://azureus.sourceforge.net\">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2及后續版本</li>\r\n<li><a class=\"faqlink\" href=\"http://deluge-torrent.org\">Deluge</a>: 0.5.9.1, 1.1.6及后續版本</li>\r\n<li><a class=\"faqlink\" href=\"http://rufus.sourceforge.net\">Rufus</a>: 0.6.9, 0.7.0及后續版本</li>\r\n<li><a class=\"faqlink\" href=\"http://www.transmissionbt.com\">Transmission</a>: 1.21及后續版本</li>\r\n<li><a class=\"faqlink\" href=\"http://libtorrent.rakshasa.no\">rTorrent</a>: 0.8.0(配合libtorrent 0.12.0或后續版本)及后續版本</li>\r\n<li><a class=\"faqlink\" href=\"http://www.rahul.net/dholmes/ctorrent/\">Enhanced CTorrent</a>: 3.3.2及后續版本</li>\r\n</ul>\r\n<b>MacOS X:</b>\r\n<ul>\r\n<li><a class=\"faqlink\" href=\"http://azureus.sourceforge.net\">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2及后續版本</li>\r\n<li><a class=\"faqlink\" href=\"http://www.transmissionbt.com\">Transmission</a>: 1.21及后續版本</li>\r\n<li><a class=\"faqlink\" href=\"http://sourceforge.net/projects/bitrocket/\">BitRocket</a>: 0.3.3(32)及后續版本</li>\r\n</ul>\r\n<b>Symbian (僅供測試):</b>\r\n<ul>\r\n<li><a class=\"faqlink\" href=\"http://amorg.aut.bme.hu/projects/symtorrent\">SymTorrent</a>: 1.41及后續版本</li>\r\n</ul>\r\n<br />\r\n\r\n<b>以上用戶端在https支援方面</b>\r\n<ul>\r\n<li>uTorrent 1.61: 無法准確解析https的tracker, 同時在使用會將自己識別為uTorrent 1.5</li>\r\n<li>Rufus: 沒有https支援, 并且已經几年沒有繼續開發</li>\r\n<li>rtorrent: 需要手工設定SSL證書, 詳細資訊請自行查閱其官方網站說明</li>\r\n</ul>\r\n\r\n<br />\r\n\r\n同時請儘量避免使用處于測試期的用戶端軟體, 如uTorrent 1.8.0B。\r\n\r\n為了從本站得到最好的下載體驗,我們高度建議<a class=\"faqlink\" href=\"http://www.utorrent.com/download.php\">uTorrent</a> 以及<a class=\"faqlink\" href=\"http://azureus.sourceforge.net/download.php\">Azureus</a>這兩個軟體的最新穩定版。', '1', '5', '3');
INSERT INTO `faq` VALUES ('330', '30', '28', 'item', '為什么我正在下載/做種的一個種子會在我的詳情頁面中被列出多次?', '如果因為某些原因(比方說死機,用戶端失去回應)你的用戶端非正常結束并且你又重新開啟它,它會被配置到一個全新的Peer ID, 這樣它察看為一個全新的種子。而舊的種子將永遠不會收到“event=completed”或“event=stopped”的訊號,因此將一直被列出直到Tracker清理逾時的Peer。 無視了它就可以了,它最后會消失的。', '1', '3', '4');
INSERT INTO `faq` VALUES ('331', '31', '28', 'item', '為什么我已經完成/取消的種子仍然在我的詳情頁面裡?', '有一些用戶端,比如說TorrentStorm和Nova Torrent,在取消或者完成一個工作的時候無法向Tracker伺服器正確傳送訊號。在那樣的情況下,Tracker伺服器將一直保持等待訊號的狀態(因此會一直列出種子的狀態為做種/下載的狀態)直到Tracker清理逾時的Peer。無視了它就可以了,它最后會消失的。', '1', '3', '5');
INSERT INTO `faq` VALUES ('333', '33', '28', 'item', '多IP(我可以從不同的電腦登入/下載嗎?)', '是的,目前Tracker伺服器支援單個用戶從任意個數的IP位址同時存取/下載。<br />\r\n然而,對于單種是有限制的。對于每個種子,最多允許3個做種的連線,最多只允許1個下載的連線(這意味着,對于某個種子你一次只能在一個地方下載)。', '1', '3', '1');
INSERT INTO `faq` VALUES ('336', '36', '28', 'item', '為什么我無法發布種子?', '請看<a class=\"faqlink\" href=\"rules.php\">規則</a>。', '1', '4', '1');
INSERT INTO `faq` VALUES ('337', '37', '28', 'item', '我需要滿足哪些條件才能加入發布小組呢?', '你所必須滿足的條件:\r\n<ul>\r\n<li>具有穩定的資源來源</li>\r\n<li>平均每周資源發布數量不少于5個</li>\r\n</ul>\r\n你必須確保發布的檔案符合以下特征:\r\n<ul>\r\n<li>不超過7天之前</li>\r\n<li>你必須要有做種的能力,或者可以確保至少有效供種24小時。</li>\r\n<li>你需要有至少達到2MBit的上傳頻寬。</li>\r\n</ul>\r\n如果你認為你符合以上條件,那么不要猶豫,<a class=\"faqlink\" href=\"contactstaff.php\">聯繫管理組</a>吧。<br />\r\n<b>記住!</b> 仔細填寫你的申請!確保申請中包含你的上傳速度以及你計划發布的內容的類別。<br />\r\n只有仔細填寫并且經過慎重考慮的申請才會納入我們的視野。', '1', '4', '2');
INSERT INTO `faq` VALUES ('338', '38', '28', 'item', '我可以發布你們這裡的種子到別的Tracker伺服器么?', '無法。我們是一個封閉的、限制用戶數的社區。只有註冊用戶才能夠使用我們的Tracker。將我們的種子檔案發布到其他Tracker伺服器是徒勞的,因為絕大多數嘗試下載這些檔案的人將無法連線到我們的伺服器。將我們的種子發布到其他Tracker只讓那裡的用戶惱怒(因為無法下載)并且對我們產生敵對情緒,所以這種行為是我們是無法容忍的。<br />\r\n<br />\r\n如果其他網站的管理員向我們舉報我們的種子被發布在他們的網站上,對此負責的用戶將因此被移出我們的社區。<br />\r\n<br />\r\n但是對于從我們這裡下載得到的檔案,你可以隨意操控它們(發布者明確說明為<b>獨占</b>的資源除外)。你可以制作另一個種子,寫入其他Tracker的位址,并發布到你喜歡的網站上。', '1', '4', '3');
INSERT INTO `faq` VALUES ('339', '39', '28', 'item', '下載來的檔案該怎么開啟?', '在這份<a class=\"faqlink\" href=\"formats.php\">指引</a>裡面找找看吧。', '1', '5', '1');
INSERT INTO `faq` VALUES ('340', '40', '28', 'item', '我下載了一部電影,但是不明白CAM/TS/TC/SCR是什么意思?', '在這份<a class=\"faqlink\" href=\"videoformats.php\">指引</a>裡面找找看吧。', '1', '5', '2');
INSERT INTO `faq` VALUES ('341', '41', '28', 'item', '為什么一個可用的種子忽然就消失了?', '以下原因都會導致這個現象的出現:<br />\r\n(<b>1</b>) 按照<a class=\"faqlink\" href=\"rules.php\">網站規則</a>,這個種子不符合規則已被移除。\r\n<br />\r\n(<b>2</b>) 發布者因為檔案存在問題而移除了它。一般來說,發布者會發布一個交替的版本的。<br />\r\n(<b>3</b>) 在長時間斷種后種子被自動移除了。', '1', '5', '3');
INSERT INTO `faq` VALUES ('342', '42', '28', 'item', '我該怎樣續傳檔案或者給一個檔案續種呢?', '開啟副檔名為.torrent的檔案,當你的用戶端軟體詢問儲存的目錄時,選取已經存在的檔案存放的目錄,它就能夠開始續傳/續種了。', '1', '5', '4');
INSERT INTO `faq` VALUES ('343', '43', '28', 'item', '為什么我的下載有時候停在99%?', '你所下載到的片段越多,搜尋擁有你所缺少的片段的同伴就將變得越困難。這就是為什么有時候在下載即將完成的時候,速度會變得非常慢,甚至完全停止了。只要耐心等候,或早或晚剩餘的部分一定能夠下載到的。', '1', '5', '5');
INSERT INTO `faq` VALUES ('344', '44', '28', 'item', '\"部分哈希驗證出錯\"這條資訊是什么意思?', 'BT的用戶端會檢查它所收到的資料的完整性。如果某一個片段在驗證中出錯,那么這個片段將被重新下載。偶爾的哈希驗證錯誤是非常常見的現象,不用擔心。<br />\r\n<br />\r\n有些用戶端有屏蔽向你傳送錯誤資料的其他用戶端的功能。如果有這個選項,最好開啟它。因為這樣可以保證如果某個同伴經常向你傳送錯誤的資料時,它將會被屏蔽。', '1', '5', '6');
INSERT INTO `faq` VALUES ('345', '45', '28', 'item', '100MB大小的種子,我怎么下了120MB的東西回來?', '參見哈希驗證失敗的那個問題。如果你的用戶端收到了錯誤的資料,那么它將會重新下載這一部分,因此總下載量有可能比種子大小略微大一些。確保“屏蔽傳送錯誤資料的用戶端”的那個選項被開啟了,這樣可以減少其餘的下載。', '1', '5', '7');
INSERT INTO `faq` VALUES ('346', '46', '28', 'item', '為什么我的用戶端的Tracker伺服器狀態出現\"Your ratio is too low! You need to wait xx h to start\"的錯誤?', '在<b>新</b>種子被上傳到Tracker伺服器之后,有一些用戶必須等一些時間才能開始下載。<br>\r\n這個延遲只會影響那些分享率較低且下載量大于10G的用戶。<br />\r\n<br />\r\n<table cellspacing=\"3\" cellpadding=\"0\">\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率低于</td>\r\n <td class=\"embedded\" width=\"40\">0.4</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">延遲</td>\r\n <td class=\"embedded\" width=\"100\">24小時</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率低于</td>\r\n <td class=\"embedded\" width=\"40\">0.5</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">延遲</td>\r\n <td class=\"embedded\" width=\"100\">12小時</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率低于</td>\r\n <td class=\"embedded\" width=\"40\">0.6</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">延遲</td>\r\n <td class=\"embedded\" width=\"100\">6小時</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">分享率低于</td>\r\n <td class=\"embedded\" width=\"40\">0.8</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">延遲</td>\r\n <td class=\"embedded\" width=\"100\">3小時</td>\r\n</tr>\r\n</table>', '0', '5', '8');
INSERT INTO `faq` VALUES ('347', '47', '28', 'item', '為什么發生了這個錯誤? \"Port xxxx is blacklisted\"?', '你的用戶端向Tracker伺服器報告它正在使用某個預設的BT協定通訊埠(6881-6889)或是任何其他常見P2P通訊埠來作為連線通訊埠。<br />\r\n<br />\r\n本站不允許這些通常被P2P協定預設使用的通訊埠。原因是目前ISP常常對這些通訊埠進行限速。<br />\r\n<br />\r\n被屏蔽的通訊埠如下:<br />\r\n<br />\r\n<table cellspacing=\"3\" cellpadding=\"0\">\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">Direct Connect</td>\r\n <td class=\"embedded\" width=\"100\">411 - 413</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">BitTorrent</td>\r\n <td class=\"embedded\" width=\"100\">6881 - 6889</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">Kazza</td>\r\n <td class=\"embedded\" width=\"100\">1214</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">Gnutella</td>\r\n <td class=\"embedded\" width=\"100\">6346 - 6347</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">Emule</td>\r\n <td class=\"embedded\" width=\"100\">4662</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">WinMX</td>\r\n <td class=\"embedded\" width=\"100\">6699</td>\r\n </tr>\r\n</table>\r\n<br />\r\n要使用我們的Tracker伺服器,你必須配置你的用戶端使用未在上面列出的通訊埠範圍(從49152到65535都是不錯的選取,參看<a class=\"faqlink\" href=\"http://www.iana.org/assignments/port-numbers\">IANA</a>)。注意某些用戶端,如Azureus 2.0.7.0或更高版本,對所有的種子都使用同一通訊埠。而其他大多數用戶端為每一個種子開放一個通訊埠,你在選取通訊埠範圍應考慮到這個問題(一般來說通訊埠範圍小于10。設定一個過大的範圍并不一定有好處,而且可能有安全隱患)。 <br />\r\n<br />\r\n這些通訊埠是用于同伴間通訊的,而非用于用戶端連線到Tracker伺服器。因此這個改動并不會影響你使用其他Tracker伺服器(事實上,它甚至可能<i>加快</i>所有Tracker伺服器上種子的速度)。你的用戶端也仍然能夠連線到那些使用預設通訊埠的同伴。如果你的用戶端不支援自己自訂通訊埠,那么換一個吧。<br />\r\n<br />\r\n不要向我們詢問,或者在論壇裡面提問究竟應該選取什么通訊埠。我們的用戶選取的通訊埠越隨機,ISP就越難以捉摸清楚我們使用的通訊埠,從而無法對我們的通訊埠進行限速。如果我們只是簡單地規定一個範圍,那么ISP又會很快對那個範圍內的通訊埠進行限速的。<br />\r\n<br />\r\n最后還要說的是,記得在你的路線和/或防火牆上開啟你選取的通訊埠,如果你有這些東西的話。', '1', '5', '9');
INSERT INTO `faq` VALUES ('348', '48', '28', 'item', '那么這個呢? “IO錯誤 - [錯誤號13] 許可被拒絕”?', '如果你只是想要解決這個問題的話,重新啟動你的電腦應該就可以了。否則的話,繼續讀下去。<br />\r\n<br />\r\nIO錯誤指的是匯入-匯出錯誤,這是一個檔案系統錯誤,而非來自我們的Tracker伺服器。當你的用戶端由于某些原因無法開啟種子中未下載完成的檔案時,這個錯誤就會發生。 通常原因是用戶端的兩個實例同時在執行:當上一次關閉用戶端時因為某種原因它沒有被真正關閉,從而始終在背景執行。因此檔案被鎖定,使得新的實例無法開啟這個檔案。<br />\r\n<br />\r\n另外一個不常出現的原因是因為老舊的FAT檔案系統。某些系統崩潰可能導致未下載完成的檔案損壞,接着就出現了這個錯誤。執行一次scandisk應該可以解決這個問題。注意,只有當你使用Windows 9X作業系統(只支援FAT檔案系統)或者在Windows NT/2000/XP中使用FAT檔案系統的時候才比對可能出現這個問題。NTFS檔案系統要健壯許多,不太可能出現這樣的問題。', '1', '5', '10');
INSERT INTO `faq` VALUES ('350', '50', '28', 'item', '不要馬上下載新發布的種子', '下載速度主要取決于上傳者/下載者比(SLR)。如果是種子是新發布的且非常受歡迎而SLR又很低的種子,下載速度低是常見的問題。<br />\r\n<br />\r\n請牢記你不喜歡低速下載。所以多<b>上傳</b>讓別人不用忍耐同樣的困擾。\r\n<br />\r\n<br />由其是當你的頻寬較窄時,不要馬上下載新發布的種子。最好的下載速度通常在一個種子生命周期的一半時出現,此時SLR達到最大值(不過,這時下載的缺點是你的上傳量不會很多。究竟如何平衡優點與缺點,取決于你自己)。', '1', '6', '1');
INSERT INTO `faq` VALUES ('351', '51', '28', 'item', '限制上傳速度', '上傳速度將從以下兩種方式顯著影響下載速度:\r\n<ul>\r\n <li>Bittorrent的同伴傾向于回饋那些給它們提上傳的同伴。這就意味着如果A和B正在同時下載一個檔案,而A又在高速向B傳輸資料,那么B將會嘗試着回報A。因此高速上傳將導致高速下載。</li>\r\n\r\n <li>由于TCP協定的工作方式,當A正從B下載某些東西的時候,A必須不停地向B傳送成功收到B所傳送來的資料的訊號(被稱為確認──ACK ── 某種“已收到”的資訊)。如果A沒有傳送ACK訊號,那么B將暫停向A傳送資料并且進入等候狀態。如果A正在全速上傳,很有可能沒有用來傳送ACK訊號的頻寬,因此ACK訊號被耽擱。在這種情況下,過高速度的上傳導致了低速的下載。</li>\r\n</ul>\r\n實際的效果是以上兩個原因的結合。上傳速度應該在保證ACK能正常傳送的前提下被設得儘量高。 <b>一個很好的實踐理論是保持上傳速度在理論上限的80%。</b>你也可以細細研究什么是最適合你的速度(同時也請記住高速上傳對于你的分享率很有輔助說明)。<br />\r\n<br />\r\n如果你正在執行一個以上的種子工作,你應該考慮的是全域上傳速度。某些用戶端能限制了全域上傳速度,其他的則能對每一個種子分別進行設定。了解你的用戶端。如果你正在使用你的電腦做別的某些應用(比方說上網或者從FTP拖東西),也需考慮一下它們對于全域上傳的影響。', '1', '6', '2');
INSERT INTO `faq` VALUES ('352', '52', '28', 'item', '限制同時連線數', '某些作業系統(例如Windows 9X)對于大量連線數支援不完善,甚至有可能因此而崩潰。也有一些家用路線(尤其當執行着NAT以及/或者開啟防火牆狀態檢查服務時)會因大量連線數而變得很慢或者崩潰。對于連線數沒有固定的最佳值,你可以試試看60或者100。記住這些連線數是累加的,所以如果你的用戶端執行了兩個階段作業,這兩個數字要加在一起。', '1', '6', '3');
INSERT INTO `faq` VALUES ('353', '53', '28', 'item', '限制同時上傳數', '上傳數難道和連線數有什么不一樣嗎?是的,兩者是不同的。連線數限制了你的用戶端所能對話以及/或者下載的同伴數。上傳數則限制了你的用戶端實際能上傳的同伴數。理想的數值一般要比連線數低許多,并且與你的物理頻寬高度相關。', '1', '6', '4');
INSERT INTO `faq` VALUES ('354', '54', '28', 'item', '那怎么辦?等待一會吧', '如我們在上面所解譯的,在BT下載過程中一個同伴更加傾向于回報那些上傳給它的同伴。當你開始一個新的下載工作時,你沒有檔案片斷提高給其他同伴,因此他們通常會無視你。這使得開始階段的下載非常緩慢,由其是當你所連線到的同伴只有很少是(或者沒有)做種者。一旦你獲得了一些能用于共用的檔案片斷,下載速度會有所改觀。', '1', '6', '5');
INSERT INTO `faq` VALUES ('355', '55', '28', 'item', '為什么在我下載的時候瀏覽網頁速度如此之慢?', '你的下載頻寬是有限的。如果你正在下載一個速度很快的種子,它几乎肯定將占滿你的下載頻寬。這是瀏覽網頁顯然就會變慢。很多BT用戶端允許你限制下載速度,你可以試試。<br />\r\n<br />\r\n瀏覽網頁只是作為舉例之一,同樣的問題也會出現在游戲,即時通訊軟體上......', '1', '6', '6');
INSERT INTO `faq` VALUES ('356', '56', '28', 'item', '什么是代理?', '基本上說,代理就是中間人。當你通過代理存取某個網站的時候,你的要求將首先被傳送到代理處,然后由代理轉寄到你所要求的網站,而不是你直接連通到網站。下面是几種典型的代理分類(朮語不是那么的規格):<br />\r\n<br />\r\n<table cellspacing=\"3\" cellpadding=\"0\">\r\n <tr>\r\n <td class=\"embedded\" valign=\"top\" width=\"100\"> 透通代理</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" valign=\"top\">透通代理在用戶端無需配置。他將自動把80通訊埠的資訊重導到代理(有時候也作為非匿名代理的同義詞);</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" valign=\"top\"> 顯式代理</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" valign=\"top\">瀏覽器必須經過配置才能使用代理;</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" valign=\"top\"> 匿名代理</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" valign=\"top\">代理將不會把用戶記號傳送至伺服器端 (HTTP_X_FORWARDED_FOR頭旗標將不被傳送。伺服器也因此看不到你的IP);</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" valign=\"top\"> 高度匿名代理</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" valign=\"top\">代理將不會把用戶記號或代理記號傳送至伺服器端 (HTTP_X_FORWARDED_FOR和HTTP_VIA and HTTP_PROXY_CONNECTION頭旗標將不被傳送。伺服器看不到你的IP,甚至不知道你正在使用代理);</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" valign=\"top\"> 公用</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" valign=\"top\">(不言自明了)。</td>\r\n </tr>\r\n</table>\r\n<br />\r\n透通代理可能是匿名的,也可能是非匿名的,且匿名也有相應的等級。', '1', '7', '1');
INSERT INTO `faq` VALUES ('357', '57', '28', 'item', '我該怎樣發現自己正處于一個(透通的/匿名的)代理后面?', '試試看<a href=\"http://proxyjudge.org\" class=\"faqlink\">ProxyJudge</a>。它列出了伺服器端從你這裡所收到的HTTP的頭旗標。相關的几個旗標是HTTP_CLIENT_IP,HTTP_X_FORWARDED_FOR和REMOTE_ADDR。', '1', '7', '2');
INSERT INTO `faq` VALUES ('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');
INSERT INTO `faq` VALUES ('401', '1', '6', 'categ', 'Site information', '', '1', '0', '1');
INSERT INTO `faq` VALUES ('402', '2', '6', 'categ', 'User information', '', '1', '0', '2');
INSERT INTO `faq` VALUES ('403', '3', '6', 'categ', 'Stats', '', '1', '0', '3');
INSERT INTO `faq` VALUES ('404', '4', '6', 'categ', 'Uploading', '', '1', '0', '4');
INSERT INTO `faq` VALUES ('405', '5', '6', 'categ', 'Downloading', '', '1', '0', '5');
INSERT INTO `faq` VALUES ('406', '6', '6', 'categ', 'How can I improve my download speed?', '', '1', '0', '6');
INSERT INTO `faq` VALUES ('407', '7', '6', 'categ', 'My ISP uses a transparent proxy. What should I do?', '', '1', '0', '7');
INSERT INTO `faq` VALUES ('408', '8', '6', 'categ', 'Why can\'t I connect? Is the site blocking me?', '', '1', '0', '8');
INSERT INTO `faq` VALUES ('409', '9', '6', 'categ', 'What if I can\'t find the answer to my problem here?', '', '1', '0', '9');
INSERT INTO `faq` VALUES ('410', '10', '6', 'item', 'What is this bittorrent all about anyway? How do I get the files?', 'Check out <a class=\"faqlink\" href=\"http://www.btfaq.com/\">Brian\'s BitTorrent FAQ and Guide</a>.', '1', '1', '1');
INSERT INTO `faq` VALUES ('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');
INSERT INTO `faq` VALUES ('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, <a class=\"faqlink\" href=\"aboutnexus.php\">Contact Us</a>.<br />\r\nThe first stage of NexusPHP forks from TBSource. You may find more information about TBSource at <a class=\"faqlink\" href=\"http://www.tbdev.net/\">TBDev.net</a>.', '1', '1', '3');
INSERT INTO `faq` VALUES ('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 <a href=\"confirm_resend.php\" class=\"faqlink\">this form</a> ask the tracker to resend confirmation e-mail.<br />\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');
INSERT INTO `faq` VALUES ('414', '14', '6', 'item', 'I\'ve lost my user name or password! Can you send it to me?', 'Please use <a class=\"faqlink\" href=\"recover.php\">this form</a> to have the login details mailed back to you.', '1', '2', '2');
INSERT INTO `faq` VALUES ('415', '15', '6', 'item', 'Can you rename my account? ', 'No, we do not rename accounts. Don\'t ask for it.', '1', '2', '3');
INSERT INTO `faq` VALUES ('416', '16', '6', 'item', 'Can you delete my (confirmed) account?', 'No, we don\'t delete accounts. Don\'t ask for it.', '1', '2', '4');
INSERT INTO `faq` VALUES ('417', '17', '6', 'item', 'So, what\'s MY ratio?', 'It\'s on the left-top of pages.<br />\r\n<br />\r\n<img src=\"pic/ratio.png\" alt=\"ratio\" />\r\n<br />\r\n<br />\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<br />\r\n<br />\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');
INSERT INTO `faq` VALUES ('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');
INSERT INTO `faq` VALUES ('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<br />\r\n<br />\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<br />\r\n<br />\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 <a class=\"faqlink\" href=\"http://portforward.com/\">PortForward</a>).\r\n\r\n\r\n\r\n\r\n\r\n', '1', '2', '9');
INSERT INTO `faq` VALUES ('422', '22', '6', 'item', 'What are the different user classes?', '<table cellspacing=\"3\" cellpadding=\"0\">\r\n<tr>\r\n<td class=\"embedded\" width=\"200\" valign=\"top\"> <b class=\"Peasant_Name\">Peasant</b></td>\r\n<td class=\"embedded\" width=\"5\"> </td>\r\n<td class=\"embedded\"> 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</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"User_Name\">User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">The default class of new members. may upload torrents between 12:00, Saturday and 23:59 Sunday of every week.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"PowerUser_Name\">Power User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">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.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"EliteUser_Name\">Elite User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\"><b class=\"EliteUser_Name\">Elite User</b> or above would never be deleted if parked.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"CrazyUser_Name\">Crazy User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">Get two invitations. Can be anonymous when seeding/leeching/uploading. </td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"InsaneUser_Name\">Insane User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">Can view general logs.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"VeteranUser_Name\">Veteran User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">Get three invitations. Can view other users\' history of comments and forum posts. <b class=\"VeteranUser_Name\">Veteran User</b> or above would never be deleted whether parked or not.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"ExtremeUser_Name\">Extreme User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">Can update outdated external information and access Extreme User forum.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"UltimateUser_Name\">Ultimate User</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">Get 5 invitations.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"NexusMaster_Name\">Nexus Master</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">Get 10 invitations.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <img class=\"star\" src=\"pic/trans.gif\" alt=\"Star\" /></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">Has donated money to this tracker.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"VIP_Name\">VIP</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">Same privileges as <b class=\"NexusMaster_Name\">Nexus Master</b> and is considered an Elite Member of this tracker. Immune to automatic demotion.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Retiree_Name\">Retiree</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">Former staff members.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"User_Name\">Other</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">Customized title. </td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Uploader_Name\">Uploader</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">Dedicated uploader, immune to automatic demotion. Can view who anonymous ones are.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Moderator_Name\">Moderator</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\" valign=\"top\">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. <b>Cannot</b> manage links,recent news or forums. <b>Cannot</b> set torrents sticky or on promotion.<b>Cannot</b> view users\' confidential information (e.g. IP address and Email address). <b>Cannot</b> delete user account.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"Administrator_Name\">Administrator</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">Other than changing site settings and managing donation, can do just about anything.</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"SysOp_Name\">SysOp</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">Dedicated site developer. Except managing donation, can do anything (including changing site settings)</td>\r\n</tr>\r\n<tr>\r\n<td class=\"embedded\" valign=\"top\"> <b class=\"StaffLeader_Name\">Staff Leader</b></td>\r\n<td class=\"embedded\"> </td>\r\n<td class=\"embedded\">The boss. Can do anything.</td>\r\n</tr>\r\n</table>', '1', '2', '10');
INSERT INTO `faq` VALUES ('423', '23', '6', 'item', 'How does this promotion thing work anyway?', '<table cellspacing=\\\\\\\\\\\\\\\"3\\\\\\\\\\\\\\\" cellpadding=\\\\\\\\\\\\\\\"0\\\\\\\\\\\\\\\">\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" width=\\\\\\\\\\\\\\\"200\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\"> <b class=\\\\\\\\\\\\\\\"Peasant_Name\\\\\\\\\\\\\\\">Peasant</b></td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" width=\\\\\\\\\\\\\\\"5\\\\\\\\\\\\\\\"> </td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\">User would be demoted to this class under any of the following circumstances:<br />\r\n1.Downloaded more than 50 GB and with ratio below 0.4<br />\r\n2.Downloaded more than 100 GB and with ratio below 0.5<br />\r\n3.Downloaded more than 200 GB and with ratio below 0.6<br />\r\n4.Downloaded more than 400 GB and with ratio below 0.7<br />\r\n5.Downloaded more than 800 GB and with ratio below 0.8</td>\r\n</tr>\r\n\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\"> <b class=\\\\\\\\\\\\\\\"PowerUser_Name\\\\\\\\\\\\\\\">Power User</b></td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\"> </td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\">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. <br />\r\nNote that you will be automatically demoted from this status if your ratio drops below 0.95 at any time.</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\"> <b class=\\\\\\\\\\\\\\\"EliteUser_Name\\\\\\\\\\\\\\\">Elite User</b></td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\"> </td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\">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. <br />\r\nNote that you will be automatically demoted from this status if your ratio drops below 1.45 at any time.</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\"> <b class=\\\\\\\\\\\\\\\"CrazyUser_Name\\\\\\\\\\\\\\\">Crazy User</b></td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\"> </td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\">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. <br />\r\nNote that you will be automatically demoted from this status if your ratio drops below 1.95 at any time.</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\"> <b class=\\\\\\\\\\\\\\\"InsaneUser_Name\\\\\\\\\\\\\\\">Insane User</b></td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\"> </td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\">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. <br />\r\nNote that you will be automatically demoted from this status if your ratio drops below 2.45 at any time.</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\"> <b class=\\\\\\\\\\\\\\\"VeteranUser_Name\\\\\\\\\\\\\\\">Veteran User</b></td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\"> </td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\">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. <br />\r\nNote that you will be automatically demoted from this status if your ratio drops below 2.95 at any time.</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\"> <b class=\\\\\\\\\\\\\\\"ExtremeUser_Name\\\\\\\\\\\\\\\">Extreme User</b></td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\"> </td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\">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. <br />\r\nNote that you will be automatically demoted from this status if your ratio drops below 3.45 at any time.</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\"> <b class=\\\\\\\\\\\\\\\"UltimateUser_Name\\\\\\\\\\\\\\\">Ultimate User</b></td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\"> </td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\">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. <br />\r\nNote that you will be automatically demoted from this status if your ratio drops below 3.95 at any time.</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\"> <b class=\\\\\\\\\\\\\\\"NexusMaster_Name\\\\\\\\\\\\\\\">Nexus Master</b></td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\"> </td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\">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. <br />\r\nNote that you will be automatically demoted from this status if your ratio drops below 4.45 at any time.</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\"> <img class=\\\\\\\\\\\\\\\"star\\\\\\\\\\\\\\\" src=\\\\\\\\\\\\\\\"pic/trans.gif\\\\\\\\\\\\\\\" alt=\\\\\\\\\\\\\\\"Star\\\\\\\\\\\\\\\" /></td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\"> </td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\">Just donate, see <a class=\\\\\\\\\\\\\\\"faqlink\\\\\\\\\\\\\\\" href=\\\\\\\\\\\\\\\"donate.php\\\\\\\\\\\\\\\">here</a> for the details.</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\"> <b class=\\\\\\\\\\\\\\\"VIP_Name\\\\\\\\\\\\\\\">VIP</b></td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\"> </td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\">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.)</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\"> <b class=\\\\\\\\\\\\\\\"User_Name\\\\\\\\\\\\\\\">Other</b></td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\"> </td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\">Customized title. Exchanged at bonus system or granted by admins.</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\"> <b class=\\\\\\\\\\\\\\\"Uploader_Name\\\\\\\\\\\\\\\">Uploader</b></td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\"> </td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\">Appointed by Admins/SysOp/Staff Leader (see the \\\\\\\\\\\\\\\'Uploading\\\\\\\\\\\\\\\' section for conditions).</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\"> <b class=\\\\\\\\\\\\\\\"Retiree_Name\\\\\\\\\\\\\\\">Retiree</b></td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\"> </td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\">Granted by Admins/SysOp/Staff Leader</td>\r\n</tr>\r\n<tr>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\" valign=\\\\\\\\\\\\\\\"top\\\\\\\\\\\\\\\"> <b class=\\\\\\\\\\\\\\\"Moderator_Name\\\\\\\\\\\\\\\">Moderator</b></td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\"> </td>\r\n<td class=\\\\\\\\\\\\\\\"embedded\\\\\\\\\\\\\\\">You don\\\\\\\\\\\\\\\'t ask us, we\\\\\\\\\\\\\\\'ll ask you!</td>\r\n</tr>\r\n</table>', '0', '2', '11');
INSERT INTO `faq` VALUES ('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.<br />\r\nWhen are inactive user accounts deleted? See <a class=\"faqlink\" href=\"rules.php\">Rules</a>', '1', '2', '1');
INSERT INTO `faq` VALUES ('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 <a class=\"faqlink\" href=\"rules.php\">rules</a>. Then you will have to find a place to host it, such as our own <a class=\"faqlink\" href=\"bitbucket-upload.php\">BitBucket</a>. 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 <a class=\"faqlink\" href=\"usercp.php?action=personal\">UserCP</a>.<br />\r\n<br />\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', '1');
INSERT INTO `faq` VALUES ('427', '27', '6', 'item', 'Most common reason for stats not updating', '<ul>\r\n<li>The server is overloaded and unresponsive. Just try to keep the session open until the server responds again. (Flooding the server with consecutive manual updates is not recommended.)</li>\r\n<li>You are using a faulty client. If you want to use an experimental or CVS version you do it at your own risk.</li>\r\n</ul>', '1', '3', '1');
INSERT INTO `faq` VALUES ('428', '28', '6', 'item', 'Best practices', '<ul>\r\n<li>If a torrent you are currently leeching/seeding is not listed on your detail page, just wait or force a manual update.</li>\r\n<li>Make sure you exit your client properly, so that the tracker receives \"event=completed\".</li>\r\n<li>If the tracker is down, do not stop seeding. As long as the tracker is back up before you exit the client the stats should update properly.</li>\r\n</ul>', '1', '3', '2');
INSERT INTO `faq` VALUES ('429', '29', '6', 'item', 'May I use any bittorrent client?', 'No. According to tests of common bittorrent clients by <a class=\"faqlink\" href=\"aboutnexus.php\">NexusPHP</a>, we allowed <b>only</b> the following bittorrent clients.<br />\r\nThe test report by <a class=\"faqlink\" href=\"aboutnexus.php\">NexusPHP</a> is <a class=\"faqlink\" href=\"http://www.nexusphp.com/wiki/%E5%AE%A2%E6%88%B7%E7%AB%AF%E6%B5%8B%E8%AF%95%E6%8A%A5%E5%91%8A\">here</a>. \r\n<br />\r\n<b>Windows:</b>\r\n<ul>\r\n<li><a class=\"faqlink\" href=\"http://azureus.sourceforge.net\">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2 and later versions</li>\r\n<li><a class=\"faqlink\" href=\"http://www.utorrent.com\">uTorrent</a>: 1.6.1, 1.7.5, 1.7.6, 1.7.7, 1.8Beta(Build 10364), 2.0(Build 17624) and later versions</li>\r\n<li><a class=\"faqlink\" href=\"http://www.bittorrent.com\">BitTorrent</a>: 6.0.1, 6.0.2, 6.0.3 and later versions</li>\r\n<li><a class=\"faqlink\" href=\"http://deluge-torrent.org\">Deluge</a>: 0.5.9.1, 1.1.6 and later versions</li>\r\n<li><a class=\"faqlink\" href=\"http://rufus.sourceforge.net\">Rufus</a>: 0.6.9, 0.7.0 and later versions</li>\r\n</ul>\r\n<b>Linux:</b>\r\n<ul>\r\n<li><a class=\"faqlink\" href=\"http://azureus.sourceforge.net\">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2 and later versions</li>\r\n<li><a class=\"faqlink\" href=\"http://deluge-torrent.org\">Deluge</a>: 0.5.9.1, 1.1.6 and later versions</li>\r\n<li><a class=\"faqlink\" href=\"http://rufus.sourceforge.net\">Rufus</a>: 0.6.9, 0.7.0 and later versions</li>\r\n<li><a class=\"faqlink\" href=\"http://www.transmissionbt.com\">Transmission</a>: 1.21 and later versions</li>\r\n<li><a class=\"faqlink\" href=\"http://libtorrent.rakshasa.no\">rTorrent</a>: 0.8.0(with libtorrent 0.12.0 or later) and later versions</li>\r\n<li><a class=\"faqlink\" href=\"http://www.rahul.net/dholmes/ctorrent/\">Enhanced CTorrent</a>: 3.3.2 and later versions</li>\r\n</ul>\r\n<b>MacOS X:</b>\r\n<ul>\r\n<li><a class=\"faqlink\" href=\"http://azureus.sourceforge.net\">Azureus</a>: 2.5.0.4, 3.0.5.0, 3.0.5.2 and later versions</li>\r\n<li><a class=\"faqlink\" href=\"http://www.transmissionbt.com\">Transmission</a>: 1.21 and later versions</li>\r\n<li><a class=\"faqlink\" href=\"http://sourceforge.net/projects/bitrocket/\">BitRocket</a>: 0.3.3(32) and later versions</li>\r\n</ul>\r\n<b>Symbian (For Testing Only):</b>\r\n<ul>\r\n<li><a class=\"faqlink\" href=\"http://amorg.aut.bme.hu/projects/symtorrent\">SymTorrent</a>: 1.41 and later versions</li>\r\n</ul>\r\n<br />\r\n\r\n<b>Support for https:</b>\r\n<ul>\r\n<li>uTorrent 1.61: cannot parse tracker https url, and marks itself as uTorrent 1.5</li>\r\n<li>Rufus: no support for https, and development ceased for years.</li>\r\n<li>rtorrent: needs to add SSL certification manually, see User Guide at its official site.</li>\r\n</ul>\r\n\r\n<br />\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 <a class=\"faqlink\" href=\"http://www.utorrent.com/download.php\">uTorrent</a> and <a class=\"faqlink\" href=\"http://azureus.sourceforge.net/download.php\">Azureus</a>.', '1', '5', '3');
INSERT INTO `faq` VALUES ('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');
INSERT INTO `faq` VALUES ('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');
INSERT INTO `faq` VALUES ('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.<br />\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', '1');
INSERT INTO `faq` VALUES ('436', '36', '6', 'item', 'Why can\'t I upload torrents?', 'See <a class=\"faqlink\" href=\"rules.php\">Rules</a>.', '1', '4', '1');
INSERT INTO `faq` VALUES ('437', '37', '6', 'item', 'What criteria must I meet before I can join the Uploader team?', 'You must:\r\n<ul>\r\n<li>have steady access to resources.</li>\r\n<li>upload not less than 5 torrents per week.</li>\r\n</ul>\r\nYou must be able to provide releases that:\r\n<ul>\r\n<li>are not older than 7 days</li>\r\n<li>you\'ll be able to seed, or make sure are well-seeded, for at least 24 hours.</li>\r\n<li>Also, you should have at least 2MBit upload bandwith.</li>\r\n</ul>\r\nIf you think you can match these criteria do not hesitate to <a class=\"faqlink\" href=\"contactstaff.php\">contact the staff</a>.<br />\r\n<b>Remember!</b> Write your application carefully! Be sure to include your upload speed and what kind of stuff you\'re planning to upload.<br />\r\nOnly well written letters with serious intent will be considered.', '1', '4', '2');
INSERT INTO `faq` VALUES ('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.<br />\r\n<br />\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<br />\r\n<br />\r\nHowever, the files you download from us are yours to do as you please (except those marked as <b>EXCLUSIVE</b> 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');
INSERT INTO `faq` VALUES ('439', '39', '6', 'item', 'How do I use the files I\'ve downloaded?', 'Check out <a class=\"faqlink\" href=\"formats.php\">this guide</a>.', '1', '5', '1');
INSERT INTO `faq` VALUES ('440', '40', '6', 'item', 'Downloaded a movie and don\'t know what CAM/TS/TC/SCR means?', 'Check out <a class=\"faqlink\" href=\"videoformats.php\">this guide</a>.', '1', '5', '2');
INSERT INTO `faq` VALUES ('441', '41', '6', 'item', 'Why did an active torrent suddenly disappear?', 'There may be three reasons for this:<br />\r\n(<b>1</b>) The torrent may have been against the site <a class=\"faqlink\" href=\"rules.php\">rules</a>.\r\n<br />\r\n(<b>2</b>) The uploader may have deleted it because it was a bad release. A replacement will probably be uploaded to take its place.<br />\r\n(<b>3</b>) Torrents are automatically deleted after being dead for a long time.', '1', '5', '3');
INSERT INTO `faq` VALUES ('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');
INSERT INTO `faq` VALUES ('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');
INSERT INTO `faq` VALUES ('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.<br />\r\n<br />\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');
INSERT INTO `faq` VALUES ('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');
INSERT INTO `faq` VALUES ('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 <b>new</b> torrent is uploaded to the tracker, there is a period of time that some users must wait before they can download it.<br />\r\nThis delay in downloading will only affect users with a low ratio and downloaded amount above 10 GB.<br />\r\n<br />\r\n<table cellspacing=\"3\" cellpadding=\"0\">\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">Ratio below</td>\r\n <td class=\"embedded\" width=\"40\">0.4</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">delay of</td>\r\n <td class=\"embedded\" width=\"100\">24h</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">Ratio below</td>\r\n <td class=\"embedded\" width=\"40\">0.5</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">delay of</td>\r\n <td class=\"embedded\" width=\"100\">12h</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">Ratio below</td>\r\n <td class=\"embedded\" width=\"40\">0.6</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">delay of</td>\r\n <td class=\"embedded\" width=\"100\">6h</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">Ratio below</td>\r\n <td class=\"embedded\" width=\"40\">0.8</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">delay of</td>\r\n <td class=\"embedded\" width=\"100\">3h</td>\r\n</tr>\r\n</table>', '0', '5', '8');
INSERT INTO `faq` VALUES ('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.<br />\r\n<br />\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). <br />\r\n<br />\r\nThe blocked ports list include the following:<br />\r\n<br />\r\n<table cellspacing=\"3\" cellpadding=\"0\">\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">Direct Connect</td>\r\n <td class=\"embedded\" width=\"100\">411 - 413</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">BitTorrent</td>\r\n <td class=\"embedded\" width=\"100\">6881 - 6889</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">Kazza</td>\r\n <td class=\"embedded\" width=\"100\">1214</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">Gnutella</td>\r\n <td class=\"embedded\" width=\"100\">6346 - 6347</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">Emule</td>\r\n <td class=\"embedded\" width=\"100\">4662</td>\r\n </tr>\r\n <tr>\r\n <td class=\"embedded\" width=\"100\">WinMX</td>\r\n <td class=\"embedded\" width=\"100\">6699</td>\r\n </tr>\r\n</table>\r\n<br />\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. <a class=\"faqlink\" href=\"http://www.iana.org/assignments/port-numbers\">IANA</a>). 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). <br />\r\n<br />\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 <i>increase</i> 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.<br />\r\n<br />\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. <br />\r\n<br />\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');
INSERT INTO `faq` VALUES ('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.<br />\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.<br />\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');
INSERT INTO `faq` VALUES ('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.<br />\r\n(Note: make sure you remember that you did not enjoy the low speed. Seed so that others will not endure the same.)<br />\r\n<br />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');
INSERT INTO `faq` VALUES ('451', '51', '6', 'item', 'Limit your upload speed', 'The upload speed affects the download speed in essentially two ways:\r\n<ul>\r\n <li>Bittorrent peers tend to favour those other peers that upload to them. This means that if A and B are leeching the same torrent and A is sending data to B at high speed then B will try to reciprocate. So due to this effect high upload speeds lead to high download speeds.</li>\r\n\r\n <li>Due to the way TCP works, when A is downloading something from B it has to keep telling B that it received the data sent to him. (These are called acknowledgements - ACKs -, a sort of \"got it!\" messages). If A fails to do this then B will stop sending data and wait. If A is uploading at full speed there may be no bandwidth left for the ACKs and they will be delayed. So due to this effect excessively high upload speeds lead to low download speeds.</li>\r\n</ul>\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. <b>A good thumb rule is keeping the upload at about 80% of the theoretical upload speed. </b>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.) <br />\r\n<br />\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');
INSERT INTO `faq` VALUES ('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');
INSERT INTO `faq` VALUES ('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');
INSERT INTO `faq` VALUES ('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');
INSERT INTO `faq` VALUES ('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.<br />\r\n<br />\r\nBrowsing was used just as an example, the same would apply to gaming, IMing, etc...', '1', '6', '6');
INSERT INTO `faq` VALUES ('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):<br />\r\n<br />\r\n<table cellspacing=\"3\" cellpadding=\"0\">\r\n<tr>\r\n <td class=\"embedded\" valign=\"top\" width=\"100\"> Transparent</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" valign=\"top\">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.)</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" valign=\"top\"> Explicit/Voluntary</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" valign=\"top\">Clients must configure their browsers to use them.</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" valign=\"top\"> Anonymous</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" valign=\"top\">The proxy sends no client identification to the server. (HTTP_X_FORWARDED_FOR header is not sent; the server does not see your IP.)</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" valign=\"top\"> Highly Anonymous</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" valign=\"top\">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.)</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" valign=\"top\"> Public</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" valign=\"top\">(Self explanatory)</td>\r\n</tr>\r\n</table>\r\n<br />\r\nA transparent proxy may or may not be anonymous, and there are several levels of anonymity.', '1', '7', '1');
INSERT INTO `faq` VALUES ('457', '57', '6', 'item', 'How do I find out if I\'m behind a (transparent/anonymous) proxy?', 'Try <a href=\"http://proxyjudge.org\" class=\"faqlink\">ProxyJudge</a>. 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');
INSERT INTO `faq` VALUES ('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');
INSERT INTO `faq` VALUES ('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 <i>logins</i> 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.<br />\r\n<br />\r\nIf somehow your address is blocked by mistake, contact us about it.', '1', '8', '1');
INSERT INTO `faq` VALUES ('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<br />\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.<br />\r\n<br />\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` VALUES ('465', '65', '6', 'item', 'You may try this', 'Post in the <a class=\"faqlink\" href=\"forums.php\">Forums</a>, by all means. You\'ll find they are usually a friendly and helpful place, provided you follow a few basic guidelines: <ul>\r\n<li>Make sure your problem is not really in this FAQ. There\'s no point in posting just to be sent back here. </li>\r\n<li>Before posting read the sticky topics (the ones at the top). Many times new information that still hasn\'t been incorporated in the FAQ can be found there.</li>\r\n<li>Help us in helping you. Do not just say \"it doesn\'t work!\". Provide details so that we don\'t have to guess or waste time asking. What client do you use? What\'s your OS? What\'s your network setup? What\'s the exact error message you get, if any? What are the torrents you are having problems with? The more you tell the easiest it will be for us, and the more probable your post will get a reply.</li>\r\n<li>And needless to say: be polite. Demanding help rarely works, asking for it usually does the trick.</li></ul>', '1', '9', '1');
INSERT INTO `faq` VALUES ('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<br /><br />\r\nRules: <br />\r\n<table cellspacing=\"3\" cellpadding=\"0\">\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">Ratio below</td>\r\n <td class=\"embedded\" width=\"40\">0.5</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">available slots</td>\r\n <td class=\"embedded\" width=\"40\">1</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">Ratio below</td>\r\n <td class=\"embedded\" width=\"40\">0.65</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">available slots</td>\r\n <td class=\"embedded\" width=\"100\">2</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">Ratio below</td>\r\n <td class=\"embedded\" width=\"40\">0.8</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">available slots</td>\r\n <td class=\"embedded\" width=\"100\">3</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">Ratio below</td>\r\n <td class=\"embedded\" width=\"40\">0.95</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">available slots</td>\r\n <td class=\"embedded\" width=\"100\">4</td>\r\n</tr>\r\n<tr>\r\n <td class=\"embedded\" width=\"100\">Ratio above</td>\r\n <td class=\"embedded\" width=\"40\">0.95</td>\r\n <td class=\"embedded\" width=\"10\"> </td>\r\n <td class=\"embedded\" width=\"100\">available slots</td>\r\n <td class=\"embedded\" width=\"100\">unlimited</td>\r\n</tr>\r\n</table>\r\n<br />\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. <br />\r\n<br /><br />\r\nAny time, you can check your available slots in the member bar on top of the page.', '0', '5', '12');
INSERT INTO `faq` VALUES ('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');
INSERT INTO `faq` VALUES ('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.<br />\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');
INSERT INTO `faq` VALUES ('469', '69', '6', 'item', 'When do I need to reset my passkey?', '<ul><li>If your passkey has been leaked and other user(s) uses it to download torrents using your account. In this case, you will see torrents stated in your account that you are not leeching or seeding . </li>\r\n<li>When your clients hangs up or your connection is terminated without pressing the stop button of your client. In this case, in your account you will see that you are still leeching/seeding the torrents even that your client has been closed. Normally these \"ghost peers\" will be cleaned automatically within 30 minutes, but if you want to resume your downloads and the tracker denied that due to the fact that you \"already are downloading the same torrent\" then you should reset your passkey and re-download the torrent, then resume it. </li></ul>', '1', '5', '15');
INSERT INTO `faq` VALUES ('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<br />\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');
INSERT INTO `faq` VALUES ('471', '71', '6', 'categ', 'How can I help translate the site language into my native language?', '', '1', '1', '8');
INSERT INTO `faq` VALUES ('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.<br /><br />\r\nMoreover, we give a detailed tutorial on how to do the translation <a href=\"#73\" class=\"faqlink\"><b>HERE</b></a>. And our coders would be more than pleased to answer the questions you may encounter.<br /><br />\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.<br /><br />\r\nSo, if you think you could help, feel free to <a class=\"faqlink\" href=\"contactstaff.php\"><b>CONTACT US</b></a>. Needless to say, you would be rewarded.', '1', '71', '1');
INSERT INTO `faq` VALUES ('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 <a class=\"faqlink\" href=\"http://technet.microsoft.com/en-us/library/bb456984.aspx\">here</a> for details.\r\n', '1', '5', '17');
INSERT INTO `faq` VALUES ('478', '75', '25', 'item', '不能正常使用UT,提示信息:Error opening Windows firewall 0x80070005 拒绝访问', '原因产生是因为μTorrent不能通过windows自带防火墙允许。\r\n解决方法是将μTorrent加入windows自带防火墙例外,或者关掉自带防火墙!\r\n', '1', '5', '18');
INSERT INTO `faq` VALUES ('479', '76', '25', 'item', '如何续种及辅种教程', '首先,感谢你有想做种跟大家分享你电脑上资源的想法,感谢你对麦田的支持。\r\n \r\n 众所周知,如果随便发补相同的种子的话,会造成你不必要的浪费及管理员的工作量。辅种或者说补种是说如果你手上有某资源,但是别人已经发布过相同的资源在PT上,那么你就不需要利用UT重新制作种子,只需要“补种”或者“辅种”即可。\r\n \r\n 这样做和自己发布种子效果是一样的,只是发种人不是你而已,PT的目的是分享,这也是我们的宗旨。\r\n\r\n续种和辅种的步骤都是一样的,具体如下:\r\n1.下载种子文件。\r\n2.打开种子文件,“保存位置”选文件现在的位置,并勾选“跳过散列检测”\r\n3.μTorrent的“状态”一栏提示“已检查 ××%”\r\n4.检查完成,“tracker状态”一栏提示“工作中”,表示操作成功\r\n若没有提示“已检查 ××%”,请确保文件相同,并且位置没有选错。\r\n\r\n以上步骤的前提是你的资源和已经发布过的资源是否完全相同', '0', '5', '19');
INSERT INTO `faq` VALUES ('480', '27', '25', 'item', '为什么我下载量和分享率以及注册时间都达到升级标准却没有升级呢?', '这个时候你要做的是多点耐心,第二天早上一觉醒来,你会发现你已然升级,这是因为服务器对用户等级判定每天一次!', '1', '2', '12');
INSERT INTO `faq` VALUES ('483', '79', '25', 'item', 'ut突然变成英文了怎么办?', '变成英文的同学下载这个文件\r\n解压并保存到ut目录下\r\n比如我的ut在D:\\Program Files\\uTorrent\r\n就放这里\r\n然后重启ut即可\r\n<a class=\"faqlink\" href=http://pt.nwsuaf6.edu.cn/getattachment.php?id=41049&dlkey=29c06c826608401ce42d9949b645d6b4>下载的就是这个了</a><br /><br /><a href=http://pt.nwsuaf6.edu.cn/forums.php?action=viewtopic&topicid=3084&page=p39344#pid39344>论坛帖子点这里</a>', '3', '5', '22');
INSERT INTO `faq` VALUES ('484', '39', '25', 'item', '你在搞什么鬼?你上传的不是bencode文件!!', '\r\n<a class=\"faqlink\" href=http://pt.nwsuaf6.edu.cn/forums.php?action=viewtopic&forumid=14&topicid=2980>点击进入论坛查看贴子</a>\r\n请使用稳定版本ut', '3', '4', '4');
INSERT INTO `faq` VALUES ('485', '13', '25', 'item', '为什么我不能用ut下载?', '<a class=\"faqlink\" href=http://pt.nwsuaf6.edu.cn/forums.php?action=viewtopic&forumid=13&topicid=1728>首先请查看此帖,点击进入</a>\r\n\r\n<br/><a class=\"faqlink\" href=http://pt.nwsuaf6.edu.cn/forums.php?action=viewtopic&forumid=13&topicid=1859>如果使用360浏览器请看此帖,点击进入</a>\r\n<br/>', '3', '1', '4');
INSERT INTO `faq` VALUES ('486', '14', '25', 'item', '如何设置ut?', '麦田页面底部提供绿化并且设置过的ut下载,请使用此版本。<br/>\r\n设置范例请看论坛此贴\r\n<a class=\"faqlink\" href=http://pt.nwsuaf6.edu.cn/forums.php?action=viewtopic&forumid=13&topicid=4395>点击进入</a>', '1', '1', '5');
INSERT INTO `faq` VALUES ('487', '15', '25', 'item', '下载下来的种子能删吗?资源能删吗?', '使用ut时,<b>如果按照默认设置</b>,打开种子并下载完成之后,ut会在软件所在的文件夹(比如D:\\UTORRENT)或者用户文档配置目录(非绿色版本)自动复制一个种子文件,供做种用。<color=\'red\'>此处种子文件不可删除,如果删除则不能继续做种。<br /></color>\r\n<b>如果按照设置范例(参见下条)</b>设置过之后,会在所设置的路径文件夹中(目录选项)生成种子文件,此处种子不可删除。其他地方种子如果不需要可以删除<br/>\r\n下载完成的资源如果不想继续做种则可以删除.删除之后不能继续做种.有可能导致分享率过低', '3', '1', '6');
-- ----------------------------
-- Table structure for `files`
-- ----------------------------
DROP TABLE IF EXISTS `files`;
CREATE TABLE `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 AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of files
-- ----------------------------
-- ----------------------------
-- Table structure for `forummods`
-- ----------------------------
DROP TABLE IF EXISTS `forummods`;
CREATE TABLE `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 AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of forummods
-- ----------------------------
-- ----------------------------
-- Table structure for `forums`
-- ----------------------------
DROP TABLE IF EXISTS `forums`;
CREATE TABLE `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 AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of forums
-- ----------------------------
-- ----------------------------
-- Table structure for `friends`
-- ----------------------------
DROP TABLE IF EXISTS `friends`;
CREATE TABLE `friends` (
`id` int(10) 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 AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of friends
-- ----------------------------
-- ----------------------------
-- Table structure for `fun`
-- ----------------------------
DROP TABLE IF EXISTS `fun`;
CREATE TABLE `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 AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of fun
-- ----------------------------
-- ----------------------------
-- Table structure for `funds`
-- ----------------------------
DROP TABLE IF EXISTS `funds`;
CREATE TABLE `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;
-- ----------------------------
-- Records of funds
-- ----------------------------
-- ----------------------------
-- Table structure for `funvotes`
-- ----------------------------
DROP TABLE IF EXISTS `funvotes`;
CREATE TABLE `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;
-- ----------------------------
-- Records of funvotes
-- ----------------------------
-- ----------------------------
-- Table structure for `givebonus`
-- ----------------------------
DROP TABLE IF EXISTS `givebonus`;
CREATE TABLE `givebonus` (
`id` int(10) unsigned NOT NULL auto_increment,
`bonusfromuserid` mediumint(8) unsigned NOT NULL,
`bonustotorrentid` mediumint(8) unsigned NOT NULL,
`bonus` decimal(10,1) unsigned NOT NULL,
`type` int(1) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of givebonus
-- ----------------------------
-- ----------------------------
-- Table structure for `invitebox`
-- ----------------------------
DROP TABLE IF EXISTS `invitebox`;
CREATE TABLE `invitebox` (
`Id` int(11) NOT NULL auto_increment,
`username` varchar(20) NOT NULL default '',
`email` varchar(30) NOT NULL default '',
`school` varchar(30) default NULL,
`grade` varchar(20) default NULL,
`web` varchar(50) default NULL,
`disk` varchar(50) default NULL,
`pic` varchar(100) default NULL,
`self_introduction` varchar(255) default NULL,
`added` datetime default NULL,
`dealt_by` varchar(20) NOT NULL default 'no',
`ip` varchar(255) default NULL,
PRIMARY KEY (`Id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of invitebox
-- ----------------------------