Bravo List
Register
Go Back   > Bravo List > Source Code > Active Trackers > Torrent Trader
Reply
  #1  
Old 6th October 2017, 09:05
yammu yammu is offline
Senior Member
 
Join Date: Sep 2017
Posts: 16
Exclamation Unable to download torrent and seed it on TTCE preview build 2
I have installed public preview 2

http://tellytorrent.com/torrents-details.php?id=5

my site url:: http://tellytorrent.com

this is my config.php
HTML Code:
<?php
$site_config = array();
$site_config['ttversion'] = '2-svn';							//DONT CHANGE THIS!

// Main Site Settings
$site_config['SITENAME'] = 'TTCE';					//Site Name
$site_config['SITEEMAIL'] = 'admin@yourdomain.com';		//Emails will be sent from this address
$site_config['SITEURL'] = 'http://tellytorrent.com';	//Main Site URL
$site_config['default_language'] = "1";						//DEFAULT LANGUAGE ID
$site_config['default_theme'] = "1";						//DEFAULT THEME ID
$site_config['CHARSET'] = "utf-8";						//Site Charset
$site_config['announce_list'] = "$site_config[SITEURL]/announce.php"; //seperate via comma
$site_config['MEMBERSONLY'] = true;							//MAKE MEMBERS SIGNUP
$site_config['MEMBERSONLY_WAIT'] = true;					//ENABLE WAIT TIMES FOR BAD RATIO
$site_config['ALLOWEXTERNAL'] = true;		//Enable Uploading of external tracked torrents
$site_config['UPLOADERSONLY'] = false;		//Limit uploading to uploader group only
$site_config['INVITEONLY'] = false;			//Only allow signups via invite
$site_config['ENABLEINVITES'] = true;		// Enable invites regardless of INVITEONLY setting
$site_config['CONFIRMEMAIL'] = true;		//Enable / Disable Signup confirmation email
$site_config['ACONFIRM'] = false;			//Enable / Disable ADMIN CONFIRM ACCOUNT SIGNUP
$site_config['ANONYMOUSUPLOAD'] = false;		//Enable / Disable anonymous uploads
$site_config['PASSKEYURL'] =  "$site_config[SITEURL]/announce.php?passkey=%s"; // Announce URL to use for passkey
$site_config['UPLOADSCRAPE'] = true; // Scrape external torrents on upload? If using mega-scrape.php you should disable this
$site_config['FORUMS'] = true; // Enable / Disable Forums
$site_config['FORUMS_GUESTREAD'] = false; // Allow / Disallow Guests To Read Forums
$site_config["OLD_CENSOR"] = false; // Use the old change to word censor set to true otherwise use the new one.   

$site_config['maxusers'] = 20000; // Max # of enabled accounts
$site_config['maxusers_invites'] = $site_config['maxusers'] + 5000; // Max # of enabled accounts when inviting

$site_config['currency_symbol'] = '$'; // Currency symbol (HTML allowed)

//AGENT BANS (MUST BE AGENT ID, USE FULL ID FOR SPECIFIC VERSIONS)
$site_config['BANNED_AGENTS'] = "-AZ21, -BC, LIME";

//PATHS, ENSURE THESE ARE CORRECT AND CHMOD TO 777 (ALSO ENSURE TORRENT_DIR/images is CHMOD 777)
$site_config['torrent_dir'] = getcwd().'/uploads';
$site_config['nfo_dir'] = getcwd().'/uploads';
$site_config['blocks_dir'] = getcwd().'/blocks';

// Image upload settings
$site_config['image_max_filesize'] = 524288; // Max uploaded image size in bytes (Default: 512 kB)
$site_config['allowed_image_types'] = array(
					// "mimetype" => ".ext",
					"image/gif" => ".gif",
					"image/pjpeg" => ".jpg",
					"image/jpeg" => ".jpg",
					"image/jpg" => ".jpg",
					"image/png" => ".png"
				);

$site_config['SITE_ONLINE'] = true;									//Turn Site on/off
$site_config['OFFLINEMSG'] = 'Site is down for a little while';	

$site_config['WELCOMEPMON'] = true;			//Auto PM New members
$site_config['WELCOMEPMMSG'] = 'Thank you for registering at our tracker! Please remember to keep your ratio at 1.00 or greater :)';

$site_config['SITENOTICEON'] = true;
$site_config['SITENOTICE'] = 'Welcome To TellyTorrent.com<br /><br />THanks to come aboard <a href="http://tellytorrent.com">forum</a> for support <br /><br />';

$site_config['UPLOADRULES'] = 'You should also include a .nfo file wherever possible<br />Try to make sure your torrents are well-seeded for at least 24 hours<br />Do not re-release material that is still active';

//Setup Site Blocks
$site_config['LEFTNAV'] = true; //Left Column Enable/Disable
$site_config['RIGHTNAV'] = true; // Right Column Enable/Disable
$site_config['MIDDLENAV'] = true; // Middle Column Enable/Disable
$site_config['SHOUTBOX'] = true; //enable/disable shoutbox
$site_config['NEWSON'] = true;
$site_config['DONATEON'] = true;
$site_config['DISCLAIMERON'] = true;

//WAIT TIME VARS
$site_config['WAIT_CLASS'] = '1,2';		//Classes wait time applies to, comma seperated
$site_config['GIGSA'] = '1';			//Minimum gigs
$site_config['RATIOA'] = '0.50';		//Minimum ratio
$site_config['WAITA'] = '24';			//If neither are met, wait time in hours

$site_config['GIGSB'] = '3';			//Minimum gigs
$site_config['RATIOB'] = '0.65';		//Minimum ratio
$site_config['WAITB'] = '12';			//If neither are met, wait time in hours

$site_config['GIGSC'] = '5';			//Minimum gigs
$site_config['RATIOC'] = '0.80';		//Minimum ratio
$site_config['WAITC'] = '6';			//If neither are met, wait time in hours

$site_config['GIGSD'] = '7';			//Minimum gigs
$site_config['RATIOD'] = '0.95';		//Minimum ratio
$site_config['WAITD'] = '2';			//If neither are met, wait time in hours

//CLEANUP AND ANNOUNCE SETTINGS
$site_config['PEERLIMIT'] = '10000';			//LIMIT NUMBER OF PEERS GIVEN IN EACH ANNOUNCE
$site_config['autoclean_interval'] = '600';		//Time between each auto cleanup (Seconds)
$site_config['LOGCLEAN'] = 28 * 86400;			// How often to delete old entries. (Default: 28 days)
$site_config['announce_interval'] = '900';		//Announce Interval (Seconds)
$site_config['signup_timeout'] = '259200';		//Time a user stays as pending before being deleted(Seconds)
$site_config['maxsiteusers'] = '10000';			//Maximum site members
$site_config['max_dead_torrent_time'] = '21600';//Time until torrents that are dead are set invisible (Seconds)

//AUTO RATIO WARNING
$site_config["ratiowarn_enable"] = true; //Enable/Disable auto ratio warning
$site_config["ratiowarn_minratio"] = 0.4; //Min Ratio
$site_config["ratiowarn_mingigs"] = 4;  //Min GB Downloaded
$site_config["ratiowarn_daystowarn"] = 14; //Days to ban

// category = Category Image/Name, name = Torrent Name, dl = Download Link, uploader, comments = # of comments, completed = times completed, size, seeders, leechers, health = seeder/leecher ratio, external, wait = Wait Time (if enabled), rating = Torrent Rating, added = Date Added, nfo = link to nfo (if exists)
$site_config["torrenttable_columns"] = "category,name,dl,uploader,comments,size,seeders,leechers,health,external";
// size, speed, added = Date Added, tracker, completed = times completed
$site_config["torrenttable_expand"] = "";

// Caching settings
$site_config["cache_type"] = "disk"; // disk = Save cache to disk, memcache = Use memcache, apc = Use APC, xcache = Use XCache
$site_config["cache_memcache_host"] = "localhost"; // Host memcache is running on
$site_config["cache_memcache_port"] = 11211; // Port memcache is running on
$site_config['cache_dir'] = getcwd().'/cache'; // Cache dir (only used if type is "disk"). Must be CHMOD 777


// Mail settings
// php to use PHP's built-in mail function. or pear to use http://pear.php.net/Mail
// MUST use pear for SMTP
$site_config["mail_type"] = "php";
$site_config["mail_smtp_host"] = "localhost"; // SMTP server hostname
$site_config["mail_smtp_port"] = "25"; // SMTP server port
$site_config["mail_smtp_ssl"] = false; // true to use SSL
$site_config["mail_smtp_auth"] = false; // true to use auth for SMTP
$site_config["mail_smtp_user"] = ""; // SMTP username
$site_config["mail_smtp_pass"] = ""; // SMTP password


// Password hashing - Once set, cannot be changed without all users needing to reset their passwords
$site_config["passhash_method"] = "sha1"; // Hashing method (sha1, md5 or hmac). Must use what your previous version of TT did or all users will need to reset their passwords
// Only used for hmac.
$site_config["passhash_algorithm"] = "sha1"; // See http://php.net/hash_algos for a list of supported algorithms.
$site_config["passhash_salt"] = ""; // Shouldn't be blank. At least 20 characters of random text.
?>
i can upload torrent but i am admin still i cannot download torrent


$site_config['MEMBERSONLY'] = true; //MAKE MEMBERS SIGNUP

when i make it false i can download torrent from site, but having issues with seeeding it says passkey missing

http://prntscr.com/gtwl8y

Click the image to open in full size.

so how to fix this
Reply With Quote
  #2  
Old 6th October 2017, 09:50
DND DND is offline
VIP
 
Join Date: Dec 2008
Posts: 1,241
Default
doesnt it say missing passkey?
__________________
Need HELP!? I can install:

  1. Server/VPS (Debian,CentOS,Ubuntu,Fedora, FreeBSD) Optimization and ... + Modules
  2. Webserver Windows/Linux (Apache/Lighttpd/Nginx/Mysql/PhpMyAdmin/SSL) Optimization and ... + Modules
  3. Seedbox Windows/Linux (uTorrent,rTorrent,libTorrent,ruTorrent) + Modules
  4. Multiple source code engines
  5. Linux Server Administration (security, cryptography/encryption, proxy, load balancer, custom ddos firewall)
Reply With Quote
  #3  
Old 6th October 2017, 10:01
yammu yammu is offline
Senior Member
 
Join Date: Sep 2017
Posts: 16
Default
Yes it says missing pass key but when in config i make mtrue as admin i am unable to download torrent
Reply With Quote
  #4  
Old 6th October 2017, 11:47
HP HP is offline
Banned
 
Join Date: Jul 2017
Posts: 10
Default
Replace the config file for start only put site links in and replace the ann file then recheck go to tools and do update
Reply With Quote
  #5  
Old 6th October 2017, 16:06
yammu yammu is offline
Senior Member
 
Join Date: Sep 2017
Posts: 16
Default
Quote:
Originally Posted by HP View Post
Replace the config file for start only put site links in and replace the ann file then recheck go to tools and do update
Can u pls elaborate
Reply With Quote
  #6  
Old 6th October 2017, 17:04
l3on l3on is offline
Coder
 
Join Date: Jul 2012
Posts: 154
Default
Erm when you upload an torrent it ask you to download it after you hit upload this will add the tracker with passkey when you open hence why your torrents aren't seeding it not an bug and your configuration fine.
Reply With Quote
  #7  
Old 6th October 2017, 18:01
HP HP is offline
Banned
 
Join Date: Jul 2017
Posts: 10
Default
Replace the config.php it is in backend folder only add your site urls only then replace the at roordir announce.php
Also check your firewell on your pc too so it lets it go to seed
And 130n he as said he can download it when false so thats telling me something is wrong in the code its self

This what you get when someone says thay can code and can not full stop
Reply With Quote
  #8  
Old 6th October 2017, 19:22
yammu yammu is offline
Senior Member
 
Join Date: Sep 2017
Posts: 16
Default
Quote:
Originally Posted by l3on View Post
Erm when you upload an torrent it ask you to download it after you hit upload this will add the tracker with passkey when you open hence why your torrents aren't seeding it not an bug and your configuration fine.
Sir its simple i uploaded a torrent it goes fine when you try to download id gets log out if i am not able to download how will i seed it.. now i have set members only = true now i cant download torrent it just makes me logout

Bump:
Quote:
Originally Posted by HP View Post
Replace the config.php it is in backend folder only add your site urls only then replace the at roordir announce.php
Also check your firewell on your pc too so it lets it go to seed
And 130n he as said he can download it when false so thats telling me something is wrong in the code its self

This what you get when someone says thay can code and can not full stop
What exactly i have to replace tell me in detail i think some issue with code of config.php

Last edited by yammu; 6th October 2017 at 19:44.
Reply With Quote
  #9  
Old 6th October 2017, 20:05
l3on l3on is offline
Coder
 
Join Date: Jul 2012
Posts: 154
Default
Message me tomorrow and I'll see if I can debug this for you seem an problem with your php setup I will test our demo at some point tomorrow to make sure it not an problem with in the script.
Reply With Quote
  #10  
Old 7th October 2017, 19:23
yammu yammu is offline
Senior Member
 
Join Date: Sep 2017
Posts: 16
Default
Quote:
Originally Posted by l3on View Post
Message me tomorrow and I'll see if I can debug this for you seem an problem with your php setup I will test our demo at some point tomorrow to make sure it not an problem with in the script.
Please help me out now what version php u want

Last edited by yammu; 7th October 2017 at 19:35.
Reply With Quote
Reply

Tags
download , seed , torrent , unable

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 01:28. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.