Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   TBDev (http://www.bvlist.com/forumdisplay.php?f=20)
-   -   Problem with status tracker (http://www.bvlist.com/showthread.php?t=1211)

Viruzzz 19th October 2008 14:34

Problem with status tracker
 
i install " Tbdev Official Modded Version By Big Joos (beta) " on server host and i create new torrent i upload on and don't work.
http://img360.imageshack.us/img360/4546/statushn4.jpghttp://img360.imageshack.us/img360/s...pg/1/w1277.png

on torrent site appears to be dead i wait 30min and still no work
what should i do that work?

thx

RikT 19th October 2008 15:53

Quote:

Originally Posted by Viruzzz (Post 5553)
i install " Tbdev Official Modded Version By Big Joos (beta) " on server host and i create new torrent i upload on and don't work.
http://img360.imageshack.us/img360/4546/statushn4.jpghttp://img360.imageshack.us/img360/s...pg/1/w1277.png

on torrent site appears to be dead i wait 30min and still no work
what should i do that work?

thx

Did you fill out the db part in announce.php


PHP Code:

// secrets.php part //
$mysql_host 'localhost';
$mysql_db '';
$mysql_user '';
$mysql_pass '';
// end of secrets.php part // 


Viruzzz 19th October 2008 15:57

yes, i have completed in announce.php , after installation source and don't works

dyzzy 22nd October 2008 13:55

In announce and bittorrent you will have to set the wait time to 0.

wMan 22nd October 2008 14:45

PHP Code:

if ($az["class"] < UC_USER)
        {
        
$gigs $az["uploaded"] / (1024*1024*1024);
        
$elapsed floor((gmtime() - $torrent["ts"]) / 3600);
        
$ratio = (($az["downloaded"] > 0) ? ($az["uploaded"] / $az["downloaded"]) : 1);
        if (
$ratio 0.5 || $gigs 5$wait 1;
        elseif (
$ratio 0.65 || $gigs 6.5$wait 0.75;
        elseif (
$ratio 0.8 || $gigs 8$wait 0.5;
        elseif (
$ratio 0.95 || $gigs 9.5$wait 0.25;
        else 
$wait 0;
        if (
$elapsed $wait)
        
err("Not authorized (" . ($wait $elapsed) . "h) - READ THE FAQ!"); 

to

PHP Code:

if ($az["class"] < UC_USER)
        {
        
$gigs $az["uploaded"] / (1024*1024*1024);
        
$elapsed floor((gmtime() - $torrent["ts"]) / 3600);
        
$ratio = (($az["downloaded"] > 0) ? ($az["uploaded"] / $az["downloaded"]) : 1);
        if (
$ratio 0.5 || $gigs 5$wait 0;
        elseif (
$ratio 0.65 || $gigs 6.5$wait 0;
        elseif (
$ratio 0.8 || $gigs 8$wait 0;
        elseif (
$ratio 0.95 || $gigs 9.5$wait 0;
        else 
$wait 0;
        if (
$elapsed $wait)
        
err("Not authorized (" . ($wait $elapsed) . "h) - READ THE FAQ!"); 



All times are GMT +2. The time now is 17:46.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.