2011-03-28 14:21:28 +00:00
< ?
/*
2012-05-18 13:35:17 +00:00
* The $Types array is the backbone of the reports system and is stored here so it can
2013-06-23 08:00:54 +00:00
* be included on the pages that need it without clogging up the pages that don ' t .
2011-03-28 14:21:28 +00:00
* Important thing to note about the array :
2013-06-23 08:00:54 +00:00
* 1. When coding for a non music site , you need to ensure that the top level of the
2011-03-28 14:21:28 +00:00
* array lines up with the $Categories array in your config . php .
2013-06-23 08:00:54 +00:00
* 2. The first sub array contains resolves that are present on every report type
2011-03-28 14:21:28 +00:00
* regardless of category .
2013-06-23 08:00:54 +00:00
* 3. The only part that shouldn ' t be self - explanatory is that for the tracks field in
2011-03-28 14:21:28 +00:00
* the report_fields arrays , 0 means not shown , 1 means required , 2 means required but
2013-06-23 08:00:54 +00:00
* you can 't select the ' All ' box .
* 4. The current report_fields that are set up are tracks , sitelink , link and image . If
2012-05-18 13:35:17 +00:00
* you wanted to add a new one , you ' d need to add a field to the reportsv2 table , elements
* to the relevant report_fields arrays here , add the HTML in ajax_report and add security
* in takereport .
2011-03-28 14:21:28 +00:00
*/
$Types = array (
'master' => array (
'dupe' => array (
2012-05-31 08:00:14 +00:00
'priority' => '10' ,
2012-08-02 08:00:13 +00:00
'reason' => '0' ,
2011-03-28 14:21:28 +00:00
'title' => 'Dupe' ,
'report_messages' => array (
'Please specify a link to the original torrent.'
),
'report_fields' => array (
'sitelink' => '1'
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => '[rule]h2.2[/rule]. Your torrent was reported because it was a duplicate of another torrent.'
2011-03-28 14:21:28 +00:00
)
),
'banned' => array (
2012-05-31 08:00:14 +00:00
'priority' => '230' ,
2012-08-15 08:00:15 +00:00
'reason' => '14' ,
2011-03-28 14:21:28 +00:00
'title' => 'Specifically Banned' ,
'report_messages' => array (
'Please specify exactly which entry on the Do Not Upload list this is violating.'
),
'report_fields' => array (
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '4' ,
'delete' => '1' ,
2013-11-06 08:00:50 +00:00
'pm' => '[rule]h1.2[/rule]. You have uploaded material that is currently forbidden. Items on the Do Not Upload (DNU) list (at the top of the [url=' . site_url () . 'upload.php]upload page[/url]) and in the [url=' . site_url () . ' rules . php ? p = upload #h1.2]Specifically Banned[/url] portion of the uploading rules cannot be uploaded to the site. Do not upload them unless your torrent meets a condition specified in the comments of the DNU list.
2012-05-25 08:00:09 +00:00
Your torrent was reported because it contained material from the DNU list or from the Specifically Banned section of the rules . '
2011-03-28 14:21:28 +00:00
)
),
'urgent' => array (
2012-05-31 08:00:14 +00:00
'priority' => '280' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2011-03-28 14:21:28 +00:00
'title' => 'Urgent' ,
'report_messages' => array (
2013-06-03 08:00:52 +00:00
'This report type is only for very urgent reports, usually for personal information being found within a torrent.' ,
'Abusing the "Urgent" report type could result in a warning or worse.' ,
2012-09-09 08:00:26 +00:00
'As this report type gives the staff absolutely no information about the problem, please be as clear as possible in your comments about what the problem is.'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
'sitelink' => '0' ,
'track' => '0' ,
'link' => '0' ,
'image' => '0' ,
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '0' ,
'pm' => ''
)
),
'other' => array (
2012-05-31 08:00:14 +00:00
'priority' => '200' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2011-03-28 14:21:28 +00:00
'title' => 'Other' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
'Please include as much information as possible to verify the report.'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '0' ,
'pm' => ''
)
2012-05-18 13:35:17 +00:00
),
2011-03-28 14:21:28 +00:00
'trump' => array (
2012-05-31 08:00:14 +00:00
'priority' => '20' ,
2012-08-02 08:00:13 +00:00
'reason' => '1' ,
2011-03-28 14:21:28 +00:00
'title' => 'Trump' ,
'report_messages' => array (
'Please list the specific reason(s) the newer torrent trumps the older one.' ,
2012-11-07 08:00:18 +00:00
'Please make sure you are reporting the torrent <strong class="important_text">which has been trumped</strong> and should be deleted, not the torrent that you think should remain on site.'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
'sitelink' => '1'
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => '[rule]h2.2[/rule]. Your torrent was reported because it was trumped by another torrent.'
2011-03-28 14:21:28 +00:00
)
2013-02-13 08:00:35 +00:00
),
'private_trump' => array (
'priority' => 21 ,
'reason' => '1' ,
'title' => 'Private Flag Trump' ,
'report_messages' => array (
'Please make sure you are reporting the torrent <strong class="important_text">which has been trumped</strong> and should be deleted, not the torrent that you think should remain on site.'
),
'report_fields' => array (
'sitelink' => '1'
),
2013-02-22 08:00:24 +00:00
2013-02-13 08:00:35 +00:00
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '1' ,
'pm' => ''
)
2012-05-18 13:35:17 +00:00
)
),
2013-02-13 08:00:35 +00:00
2012-05-18 13:35:17 +00:00
'1' => array ( //Music Resolves
2011-03-28 14:21:28 +00:00
'tag_trump' => array (
2012-05-31 08:00:14 +00:00
'priority' => '50' ,
2012-08-02 08:00:13 +00:00
'reason' => '4' ,
2011-03-28 14:21:28 +00:00
'title' => 'Tag Trump' ,
'report_messages' => array (
'Please list the specific tag(s) the newer torrent trumps the older one.' ,
2012-11-07 08:00:18 +00:00
'Please make sure you are reporting the torrent <strong class="important_text">which has been trumped</strong> and should be deleted, not the torrent that you think should remain on site.'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
'sitelink' => '1'
),
'resolve_options' => array (
'upload' => '0' ,
2012-07-19 08:00:16 +00:00
'warn' => '0' ,
2011-03-28 14:21:28 +00:00
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.3 . 16 [ / rule ] . Properly tag your music files . Certain meta tags ( e . g . , ID3 , Vorbis ) are required on all music uploads . Make sure to use the appropriate tag format for your files ( e . g . , no ID3 tags for FLAC - see [ rule ] 2.2 . 10.8 [ / rule ]) . ID3v2 tags for files are highly recommended over ID3v1 . ID3 are recommended for AC3 torrents but are not mandatory because the format does not natively support file metadata tagging ( for AC3 , the file names become the vehicle for correctly labeling media files ) . Torrents uploaded with both good ID3v1 tags and blank ID3v2 tags ( a dual set of tags ) are trumpable by torrents with either just good ID3v1 tags or good ID3v2 tags ( a single set of tags ) . If you upload an album missing one or more of the required tags , then another user may add the tags , re - upload , and report your torrent for deletion .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it was trumped by another torrent with improved metadata tags . '
2011-03-28 14:21:28 +00:00
)
),
2011-10-24 08:00:10 +00:00
'vinyl_trump' => array (
2012-05-31 08:00:14 +00:00
'priority' => '60' ,
2012-08-02 08:00:13 +00:00
'reason' => '1' ,
2011-10-24 08:00:10 +00:00
'title' => 'Vinyl Trump' ,
'report_messages' => array (
'Please list the specific reason(s) the newer torrent trumps the older one.' ,
2013-06-03 08:00:52 +00:00
'<strong class="important_text">Please be as thorough as possible and include as much detail as you can. Refer to specific tracks and time positions to justify your report.</strong>' ,
2012-11-07 08:00:18 +00:00
'Please make sure you are reporting the torrent <strong class="important_text">which has been trumped</strong> and should be deleted, not the torrent that you think should remain on site.'
2011-10-24 08:00:10 +00:00
),
'report_fields' => array (
'sitelink' => '1'
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.5 . 5 [ / rule ] . Vinyl rips may be trumped by better - sounding rips of the same bit depth , regardless of lineage information ( see [ rule ] 2.3 . 9 [ / rule ]) .
2012-05-25 08:00:09 +00:00
Your torrent was reported as it was trumped by a better - sounding vinyl rip . '
2011-10-24 08:00:10 +00:00
)
),
2011-03-28 14:21:28 +00:00
'folder_trump' => array (
2012-05-31 08:00:14 +00:00
'priority' => '40' ,
2012-08-02 08:00:13 +00:00
'reason' => '3' ,
2011-10-24 08:00:10 +00:00
'title' => 'Bad Folder Name Trump' ,
2011-03-28 14:21:28 +00:00
'report_messages' => array (
2012-11-07 08:00:18 +00:00
'Please list the folder name and what is wrong with it.' ,
'Please make sure you are reporting the torrent <strong class="important_text">which has been trumped</strong> and should be deleted, not the torrent that you think should remain on site.'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
'sitelink' => '1'
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '1' ,
2013-11-01 08:01:02 +00:00
'pm' => ' [ rule ] 2.3 . 2 [ / rule ] . Name your directories with meaningful titles , such as " Artist - Album (Year) - Format " . The minimum acceptable is " Album " although it is preferable to include more information . If the directory name does not include this minimum then another user can rename the directory , re - upload , and report your torrent for deletion . In addition , torrent folders that are named using the scene convention will be trumpable if the Scene label is absent from the torrent .
2013-06-03 08:00:52 +00:00
[ rule ] 2.3 . 3 [ / rule ] . Avoid creating unnecessary nested folders ( such as an extra folder for the actual album ) inside your properly named directory . A torrent with unnecessary nested folders is trumpable by a torrent with such folders removed . For single disc albums , all audio files must be included in the main torrent folder . For multi - disc albums , the main torrent folder may include one sub - folder that holds the audio file contents for each disc in the box set , i . e . , the main torrent folder is " Adele - 19 (2008) - FLAC " while appropriate sub - folders may include " 19 (Disc 1of2) " or " 19 " and " Live From The Hotel Cafe (Disc 2of2) " or " Acoustic Set Live From The Hotel Cafe, Los Angeles. " Additional folders are unnecessary because they do nothing to improve the organization of the torrent . If you are uncertain about what to do for other cases , PM a staff member for guidance .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it was trumped by another torrent with an improved folder name and directory structure . '
2011-03-28 14:21:28 +00:00
)
),
'file_trump' => array (
2012-05-31 08:00:14 +00:00
'priority' => '30' ,
2012-08-02 08:00:13 +00:00
'reason' => '2' ,
2011-03-28 14:21:28 +00:00
'title' => 'Bad File Names Trump' ,
'report_messages' => array (
'Please describe what is wrong with the file names.' ,
2012-11-07 08:00:18 +00:00
'Please make sure you are reporting the torrent <strong class="important_text">which has been trumped</strong> and should be deleted, not the torrent that you think should remain on site.'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
'sitelink' => '1'
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.3 . 11 [ / rule ] . File names must accurately reflect the song titles . You may not have file names like 01 track . mp3 , 02 track . mp3 , etc . Torrents containing files that are named with incorrect song titles can be trumped by properly labeled torrents . Also , torrents that are sourced from the scene but do not have the Scene label must comply with site naming rules ( no release group names in the file names , no advertisements in the file names , etc . ) . If all the letters in the track titles are capitalized , the torrent is trumpable . If you upload an album with improper file names , then another user may fix the file names , re - upload , and report yours for deletion .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it was trumped by another torrent with improved file names . '
2011-03-28 14:21:28 +00:00
)
),
'tracks_missing' => array (
2012-05-31 08:00:14 +00:00
'priority' => '240' ,
2012-08-15 08:00:15 +00:00
'reason' => '15' ,
2011-03-28 14:21:28 +00:00
'title' => 'Track(s) Missing' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
'Please list the track number and title of the missing track.' ,
2011-03-28 14:21:28 +00:00
'If possible, please provide a link to Amazon.com or another source showing the proper track listing.'
),
'report_fields' => array (
'track' => '2' ,
'link' => '0'
),
'resolve_options' => array (
2012-05-18 13:35:17 +00:00
'upload' => '0' ,
2011-03-28 14:21:28 +00:00
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 19 [ / rule ] . All music torrents must represent a complete release , and may not be missing tracks ( or discs in the case of a multi - disc release ) .
[ rule ] 2.1 . 19.2 [ / rule ] . A single track ( e . g . , one MP3 file ) cannot be uploaded on its own unless it is an officially released single . If a specific track can only be found on an album , the entire album must be uploaded in the torrent .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it was missing tracks . '
2011-03-28 14:21:28 +00:00
)
),
'discs_missing' => array (
2012-05-31 08:00:14 +00:00
'priority' => '120' ,
2012-08-02 08:00:13 +00:00
'reason' => '6' ,
2011-03-28 14:21:28 +00:00
'title' => 'Disc(s) Missing' ,
'report_messages' => array (
'If possible, please provide a link to Amazon.com or another source showing the proper track listing.'
),
'report_fields' => array (
'track' => '0' ,
'link' => '0'
),
'resolve_options' => array (
2012-05-18 13:35:17 +00:00
'upload' => '0' ,
2011-03-28 14:21:28 +00:00
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 19 [ / rule ] . All music torrents must represent a complete release , and may not be missing tracks ( or discs in the case of a multi - disc release ) .
[ rule ] 2.1 . 19.1 [ / rule ] . If an album is released as a multi - disc set ( or box set ) of CDs or vinyl discs , then it must be uploaded as a single torrent . Preferably , each individual CD rip in a multi - disc set should be organized in its own folder ( see [ rule ] 2.3 . 12 [ / rule ]) .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it was missing discs . '
2011-03-28 14:21:28 +00:00
)
),
'bonus_tracks' => array (
2012-05-31 08:00:14 +00:00
'priority' => '90' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2011-03-28 14:21:28 +00:00
'title' => 'Bonus Tracks Only' ,
'report_messages' => array (
2012-08-29 08:00:17 +00:00
'If possible, please provide a link to Amazon.com or another source showing the proper track listing.' ,
'Per <a href="rules.php?p=upload#r2.4.5">rule 2.4.5</a>, exclusive WEB-sourced bonus tracks are allowed to be uploaded separately.'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
'track' => '0' ,
'link' => '0'
),
'resolve_options' => array (
2012-05-18 13:35:17 +00:00
'upload' => '0' ,
2011-03-28 14:21:28 +00:00
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 19.3 [ / rule ] . Bonus discs may be uploaded separately in accordance with [ rule ] h2 . 4 [ / rule ] . Please note that individual bonus tracks cannot be uploaded without the rest of the album . Bonus tracks are not bonus discs . Enhanced audio CDs with data or video tracks must be uploaded without the non - audio tracks . If you want to share the videos or data , you may host the files off - site with a file sharing service and include the link to that service in your torrent description .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it contained only bonus tracks without the full album . '
2011-03-28 14:21:28 +00:00
)
2012-05-18 13:35:17 +00:00
),
2011-03-28 14:21:28 +00:00
'transcode' => array (
2012-05-31 08:00:14 +00:00
'priority' => '250' ,
2012-08-15 08:00:15 +00:00
'reason' => '16' ,
2011-03-28 14:21:28 +00:00
'title' => 'Transcode' ,
'report_messages' => array (
" Please list the tracks you checked, and the method used to determine the transcode. " ,
" If possible, please include at least one screenshot of any spectral analysis done. You may include more than one. "
),
'report_fields' => array (
'image' => '0' ,
'track' => '0'
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '2' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 2 [ / rule ] . No transcodes or re - encodes of lossy releases are acceptable here .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it contained transcoded audio files . '
2011-03-28 14:21:28 +00:00
)
),
'low' => array (
2012-05-31 08:00:14 +00:00
'priority' => '170' ,
2012-08-15 08:00:15 +00:00
'reason' => '10' ,
2011-03-28 14:21:28 +00:00
'title' => 'Low Bitrate' ,
'report_messages' => array (
2013-06-25 08:00:52 +00:00
" Please tell us the actual bitrate and the software used to check. "
2012-05-18 13:35:17 +00:00
),
2011-03-28 14:21:28 +00:00
'report_fields' => array (
'track' => '0'
2012-05-18 13:35:17 +00:00
),
2011-03-28 14:21:28 +00:00
'resolve_options' => array (
'upload' => '0' ,
'warn' => '2' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 3 [ / rule ] . Music releases must have an average bitrate of at least 192 kbps regardless of the format . Exceptions : The following VBR encodes may go under the 192 kbps limit : LAME V2 ( VBR ), V1 ( VBR ), V0 ( VBR ), APS ( VBR ), APX ( VBR ), MP3 192 ( VBR ), and AAC ~ 192 ( VBR ) to AAC ~ 256 ( VBR ) releases .
2013-04-19 08:00:55 +00:00
Your torrent was reported because it contained one or more audio files that did not meet the minimum bitrate requirement . '
2012-05-18 13:35:17 +00:00
)
2011-03-28 14:21:28 +00:00
),
'mutt' => array (
2012-05-31 08:00:14 +00:00
'priority' => '180' ,
2012-08-15 08:00:15 +00:00
'reason' => '11' ,
2012-01-16 08:00:19 +00:00
'title' => 'Mutt Rip' ,
2011-03-28 14:21:28 +00:00
'report_messages' => array (
" Please list at least two (2) tracks which have different bitrates and/or encoders. "
),
'report_fields' => array (
2012-05-18 13:35:17 +00:00
'track' => '0'
2011-03-28 14:21:28 +00:00
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '2' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 6 [ / rule ] . All music torrents must be encoded with a single encoder using the same settings .
2012-12-27 08:00:27 +00:00
Your torrent was reported because it contained one or more audio files that were encoded by different audio encoders or with different encoder settings . '
2011-03-28 14:21:28 +00:00
)
),
'single_track' => array (
2012-05-31 08:00:14 +00:00
'priority' => '270' ,
2012-08-15 08:00:15 +00:00
'reason' => '18' ,
2012-01-16 08:00:19 +00:00
'title' => 'Unsplit Album Rip' ,
2011-03-28 14:21:28 +00:00
'report_messages' => array (
" If possible, please provide a link to Amazon.com or another source showing the proper track listing. " ,
2012-11-07 08:00:18 +00:00
" This option is for uploads of CDs ripped as a single track when it should be split as on the CD. " ,
" This option is not to be confused with uploads of a single track, taken from a CD with multiple tracks (Tracks Missing). "
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
2012-05-18 13:35:17 +00:00
'link' => '0'
2011-03-28 14:21:28 +00:00
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 5 [ / rule ] . Albums must not be ripped or uploaded as a single track .
[ rule ] 2.1 . 5.1 [ / rule ] . If the tracks on the original CD were separate , you must rip them to separate files . Any unsplit FLAC rips lacking a cue sheet will be deleted outright . Any unsplit FLAC rip that includes a cue sheet will be trumpable by a properly split FLAC torrent . CDs with single tracks can be uploaded without prior splitting .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it contained a single - track rip instead of a rip consisting of separate audio files . '
2011-03-28 14:21:28 +00:00
)
),
'tags_lots' => array (
2012-05-31 08:00:14 +00:00
'priority' => '82' ,
2012-08-02 08:00:13 +00:00
'reason' => '4' ,
2012-01-16 08:00:19 +00:00
'title' => 'Bad Tags / No Tags at All' ,
2011-03-28 14:21:28 +00:00
'report_messages' => array (
" Please specify which tags are missing, and whether they're missing from all tracks. " ,
2013-11-01 08:01:02 +00:00
" Ideally, you will replace this torrent with one with fixed tags and report this with the reason \" Tag Trump \" . "
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
2012-05-18 13:35:17 +00:00
'track' => '0'
2011-03-28 14:21:28 +00:00
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '0' ,
2013-11-01 08:01:02 +00:00
'pm' => " [rule]2.3.16[/rule]. Properly tag your music files.
2013-11-06 08:00:50 +00:00
The Uploading Rules require that all uploads be properly tagged . Your torrent has been marked as having bad tags . It is now listed on [ url = " .site_url(). " better . php ] better . php [ / url ] and is eligible for trumping . You are of course free to fix this torrent yourself . Add or fix the required tags and upload the replacement torrent to the site . Then , report ( RP ) the older torrent using the category \ " Tag Trump \" and indicate in the report comments that you have fixed the tags. Be sure to provide a link (PL) to the new replacement torrent. "
2011-03-28 14:21:28 +00:00
)
),
'folders_bad' => array (
2012-05-31 08:00:14 +00:00
'priority' => '81' ,
2012-08-02 08:00:13 +00:00
'reason' => '3' ,
2012-01-16 08:00:19 +00:00
'title' => 'Bad Folder Names' ,
2011-03-28 14:21:28 +00:00
'report_messages' => array (
" Please specify the issue with the folder names. " ,
2013-11-01 08:01:02 +00:00
" Ideally you will replace this torrent with one with fixed folder names and report this with the reason \" Bad Folder Name Trump \" . "
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '0' ,
2013-11-01 08:01:02 +00:00
'pm' => " [rule]2.3.2[/rule]. Name your directories with meaningful titles, such as \" Artist - Album (Year) - Format \" .
2013-11-06 08:00:50 +00:00
The Uploading Rules require that all uploads contain torrent directories with meaningful names . Your torrent has been marked as having a poorly named torrent directory . It is now listed on [ url = " .site_url(). " better . php ] better . php [ / url ] and is eligible for trumping . You are of course free to fix this torrent yourself . Add or fix the folder / directory name ( s ) and upload the replacement torrent to the site . Then , report ( RP ) the older torrent using the category \ " Folder Trump \" and indicate in the report comments that you have fixed the directory name(s). Be sure to provide a link (PL) to the new replacement torrent. "
2012-05-18 13:35:17 +00:00
)
2011-03-28 14:21:28 +00:00
),
'wrong_format' => array (
2012-05-31 08:00:14 +00:00
'priority' => '320' ,
2012-08-15 08:00:15 +00:00
'reason' => '20' ,
2012-01-16 08:00:19 +00:00
'title' => 'Wrong Specified Format' ,
2011-03-28 14:21:28 +00:00
'report_messages' => array (
" Please specify the correct format. "
),
'report_fields' => array (
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '0' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 4 [ / rule ] . Bitrates must accurately reflect encoder presets or the average bitrate of the audio files . You are responsible for supplying correct format and bitrate information on the upload page .
2012-05-25 08:00:09 +00:00
Your torrent has now been labeled using the appropriate format and bitrate . '
2011-03-28 14:21:28 +00:00
)
),
2012-01-22 08:00:20 +00:00
'wrong_media' => array (
2012-05-31 08:00:14 +00:00
'priority' => '330' ,
2012-08-15 08:00:15 +00:00
'reason' => '21' ,
2012-01-22 08:00:20 +00:00
'title' => 'Wrong Specified Media' ,
'report_messages' => array (
" Please specify the correct media. "
),
'report_fields' => array (
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '0' ,
2012-05-18 13:35:17 +00:00
'pm' => ''
2012-01-22 08:00:20 +00:00
)
),
2011-03-28 14:21:28 +00:00
'format' => array (
2012-05-31 08:00:14 +00:00
'priority' => '100' ,
2012-08-02 08:00:13 +00:00
'reason' => '5' ,
2011-03-28 14:21:28 +00:00
'title' => 'Disallowed Format' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
" If applicable, list the relevant tracks. "
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
2012-05-18 13:35:17 +00:00
'track' => '0'
2011-03-28 14:21:28 +00:00
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 1 [ / rule ] . The only formats allowed for music are :
2012-05-18 13:35:17 +00:00
Lossy : MP3 , AAC , AC3 , DTS
2012-05-25 08:00:09 +00:00
Lossless : FLAC
Your torrent was reported because it contained a disallowed format . '
2011-03-28 14:21:28 +00:00
)
),
'bitrate' => array (
2012-05-31 08:00:14 +00:00
'priority' => '150' ,
2012-08-15 08:00:15 +00:00
'reason' => '9' ,
2011-03-28 14:21:28 +00:00
'title' => 'Inaccurate Bitrate' ,
'report_messages' => array (
2013-06-25 08:00:52 +00:00
" Please tell us the actual bitrate and the software used to check. " ,
" If the correct bitrate would make this torrent a duplicate, please report it as a dupe, and describe the mislabeling in \" Comments \" . " ,
" If the correct bitrate would result in this torrent trumping another, please report it as a trump, and describe the mislabeling in \" Comments \" . "
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
2012-05-18 13:35:17 +00:00
'track' => '0'
2011-03-28 14:21:28 +00:00
),
'resolve_options' => array (
'upload' => '0' ,
2012-05-30 08:00:20 +00:00
'warn' => '0' ,
'delete' => '0' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 4 [ / rule ] . Bitrates must accurately reflect encoder presets or the average bitrate of the audio files . You are responsible for supplying correct format and bitrate information on the upload page .
2012-05-25 08:00:09 +00:00
Your torrent was reported because the bitrates of one or more audio files had been misrepresented . '
2011-03-28 14:21:28 +00:00
)
),
'source' => array (
2012-05-31 08:00:14 +00:00
'priority' => '210' ,
2012-08-15 08:00:15 +00:00
'reason' => '12' ,
2012-01-16 08:00:19 +00:00
'title' => 'Radio/TV/FM/WEB Rip' ,
2011-03-28 14:21:28 +00:00
'report_messages' => array (
2012-11-07 08:00:18 +00:00
" Please include as much information as possible to verify the report. "
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
2012-05-18 13:35:17 +00:00
'link' => '0'
2011-03-28 14:21:28 +00:00
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 11 [ / rule ] . Music ripped from the radio ( Satellite or FM ), television , the web , or podcasts are not allowed .
2012-07-14 08:00:13 +00:00
The only allowable media formats are CD , DVD , Vinyl , Soundboard , SACD , DAT , Cassette , WEB , and Blu - ray . '
2011-03-28 14:21:28 +00:00
)
),
'discog' => array (
2012-05-31 08:00:14 +00:00
'priority' => '130' ,
2012-08-02 08:00:13 +00:00
'reason' => '7' ,
2011-03-28 14:21:28 +00:00
'title' => 'Discography' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
" Please include as much information as possible to verify the report. "
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
2012-05-18 13:35:17 +00:00
'link' => '0'
2011-03-28 14:21:28 +00:00
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 20 [ / rule ] . User made discographies may not be uploaded . Multi - album torrents are not allowed on the site under any circumstances . That means no discographies , Pitchfork compilations , etc . If releases ( e . g . , CD singles ) were never released as a bundled set , do not upload them together . Live Soundboard material should be uploaded as one torrent per night , per show , or per venue . Including more than one show in a torrent results in a multi - album torrent .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it consisted of a discography . '
2011-03-28 14:21:28 +00:00
)
),
'user_discog' => array (
2012-05-31 08:00:14 +00:00
'priority' => '290' ,
2012-08-15 08:00:15 +00:00
'reason' => '19' ,
2011-03-28 14:21:28 +00:00
'title' => 'User Compilation' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
" Please include as much information as possible to verify the report. "
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
2012-05-18 13:35:17 +00:00
'link' => '0'
2011-03-28 14:21:28 +00:00
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 16 [ / rule ] . User - made compilations are not allowed .
[ rule ] 2.1 . 16.1 [ / rule ] . These are defined as compilations made by the uploader or anyone else who does not officially represent the artist or the label . Compilations must be reasonably official . User - made and unofficial multichannel mixes are also not allowed .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it was a user compilation . '
2011-03-28 14:21:28 +00:00
)
),
'lineage' => array (
2012-05-31 08:00:14 +00:00
'priority' => '190' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2011-03-28 14:21:28 +00:00
'title' => 'No Lineage Info' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
" Please list the specific information missing from the torrent (hardware, software, etc.). "
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '0' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.3 . 9 [ / rule ] . All lossless analog rips should include clear information about source lineage . All lossless SACD digital layer analog rips and vinyl rips must include clear information about recording equipment used ( see [ rule ] h2 . 8 [ / rule ]) . If you used a USB turntable for a vinyl rip , clearly indicate this in your lineage information . Also include all intermediate steps up to lossless encoding , such as the program used for mastering , sound card used , etc . Lossless analog rips missing rip information can be trumped by better documented lossless analog rips of equal or better quality . In order to trump a lossless analog rip without a lineage , this lineage must be included as a . txt or . log file within the new torrent .
2012-05-25 08:00:09 +00:00
Your torrent is now eligible for trumping by a better - sounding rip with complete lineage information . '
2011-03-28 14:21:28 +00:00
)
),
'edited' => array (
2012-05-31 08:00:14 +00:00
'priority' => '140' ,
2012-08-02 08:00:13 +00:00
'reason' => '8' ,
2011-03-28 14:21:28 +00:00
'title' => 'Edited Log' ,
'report_messages' => array (
2012-05-18 13:35:17 +00:00
" Please explain exactly where you believe the log was edited. " ,
" The torrent will not show 'reported' on the group page, but rest assured that the report will be seen by moderators. "
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '4' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.2 . 10.9 [ / rule ] . No log editing is permitted .
[ rule ] 2.2 . 10.9 . 1 [ / rule ] . Forging log data is a serious misrepresentation of quality , and will result in a warning and the loss of your uploading privileges when the edited log is found . We recommend that you do not open the rip log file for any reason . However , if you must open the rip log , do not edit anything in the file for any reason . If you discover that one of your software settings is incorrect in the ripping software preferences , you must rip the CD again with the proper settings . Do not consolidate logs under any circumstances . If you must re - rip specific tracks or an entire disc and the rip results happen to have the new log appended to the original , leave them as is . Do not remove any part of either log , and never copy / paste parts of a new log over an old log .
2013-04-19 08:00:55 +00:00
Your torrent was reported because it contained an edited log ( either edited by you or someone else ) . For questions about your uploading privileges , you must PM the staff member who handled this log case . '
2011-03-28 14:21:28 +00:00
)
),
'audience' => array (
2012-05-31 08:00:14 +00:00
'priority' => '70' ,
2012-08-15 08:00:15 +00:00
'reason' => '22' ,
2011-03-28 14:21:28 +00:00
'title' => 'Audience Recording' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
" Please include as much information as possible to verify the report. "
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
2012-05-18 13:35:17 +00:00
'link' => '0'
2011-03-28 14:21:28 +00:00
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 12 [ / rule ] . No unofficial audience recordings may be uploaded . These include but are not limited to AUD ( Audience ), IEM ( In Ear Monitor ), ALD ( Assistive Listening Device ), Mini - Disc , and Matrix - sourced recordings ( see [ rule ] 2.6 . 3 [ / rule ]) .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it was sourced from an audience recording . '
2011-03-28 14:21:28 +00:00
)
),
'filename' => array (
2012-05-31 08:00:14 +00:00
'priority' => '80' ,
2012-08-02 08:00:13 +00:00
'reason' => '2' ,
2011-03-28 14:21:28 +00:00
'title' => 'Bad File Names' ,
'report_messages' => array (
),
'report_fields' => array (
2012-05-18 13:35:17 +00:00
'track' => '0'
2011-03-28 14:21:28 +00:00
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '0' ,
2013-11-01 08:01:02 +00:00
'pm' => ' [ rule ] 2.3 . 11 [ / rule ] . File names must accurately reflect the song titles . You may not have file names like 01 track . mp3 , 02 track . mp3 , etc . Torrents containing files that are named with incorrect song titles can be trumped by properly labeled torrents . Also , torrents that are sourced from the scene but do not have the " Scene " label must comply with site naming rules ( no release group names in the file names , no advertisements in the file names , etc . ) . If all the letters in the track titles are capitalized , the torrent is trumpable .
2013-06-03 08:00:52 +00:00
[ rule ] 2.3 . 13 [ / rule ] . Track numbers are required in file names ( e . g . , " 01 - TrackName.mp3 " ) . If a torrent without track numbers in the file names is uploaded , then a torrent with the track numbers in the file names can take its place . When formatted properly , file names will sort in order by track number or playing order . Also see [ rule ] 2.3 . 14 [ / rule ] .
2013-11-06 08:00:50 +00:00
The Uploading Rules require that all uploads contain audio tracks with accurate file names . Your torrent has been marked as having incorrect or incomplete file names . It is now listed on [ url = '.site_url().' better . php ] better . php [ / url ] and is eligible for trumping . You are of course free to fix this torrent yourself . Add or fix the file names and upload the replacement torrent to the site . Then , report ( RP ) the older torrent using the category " Bad File Names Trump " and indicate in the report comments that you have fixed the file names . Be sure to provide a permalink ( PL ) to the new replacement torrent . '
2011-03-28 14:21:28 +00:00
)
),
'cassette' => array (
2012-05-31 08:00:14 +00:00
'priority' => '260' ,
2012-08-15 08:00:15 +00:00
'reason' => '17' ,
2011-03-28 14:21:28 +00:00
'title' => 'Unapproved Cassette' ,
'report_messages' => array (
2013-04-19 08:00:55 +00:00
'If the album was never released other than on cassette, please include a source.'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
2012-05-18 13:35:17 +00:00
'link' => '0'
2011-03-28 14:21:28 +00:00
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.10 . 1 [ / rule ] . Cassettes are allowed under strict conditions .
2013-11-06 08:00:50 +00:00
[ rule ] 2.10 . 1.1 [ / rule ] . Releases available only on cassette may be uploaded under special strict conditions ( see [ url = '.site_url().' wiki . php ? action = article & amp ; id = 593 ] this wiki [ / url ] for information on cassette ripping ) .
2013-11-01 08:01:02 +00:00
2013-06-03 08:00:52 +00:00
[ rule ] 2.10 . 1.2 [ / rule ] . Rips must be made from official cassette sources . Bootlegs are often from unofficial sources and may be deleted if they do not meet high quality audio standards ( see rule [ rule ] 2.10 . 8 [ / rule ]) .
2013-04-19 08:00:55 +00:00
When uploading new cassette - sourced torrents , be sure to include in the release description evidence of its uniqueness in the form of discography information from a reputable source as well as pictures of the cassette you ripped . '
2011-03-28 14:21:28 +00:00
)
),
'skips' => array (
2012-05-31 08:00:14 +00:00
'priority' => '220' ,
2012-08-15 08:00:15 +00:00
'reason' => '13' ,
2011-03-28 14:21:28 +00:00
'title' => 'Skips / Encode Errors' ,
'report_messages' => array (
2013-06-03 08:00:52 +00:00
'<strong class="important_text">Please be as thorough as possible and include as much detail as you can. Refer to specific tracks and time positions to justify your report.</strong>'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
2012-05-18 13:35:17 +00:00
'track' => '2'
2011-03-28 14:21:28 +00:00
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 8 [ / rule ] . Music not sourced from vinyl must not contain pops , clicks , or skips . They will be deleted for rip / encode errors if reported .
2012-05-25 08:00:09 +00:00
Your torrent was reported because one or more tracks contain encoding errors . '
2011-03-28 14:21:28 +00:00
)
),
'rescore' => array (
2012-05-31 08:00:14 +00:00
'priority' => '160' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2011-03-28 14:21:28 +00:00
'title' => 'Log Rescore Request' ,
'report_messages' => array (
" It could help us if you say exactly why you believe this log requires rescoring. " ,
2012-11-07 08:00:18 +00:00
" For example, if it's a foreign log which needs scoring, or if the log wasn't uploaded at all. "
2011-03-28 14:21:28 +00:00
),
2012-05-18 13:35:17 +00:00
'report_fields' => array (
2011-03-28 14:21:28 +00:00
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '0' ,
2013-11-06 08:00:50 +00:00
'pm' => '[rule]2.2.10.3[/rule]. A FLAC upload with an EAC or XLD rip log that scores 100% on the log checker replaces one with a lower score... . Note: A FLAC upload with a log that scores 95% for not defeating the audio cache may be rescored to 100% following the procedure outlined in [url=' . site_url () . ' wiki . php ? action = article & amp ; id = 219 ] this wiki [ / url ] .
2013-06-03 08:00:52 +00:00
[ rule ] 2.2 . 10.5 [ / rule ] . XLD and EAC logs in languages other than English require a manual log checker score adjustment by staff .
[ rule ] 2.2 . 10.6 . 2 [ / rule ] . If you created a CD range rip that has matching CRCs for test and copy , and where every track has an AccurateRip score of 2 or more , then you may submit your torrent for manual score adjustment .
[ rule ] 2.2 . 10.9 . 2 [ / rule ] . If you find that an appended log has not been scored properly , please report the torrent and use the log rescore option .
2012-05-25 08:00:09 +00:00
Your torrent has now been properly scored by the staff . '
2011-03-28 14:21:28 +00:00
)
2012-05-18 13:35:17 +00:00
)
2011-03-28 14:21:28 +00:00
),
'2' => array ( //Applications Rules Broken
'missing_crack' => array (
2012-05-31 08:00:14 +00:00
'priority' => '70' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2011-03-28 14:21:28 +00:00
'title' => 'No Crack/Keygen/Patch' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
'Please include as much information as possible to verify the report.' ,
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
'link' => '0'
),
'resolve_options' => array (
2012-05-18 13:35:17 +00:00
'upload' => '0' ,
2011-03-28 14:21:28 +00:00
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 4.1 . 2 [ / rule ] . All applications must come with a crack , keygen , or other method of ensuring that downloaders can install them easily . App torrents with keygens , cracks , or patches that do not work or torrents missing clear installation instructions will be deleted if reported . No exceptions .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it was missing an installation method . '
2011-03-28 14:21:28 +00:00
)
),
'game' => array (
2012-05-31 08:00:14 +00:00
'priority' => '50' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2011-03-28 14:21:28 +00:00
'title' => 'Game' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
'Please include as much information as possible to verify the report.' ,
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
'link' => '0'
),
'resolve_options' => array (
2012-05-18 13:35:17 +00:00
'upload' => '0' ,
2011-03-28 14:21:28 +00:00
'warn' => '4' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 1.2 . 5 [ / rule ] . Games of any kind . No games of any kind for PC , Mac , Linux , mobile devices , or any other platform are allowed .
[ rule ] 4.1 . 7 [ / rule ] . Games of any kind are prohibited ( see [ rule ] 1.2 . 5 [ / rule ]) .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it contained a game disc rip . '
2011-03-28 14:21:28 +00:00
)
),
'free' => array (
2012-05-31 08:00:14 +00:00
'priority' => '40' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2011-03-28 14:21:28 +00:00
'title' => 'Freely Available' ,
'report_messages' => array (
'Please include a link to a source of information or to the freely available app itself.' ,
),
'report_fields' => array (
'link' => '1'
),
'resolve_options' => array (
2012-05-18 13:35:17 +00:00
'upload' => '0' ,
2011-03-28 14:21:28 +00:00
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 4.1 . 3 [ / rule ] . App releases must not be freely available tools . Application releases cannot be freely downloaded anywhere from any official source . Nor may you upload open source applications where the source code is available for free .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it contained a freely available application . '
2011-03-28 14:21:28 +00:00
)
),
'description' => array (
2012-05-31 08:00:14 +00:00
'priority' => '80' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2011-03-28 14:21:28 +00:00
'title' => 'No Description' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
'If possible, please provide a link to an accurate description.' ,
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
'link' => '0'
),
'resolve_options' => array (
2012-05-18 13:35:17 +00:00
'upload' => '0' ,
2011-03-28 14:21:28 +00:00
'warn' => '1' ,
'delete' => '1' ,
2013-06-15 08:00:45 +00:00
'pm' => ' [ rule ] 4.1 . 4 [ / rule ] . Release descriptions for applications must contain good information about the application . You should either have a small description of the program ( either taken from its web site or from an NFO file ) or a link to the information & #8202;— but ideally both. Torrents missing this information will be deleted when reported.
2012-05-25 08:00:09 +00:00
Your torrent was reported because it lacked adequate release information . '
2011-03-28 14:21:28 +00:00
)
),
'pack' => array (
2012-05-31 08:00:14 +00:00
'priority' => '20' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2011-03-28 14:21:28 +00:00
'title' => 'Archived Pack' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
'Please include as much information as possible to verify the report.'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
'link' => '0'
),
'resolve_options' => array (
2012-05-18 13:35:17 +00:00
'upload' => '0' ,
2011-03-28 14:21:28 +00:00
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 18 [ / rule ] . Sound Sample Packs must be uploaded as applications .
[ rule ] 4.1 . 9 [ / rule ] . Sound sample packs , template collections , and font collections are allowed if they are official releases , not freely available , and unarchived . Sound sample packs , template collections , and font collections must be official compilations and they must not be uploaded as an archive . The files contained inside the torrent must not be archived so that users can see what the pack contains . That means if sound sample packs are in WAV format , they must be uploaded as WAV . If the font collection , template collection , or sound sample pack was originally released as an archive , you must unpack the files before uploading them in a torrent . None of the contents in these packs and collections may be freely available .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it was an archived collection . '
2011-03-28 14:21:28 +00:00
)
),
'collection' => array (
2012-05-31 08:00:14 +00:00
'priority' => '30' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2011-03-28 14:21:28 +00:00
'title' => 'Collection of Cracks' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
'Please include as much information as possible to verify the report.'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
'link' => '0'
),
'resolve_options' => array (
2012-05-18 13:35:17 +00:00
'upload' => '0' ,
2011-03-28 14:21:28 +00:00
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 4.1 . 11 [ / rule ] . Collections of cracks , keygens or serials are not allowed . The crack , keygen , or serial for an application must be in a torrent with its corresponding application . It cannot be uploaded separately from the application .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it contained a collection of serials , keygens , or cracks . '
2011-03-28 14:21:28 +00:00
)
),
'hack' => array (
2012-05-31 08:00:14 +00:00
'priority' => '60' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2011-03-28 14:21:28 +00:00
'title' => 'Hacking Tool' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
'Please include as much information as possible to verify the report.' ,
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
'link' => '0'
),
'resolve_options' => array (
2012-05-18 13:35:17 +00:00
'upload' => '0' ,
2011-03-28 14:21:28 +00:00
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 4.1 . 12 [ / rule ] . Torrents containing hacking or cracking tools are prohibited .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it contained a hacking tool . '
2011-03-28 14:21:28 +00:00
)
2012-01-16 08:00:19 +00:00
),
'virus' => array (
2012-05-31 08:00:14 +00:00
'priority' => '60' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2012-01-16 08:00:19 +00:00
'title' => 'Contains Virus' ,
'report_messages' => array (
2013-06-25 08:00:52 +00:00
'Please include as much information as possible to verify the report. Please also double-check that your virus scanner is not incorrectly identifying a keygen or crack as a virus.' ,
2012-01-16 08:00:19 +00:00
),
'report_fields' => array (
'link' => '0'
),
'resolve_options' => array (
2012-05-18 13:35:17 +00:00
'upload' => '0' ,
2012-01-16 08:00:19 +00:00
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 4.1 . 14 [ / rule ] . All applications must be complete .
2012-05-25 08:00:09 +00:00
The torrent was determined to be infected with a virus or trojan . In the future , please scan all potential uploads with an antivirus program such as AVG , Avast , or MS Security Essentials .
Your torrent was reported because it contained a virus or trojan . '
2012-01-16 08:00:19 +00:00
)
),
'notwork' => array (
2012-05-31 08:00:14 +00:00
'priority' => '60' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2012-01-16 08:00:19 +00:00
'title' => 'Not Working' ,
'report_messages' => array (
'Please include as much information as possible to verify the report.' ,
),
'report_fields' => array (
'link' => '0'
),
'resolve_options' => array (
2012-05-18 13:35:17 +00:00
'upload' => '0' ,
2012-01-16 08:00:19 +00:00
'warn' => '0' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 4.1 . 14 [ / rule ] . All applications must be complete .
2012-05-25 08:00:09 +00:00
This program was determined to be not fully functional .
Your torrent was reported because it contained a program that did not work or no longer works . '
2012-01-16 08:00:19 +00:00
)
2011-03-28 14:21:28 +00:00
)
),
'3' => array ( //Ebook Rules Broken
'unrelated' => array (
2012-05-31 08:00:14 +00:00
'priority' => '270' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2014-01-18 08:01:25 +00:00
'title' => 'Ebook Collection' ,
2011-03-28 14:21:28 +00:00
'report_messages' => array (
2012-11-07 08:00:18 +00:00
'Please include as much information as possible to verify the report.'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 6.5 [ / rule ] . Collections / packs of ebooks are prohibited , even if each title is somehow related to other ebook titles in some way . All ebooks must be uploaded individually and cannot be archived ( users must be able to see the ebook format in the torrent ) .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it contained a collection or pack of ebooks . '
2011-03-28 14:21:28 +00:00
)
)
),
'4' => array ( //Audiobook Rules Broken
'skips' => array (
2012-05-31 08:00:14 +00:00
'priority' => '210' ,
2012-08-15 08:00:15 +00:00
'reason' => '13' ,
2011-03-28 14:21:28 +00:00
'title' => 'Skips / Encode Errors' ,
'report_messages' => array (
2013-06-03 08:00:52 +00:00
'<strong class="important_text">Please be as thorough as possible and include as much detail as you can. Refer to specific tracks and time positions to justify your report.</strong>'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
2012-05-18 13:35:17 +00:00
'track' => '2'
2011-03-28 14:21:28 +00:00
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '0' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 2.1 . 8 [ / rule ] . Music not sourced from vinyl must not contain pops , clicks , or skips . They will be deleted for rip / encode errors if reported .
2012-05-25 08:00:09 +00:00
Your torrent was reported because one or more audiobook tracks contain encoding errors . '
2011-03-28 14:21:28 +00:00
)
)
),
'5' => array ( //E-Learning vidoes Rules Broken
'dissallowed' => array (
2012-05-31 08:00:14 +00:00
'priority' => '20' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2011-03-28 14:21:28 +00:00
'title' => 'Disallowed Topic' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
'Please include as much information as possible to verify the report.'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
'link' => '0'
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '1' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 7.3 [ / rule ] . Tutorials on how to use musical instruments , vocal training , producing music , or otherwise learning the theory and practice of music are the only allowed topics . No material outside of these topics is allowed . For example , instruction videos about Kung Fu training , dance lessons , beer brewing , or photography are not permitted here . What is considered allowable under these topics is ultimately at the discretion of the staff .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it contained a video that has no relevance to the allowed music - related topics on the site . '
2011-03-28 14:21:28 +00:00
)
)
),
'6' => array ( //Comedy Rules Broken
'talkshow' => array (
2012-05-31 08:00:14 +00:00
'priority' => '270' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2011-03-28 14:21:28 +00:00
'title' => 'Talkshow/Podcast' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
'Please include as much information as possible to verify the report.'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
'link' => '0'
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '1' ,
'delete' => '1' ,
2013-07-18 08:00:51 +00:00
'pm' => ' [ rule ] 3.3 [ / rule ] . No radio talk shows or podcasts are allowed . Those recordings do not belong in any torrent category .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it contained audio files sourced from a talk show or podcast . '
2013-07-18 08:00:51 +00:00
2011-03-28 14:21:28 +00:00
)
)
),
'7' => array ( //Comics Rules Broken
'titles' => array (
2012-05-31 08:00:14 +00:00
'priority' => '180' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2011-03-28 14:21:28 +00:00
'title' => 'Multiple Comic Titles' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
'Please include as much information as possible to verify the report.'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
'link' => '0'
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 5.2 . 3 [ / rule ] . Collections may not span more than one comic title . You may not include multiple , different comic titles in a single collection , e . g . , " The Amazing Spider-Man #1 " and " The Incredible Hulk #1. "
2012-05-25 08:00:09 +00:00
Your torrent was reported because it contained comics from multiple unrelated series . '
2011-03-28 14:21:28 +00:00
)
),
'volumes' => array (
2012-05-31 08:00:14 +00:00
'priority' => '190' ,
2012-08-02 08:00:13 +00:00
'reason' => '-1' ,
2011-03-28 14:21:28 +00:00
'title' => 'Multiple Volumes' ,
'report_messages' => array (
2012-11-07 08:00:18 +00:00
'Please include as much information as possible to verify the report.'
2011-03-28 14:21:28 +00:00
),
'report_fields' => array (
'link' => '0'
),
'resolve_options' => array (
'upload' => '0' ,
'warn' => '' ,
'delete' => '1' ,
2013-06-03 08:00:52 +00:00
'pm' => ' [ rule ] 5.2 . 6 [ / rule ] . Torrents spanning multiple volumes are too large and must be uploaded as separate volumes .
2012-05-25 08:00:09 +00:00
Your torrent was reported because it contained multiple comic volumes . '
2011-03-28 14:21:28 +00:00
)
)
)
);