Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > Gazelle
Reply
  #1  
Old 24th July 2013, 13:34
nirbe nirbe is offline
Senior Member
 
Join Date: Oct 2012
Israel
Posts: 39
Default need a updated guide to install gazelle on Debian
Hello,
I need updated guide to install gazelle on Debian.
With ocelot (need all the relevant commands).

Thanks!
Reply With Quote
  #2  
Old 24th July 2013, 13:41
firefly007's Avatar
firefly007 firefly007 is offline
SUPPORT GURU
 
Join Date: Jun 2010
P2P
Posts: 721
Default
Quote:
Originally Posted by nirbe View Post
Hello,
I need updated guide to install gazelle on Debian.
With ocelot (need all the relevant commands).

Thanks!
http://www.filesharenews.com/2011/09...-ubuntu-11-10/

Try this....
__________________




Please Support Majority Report


You can contact me on Skype live:phesadent.elect but please let me know first.


If you are ever need me desperately then please email me at dan.oak44@gmail.com and I will contact u within a week.


Due to free time I'm able to help interested member's with their tracker.

Please Note!
Depending on your requests I will charge you for my assistance for Tracker installs and mods.
All my mods are custom and prices will very depending on the request.
I'm able to install any tracker and mods including themes.

Please PM me

Reply With Quote
The Following 2 Users Say Thank You to firefly007 For This Useful Post:
KrackerMan (24th July 2013), nirbe (24th July 2013)
  #3  
Old 24th July 2013, 16:02
ilikecookies ilikecookies is offline
Member
 
Join Date: Jun 2013
P2P
Posts: 12
Default
every time that im trying to install it im getting a blank page with firefox,and a500 Internal Server Error
Reply With Quote
  #4  
Old 25th July 2013, 00:15
KrackerMan's Avatar
KrackerMan KrackerMan is offline
Senior Member
 
Join Date: Aug 2010
United States
Posts: 109
Default
Thanks for this link firefly007 hopefully this will help a lot of people who have trouble installing this source code.

@ilikecookies

*Note* You must fill in everything minus IRC otherwise you will get a blank white page error.
Reply With Quote
  #5  
Old 25th July 2013, 02:28
firefly007's Avatar
firefly007 firefly007 is offline
SUPPORT GURU
 
Join Date: Jun 2010
P2P
Posts: 721
Default
Quote:
Originally Posted by KrackerMan View Post
Thanks for this link firefly007 hopefully this will help a lot of people who have trouble installing this source code.

@ilikecookies

*Note* You must fill in everything minus IRC otherwise you will get a blank white page error.
Np.

and ++ krackerMan all info needs to be fulled out.

Here is an example ilikecookies


Backup old config.php and replace with, then change to your details.

config.php

PHP Code:

<?php
date_default_timezone_set
('Africa/Johannesburg');

// Main settings
define('SITE_NAME''yoursite.com'); //The name of your site
define('NONSSL_SITE_URL''yoursite.com'); //The FQDN of your site
define('SSL_SITE_URL'''); //The FQDN of your site, make this different if you are using a subdomain for ssl
define('SERVER_ROOT''/var/www'); //The root of the server, used for includes, purpose is to shorten the path string
define('ANNOUNCE_URL''http://'.NONSSL_SITE_URL.':34000'); //Announce URL

// Allows you to run static content off another server. Default is usually what you want.
define('NONSSL_STATIC_SERVER''static/');
define('SSL_STATIC_SERVER''static/');

// Keys
define('ENCKEY'''); //Random key. The key for encryption
define('SITE_SALT'''); //Random key. Default site wide salt for passwords, DO NOT LEAVE THIS BLANK/CHANGE AFTER LAUNCH!
define('SCHEDULE_KEY''XiMl7NcbMgrPOGz5'); // Random key. This key must be the argument to schedule.php for the schedule to work. 
define('RSS_HASH'''); //Random key. Used for generating unique RSS auth key.

// MySQL details
define('SQLHOST''localhost'); //The MySQL host ip/fqdn
define('SQLLOGIN''root');//The MySQL login
define('SQLPASS''pass'); //The MySQL password
define('SQLDB''gazelle'); //The MySQL database to use
define('SQLPORT'3306); //The MySQL port to connect on
define('SQLSOCK''/var/run/mysqld/mysqld.sock');

// Memcached details
define('MEMCACHED_HOST''unix:///var/run/memcached.sock'); // unix sockets are fast, and other people can't telnet into them
define('MEMCACHED_PORT'0);

// Sphinx details
define('SPHINX_HOST''localhost');
define('SPHINX_PORT'9312);
define('SPHINX_MAX_MATCHES'1000); // Must be <= the server's max_matches variable (default 1000)
define('SPHINX_MATCHES_START'100); // Number of matches to load on first page
define('SPHINX_MATCHES_STEP'50); // Load more torrents every SPHINX_MATCHES_STEP/TORRENTS_PER_PAGE page (Should be lower than SPHINX_MATCHES_START)
define('SPHINX_INDEX''torrents');

// Ocelot details
define('TRACKER_HOST''localhost');
define('TRACKER_PORT'34000);
define('TRACKER_SECRET''8ab5ade2748c995734bf9262734e547e'); // Must be 32 characters and match site_password in Ocelot's config.cpp

if (!empty($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == 80) {
    
define('SITE_URL'NONSSL_SITE_URL);
    
define('STATIC_SERVER'NONSSL_STATIC_SERVER);
} else {
    
define('SITE_URL'SSL_SITE_URL);
    
define('STATIC_SERVER'SSL_STATIC_SERVER);
}

// Site settings
define('DEBUG_MODE'false); //Set to false if you dont want everyone to see debug information, can be overriden with 'site_debug' 
define('OPEN_REGISTRATION'true); //Set to false to disable open regirstration, true to allow anyone to register
define('USER_LIMIT'5000); //The maximum number of users the site can have, 0 for no limit
define('STARTING_INVITES'0); //# of invites to give to newly registered users
define('DONOR_INVITES'2);

// User class IDs needed for automatic promotions. Found in the 'permissions' table
// Name of class    Class ID (NOT level)
define('USER',        '2');
define('MEMBER',    '3');
define('POWER',        '4');
define('ARTIST',    '19');
define('DONOR',        '20');
define('ELITE',        '5');
define('VIP',        '6');
define('TORRENT_MASTER','7');
define('LEGEND',    '8');
define('CELEB',        '9');
define('MOD',        '11');
define('DESIGNER',    '13');
define('CODER',        '14');
define('ADMIN',        '1');
define('SYSOP',        '15');

//Pagination
define('TORRENT_COMMENTS_PER_PAGE'10);
define('POSTS_PER_PAGE'25);
define('TOPICS_PER_PAGE'50);
define('TORRENTS_PER_PAGE'50);
define('REQUESTS_PER_PAGE'25);
define('MESSAGES_PER_PAGE'25);
define('LOG_ENTRIES_PER_PAGE'50);

//Cache catalogues
define('THREAD_CATALOGUE'500); // Limit to THREAD_CATALOGUE posts per cache key.

// IRC settings
define('BOT_NICK''');
define('BOT_SERVER'''); // IRC server address. Used for onsite chat tool.
define('BOT_PORT'6667);
define('BOT_CHAN''#'.NONSSL_SITE_URL);
define('BOT_ANNOUNCE_CHAN''#');
define('BOT_STAFF_CHAN''#');
define('BOT_DISABLED_CHAN''#'); // Channel to refer disabled users to.
define('BOT_HELP_CHAN''#');
define('BOT_DEBUG_CHAN''#');
define('BOT_REPORT_CHAN''#');
define('BOT_NICKSERV_PASS''');
define('SOCKET_LISTEN_PORT'51010);
define('SOCKET_LISTEN_ADDRESS''irc.ytalk.us');
define('ADMIN_CHAN''#');
define('LAB_CHAN''#');
define('STATUS_CHAN''#');

// Miscellaneous values

$Categories = array('Music''Applications''E-Books''Audiobooks''E-Learning Videos''Movies|HD','TV|SD','TV|SD_x264','TV|HD_x264','GAME|PC','Movies|DVD','Movies|XVID','AUDIO|MP3','Comedy','Comics');
$CategoryIcons = array('music.png''tv264.png''apps.png''ebook.png''audiobook.png''elearning.png''movieshd.png''comedy.png''comics.png');

$Formats = array('MP3''FLAC''Ogg Vorbis''AAC''AC3''DTS');
$Bitrates = array('192''APS (VBR)''V2 (VBR)''V1 (VBR)''256''APX (VBR)''V0 (VBR)''q8.x (VBR)''320''Lossless''24bit Lossless''Other');
$Media = array('CD''DVD''Vinyl''Soundboard''SACD''DAT''Cassette''WEB');

$CollageCats = array(0=>'Personal'1=>'Theme'2=>'Genre introduction'3=>'Discography'4=>'Label'5=>'Staff picks'6=>'Charts');

$ReleaseTypes = array(1=>'Album'3=>'Soundtrack'5=>'EP'6=>'Anthology'7=>'Compilation'9=>'Single'11=>'Live album'13=>'Remix'14=>'Bootleg'15=>'Interview'16=>'Mixtape'21=>'Unknown');
$ForumCats = array(1=>'Site'5=>'Community'10=>'Help'8=>'Music'20=>'Trash');

$ZIPGroups = array(
    
=> 'MP3 (VBR) - High Quality',
    
=> 'MP3 (VBR) - Low Quality',
    
=> 'MP3 (CBR)',
    
=> 'FLAC - Lossless',
    
=> 'Others'
);

//3D array of attributes, OptionGroup, OptionNumber, Name
$ZIPOptions = array(
    
'00' => array(0,0,'V0'),
    
'01' => array(0,1,'APX'),
    
'02' => array(0,2,'256'),
    
'03' => array(0,3,'V1'),
    
'10' => array(1,0,'224'),
    
'11' => array(1,1,'V2'),
    
'12' => array(1,2,'APS'),
    
'13' => array(1,3,'192'),
    
'20' => array(2,0,'320'),
    
'21' => array(2,1,'256'),
    
'22' => array(2,2,'224'),
    
'23' => array(2,3,'192'),
    
'30' => array(3,0,'FLAC / 24bit / Vinyl'),
    
'31' => array(3,1,'FLAC / 24bit / DVD'),
    
'32' => array(3,2,'FLAC / 24bit / SACD'),
    
'33' => array(3,3,'FLAC / Log (100) / Cue'),
    
'34' => array(3,4,'FLAC / Log (100)'),
    
'35' => array(3,5,'FLAC / Log'),
    
'36' => array(3,6,'FLAC'),
    
'40' => array(4,0,'DTS'),
    
'41' => array(4,1,'Ogg Vorbis'),
    
'42' => array(4,2,'AAC - 320'),
    
'43' => array(4,3,'AAC - 256'),
    
'44' => array(4,4,'AAC - q5.5'),
    
'45' => array(4,5,'AAC - q5'),
    
'46' => array(4,6,'AAC - 192')
);

// Ratio requirements, in descending order
// Columns: Download amount, required ratio, grace period
$RatioRequirements = array(
    array(
50*1024*1024*10240.60date('Y-m-d H:i:s')),
    array(
40*1024*1024*10240.50date('Y-m-d H:i:s')),
    array(
30*1024*1024*10240.40date('Y-m-d H:i:s')),
    array(
20*1024*1024*10240.30date('Y-m-d H:i:s')),
    array(
10*1024*1024*10240.20date('Y-m-d H:i:s')),
    array(
5*1024*1024*1024,  0.15date('Y-m-d H:i:s'time()-(60*60*24*14)))
);

//Captcha fonts should be located in /classes/fonts
$CaptchaFonts=array('ARIBLK.TTF','IMPACT.TTF','TREBUC.TTF','TREBUCBD.TTF','TREBUCBI.TTF','TREBUCIT.TTF','VERDANA.TTF','VERDANAB.TTF','VERDANAI.TTF','VERDANAZ.TTF');
//Captcha images should be located in /captcha
$CaptchaBGs=array('captcha1.png','captcha2.png','captcha3.png','captcha4.png','captcha5.png','captcha6.png','captcha7.png','captcha8.png','captcha9.png');

// Special characters, and what they should be converted to
// Used for torrent searching
$SpecialChars = array(
        
'&' => 'and'
);
?>
__________________




Please Support Majority Report


You can contact me on Skype live:phesadent.elect but please let me know first.


If you are ever need me desperately then please email me at dan.oak44@gmail.com and I will contact u within a week.


Due to free time I'm able to help interested member's with their tracker.

Please Note!
Depending on your requests I will charge you for my assistance for Tracker installs and mods.
All my mods are custom and prices will very depending on the request.
I'm able to install any tracker and mods including themes.

Please PM me

Reply With Quote
Reply

Tags
debian , gazelle , guide , install , updated

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT +2. The time now is 00:15. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.