View Single Post
  #1  
Old 19th February 2010, 00:49
Marco Marco is offline
Senior Member
 
Join Date: Jun 2009
Seychelles
Posts: 327
Default Seed time and speed on upload TSSE 5.6
Hello guys i wish to put on my source an option at upload page on option where the uploaders can complete the time when seeding the torrent and the speed wich can they upload i wish this somewhere after imdb link or the step3 , i tried to make it from tbdev but our upload page it's totally different and i can't figure out... i maked this mod on ts 1.3.9 and ts3.1 but on this i can't help myself :)

but i will not give up:)


ps. if somebody make this, after will be easy to make youtube mod on torrent details , or other fine mods :)

Thank you :)




Later edit...
Seed obligation
Torrents witch was downloaded but not reached the needed ratio.
I found on this source some help but not enough (stats.php)

PHP Code:
<?
/***********************************************/
/*=========[TS Special Edition v.5.6]==========*/
/*=============[Special Thanks To]=============*/
/* DrNet - wWw.SpecialCoders.CoM */
/* Vinson - wWw.Decode4u.CoM */
/* MrDecoder - wWw.Fearless-Releases.CoM */
/* Fynnon - wWw.BvList.CoM */
/***********************************************/
 
require_once 'global.php';
gzip ();
dbconn ();
loggedinorreturn ();
maxsysop ();
 
$lang->load ('stats');
define ('S_VERSION''0.4 ');
include_once 
INC_PATH '/functions_ratio.php';
$yourratio get_user_ratio ($CURUSER['uploaded'], $CURUSER['downloaded']);
$query sql_query ('' 'SELECT COUNT(id) as yourtorrentratio FROM snatched WHERE uploaded / downloaded < 1.0 AND userid = ' $CURUSER['id']);
$yourtorrentratio ts_nf (@mysql_result ($query0'yourtorrentratio'));
$extraqueries " t.owner = ".sqlesc($CURUSER['id']);
echo 
'
<table border="0" cellpadding="5" cellspacing="0" width="100%">
<tr>
<td class="thead" align="center">' 
$lang->stats['head'] . '</td>
</tr>
<tr>
<td>
sprintf ($lang->stats['showstats'], $totaltorrents$totalinternaltorrents$totalextorrents$totaldeadtorrents$totalratiounder1$yourratio$yourtorrentratio$totalseeders$totalleechersts_nf ($totalseeders $totalleechers), $totaluploaded$totaldownloaded$seeders$leechersts_nf ($ts_e_query_r[0] + $ts_e_query_r[1]), $totalcompleted) . '
</td>
</tr>
</table>
'
;
 
?>
here you can see how many torrents you have with low ratio but you can't see wich torrent they are.


really later (2AM:D)
torrent moderation it will be very apreciated !

Last edited by Marco; 19th February 2010 at 01:50.
Reply With Quote