Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Downloads (http://www.bvlist.com/forumdisplay.php?f=16)
-   -   TBDevRU 3.2 (http://www.bvlist.com/showthread.php?t=3148)

ajax 28th April 2011 04:49

Hey, as You may know I run traker with this source one year, but now i try to put it on other server.. and getting white page all the time.. what i miss?
Long time not touched it.. :wallbash:
Thank's.

xrol 28th April 2011 11:46

help
 
how can i fix this error

http://img691.imageshack.us/img691/3792/errornc.jpg

BEST 18th December 2011 13:29

hello how are the log data is not given the vote


User name: BVLIST
Password: 123456

Solid26 18th December 2011 19:48

TBDEV RU 3.2 LOGIN FIX
 
GO IN PHP ADMIN / USER / AND CHANGE OLD EMAIL TO YOURS,,, GO TO SITE AND FIND

Don't have an account? Sign up right now!

Forget password? Click here to resend!



AND RESEND NEW PASSWORD

THATS ALL :friend:

HOPE I HELP

Bump: Fellas where i find themes for this source? thaks for search :drink:

DAKz 1st January 2012 15:47

Login in issues SOLVED
 
There was an earlier post to solve the login problems, worked for me, simply go to the db delete the user, the only one there is admin, not sure where the BVLIST thing came from but its not in the db anywhere. And unless you graduated Magna n00b er if its not in the db its not going to happen no matter what files you edit!!
Simply delete the user out of the db, then when you register a new account (which will work now) it will be a owner, I did this and went to the staff php and there I was a owner of a messed up tbdev release.
Simply put you have to read these threads, so many with the same problem and the answer was given early on. You can't simply read the first post and assume that its the holy grail!!

fileclub 10th February 2012 11:30

time
 
i have a problem whits a time in chat... i shov wrong time were can i change this.. [sorry for bad eng]

BitFarmer 10th February 2012 12:14

lol first post is suppose to be in introduce you're self not a help request
maybe make a screen ore tell more about why it's wrong in you're opinion

x360zone 10th February 2012 13:46

chat time
 
check your servers time if its dedi or vps

BitFarmer 10th February 2012 14:05

100% it's shared ... he's from latvia and i know latvians :D

fileclub 11th February 2012 14:33

time
 
This is may problem
http://desmond.imageshack.us/Himg694...png&res=medium

Phogo 11th February 2012 18:58

Quote:

Originally Posted by fileclub (Post 33041)


Change your server time

shasta 1st March 2012 23:00

Quote:

Originally Posted by kp380lv (Post 14055)
There is already an admin account so you can login with:

User name: BVLIST
Password: 123456

the admin and pass dosnt work :wallbash:

scream21m 30th August 2012 21:33

Please help
 
This is my problem

Tracker sending invalid data:
Deprecated: Function ereg() is deprecated in /var/www/announce.php on line 94
d8:intervali1800e5:peerslee.

PHP Code:

<?php

ob_start
("ob_gzhandler");

require_once(
"include/bittorrent.php"); 
require_once(
"include/benc.php");

function 
err($msg)
{
    
benc_resp(array("failure reason" => array(type => "string"value => $msg)));
    exit();
}

function 
benc_resp($d)
{
    
benc_resp_raw(benc(array(type => "dictionary"value => $d)));
}

function 
benc_resp_raw($x)
{
    
header("Content-Type: text/plain");
    
header("Pragma: no-cache");
    print(
$x);
}

foreach (array(
"passkey","info_hash","peer_id","ip","event") as $x)

$GLOBALS[$x] = "" $_GET[$x];





foreach (array(
"port","downloaded","uploaded","left") as $x)

$GLOBALS[$x] = $_GET[$x];



if (
strpos($passkey"?")) {

  
$tmp substr($passkeystrpos($passkey"?"));

$passkey substr($passkey0strpos($passkey"?"));

$tmpname substr($tmp1strpos($tmp"=")-1);

$tmpvalue substr($tmpstrpos($tmp"=")+1);

$GLOBALS[$tmpname] = $tmpvalue;

}



foreach (array(
"passkey","info_hash","peer_id","port","downloaded","uploaded","left") as $x)

if (!isset(
$x)) err("Missing key: $x");



foreach (array(
"info_hash","peer_id") as $x)

if (
strlen($GLOBALS[$x]) != 20err("Invalid $x (" strlen($GLOBALS[$x]) . " - " urlencode($GLOBALS[$x]) . ")");



if (
strlen($passkey) != 32err("Invalid passkey (" strlen($passkey) . " - $passkey)");



//if (empty($ip) || !preg_match('/^(d{1,3}.){3}d{1,3}$/s', $ip))

$ip getip();

$port $port;
$downloaded $downloaded;
$uploaded $uploaded;
$left $left;

$rsize 50;

foreach(array(
"num want""numwant""num_want") as $k)
{
    if (isset(
$_GET[$k]))
    {
        
$rsize $_GET[$k];
        break;
    }
}

$agent $_SERVER["HTTP_USER_AGENT"];

if (
ereg("^Mozilla\\/"$agent) || ereg("^Opera\\/"$agent) || ereg("^Links "$agent) || ereg("^Lynx\\/"$agent))
    
err("torrent not registered with this tracker");

if (!
$port || $port 0xffff)
    
err("invalid port");

if (!isset(
$event))
    
$event "";

$seeder = ($left == 0) ? "yes" "no";

dbconn(false);

$valid = @mysql_fetch_row(@mysql_query("SELECT COUNT(*) FROM users WHERE passkey=" sqlesc($passkey)));

if (
$valid[0] != 1err("Invalid passkey! Re-download the .torrent from $BASEURL");

$res mysql_query("SELECT id, banned, seeders + leechers AS numpeers, UNIX_TIMESTAMP(added) AS ts FROM torrents WHERE " hash_where("info_hash"$info_hash));

$torrent mysql_fetch_assoc($res);
if (!
$torrent)
    
err("torrent not registered with this tracker");

$torrentid $torrent["id"];

$fields "seeder, peer_id, ip, port, uploaded, downloaded, userid";

$numpeers $torrent["numpeers"];
$limit "";
if (
$numpeers $rsize)
    
$limit "ORDER BY RAND() LIMIT $rsize";
$res mysql_query("SELECT $fields FROM peers WHERE torrent = $torrentid AND connectable = 'yes' $limit");

$resp "d" benc_str("interval") . "i" $announce_interval "e" benc_str("peers") . "l";
unset(
$self);
while (
$row mysql_fetch_assoc($res))
{
    
$row["peer_id"] = hash_pad($row["peer_id"]);

    if (
$row["peer_id"] === $peer_id)
    {
        
$userid $row["userid"];
        
$self $row;
        continue;
    }

    
$resp .= "d" .
        
benc_str("ip") . benc_str($row["ip"]) .
        
benc_str("peer id") . benc_str($row["peer_id"]) .
        
benc_str("port") . "i" $row["port"] . "e" .
        
"e";
}

$resp .= "ee";

$selfwhere "torrent = $torrentid AND " hash_where("peer_id"$peer_id);

if (!isset(
$self))
{
    
$res mysql_query("SELECT $fields FROM peers WHERE $selfwhere");
    
$row mysql_fetch_assoc($res);
    if (
$row)
    {
        
$userid $row["userid"];
        
$self $row;
    }
}

//// Up/down stats ////////////////////////////////////////////////////////////



if (!isset($self))

{

$valid = @mysql_fetch_row(@mysql_query("SELECT COUNT(*) FROM peers WHERE torrent=$torrentid AND passkey=" sqlesc($passkey)));

if (
$valid[0] >= && $seeder == 'no'err("Connection limit exceeded! You may only leech from one location at a time.");

if (
$valid[0] >= && $seeder == 'yes'err("Connection limit exceeded!");



$rz mysql_query("SELECT id, uploaded, downloaded, class FROM users WHERE passkey=".sqlesc($passkey)." AND enabled = 'yes' ORDER BY last_access DESC LIMIT 1") or err("Tracker error 2");

if (
$MEMBERSONLY && mysql_num_rows($rz) == 0)

err("Unknown passkey. Please redownload the torrent from $BASEURL.");
    
$az mysql_fetch_assoc($rz);
    
$userid $az["id"];

    if (
$az["class"] < UC_VIP)
    {
        
$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 48;
        elseif (
$ratio 0.65 || $gigs 6.5$wait 24;
        elseif (
$ratio 0.8 || $gigs 8$wait 12;
        elseif (
$ratio 0.95 || $gigs 9.5$wait 6;
        else 
$wait 0;
        if (
$elapsed $wait)
                
err("Not authorized (" . ($wait $elapsed) . "h) - READ THE FAQ!");
    }
}
else
{
    
$upthis max(0$uploaded $self["uploaded"]);
    
$downthis max(0$downloaded $self["downloaded"]);

    if (
$upthis || $downthis 0)
        
mysql_query("UPDATE users SET uploaded = uploaded + $upthis, downloaded = downloaded + $downthis WHERE id=$userid") or err("Tracker error 3");
}

///////////////////////////////////////////////////////////////////////////////

function portblacklisted($port)
{
    
// direct connect
    
if ($port >= 411 && $port <= 413) return true;

    
// bittorrent
    
if ($port >= 6881 && $port <= 6889) return true;

    
// kazaa
    
if ($port == 1214) return true;

    
// gnutella
    
if ($port >= 6346 && $port <= 6347) return true;

    
// emule
    
if ($port == 4662) return true;

    
// winmx
    
if ($port == 6699) return true;

    return 
false;
}

$updateset = array();

if (
$event == "stopped")
{
    if (isset(
$self))
    {
        
mysql_query("DELETE FROM peers WHERE $selfwhere");
        if (
mysql_affected_rows())
        {
            if (
$self["seeder"] == "yes")
                
$updateset[] = "seeders = seeders - 1";
            else
                
$updateset[] = "leechers = leechers - 1";
        }
    }
}
else
{
    if (
$event == "completed")
        
$updateset[] = "times_completed = times_completed + 1";

    if (isset(
$self))
    {
        
mysql_query("UPDATE peers SET uploaded = $uploaded, downloaded = $downloaded, to_go = $left, last_action = NOW(), seeder = '$seeder'"
            
. ($seeder == "yes" && $self["seeder"] != $seeder ", finishedat = " time() : "") . " WHERE $selfwhere");
        if (
mysql_affected_rows() && $self["seeder"] != $seeder)
        {
            if (
$seeder == "yes")
            {
                
$updateset[] = "seeders = seeders + 1";
                
$updateset[] = "leechers = leechers - 1";
            }
            else
            {
                
$updateset[] = "seeders = seeders - 1";
                
$updateset[] = "leechers = leechers + 1";
            }
        }
    }
    else
    {
        if (
portblacklisted($port))
            
err("Port $port is blacklisted.");
        else
        {
            
$sockres = @fsockopen($ip$port$errno$errstr5);
            if (!
$sockres)
                
$connectable "no";
            else
            {
                
$connectable "yes";
                @
fclose($sockres);
            }
        }

        
$ret mysql_query("INSERT INTO peers (connectable, torrent, peer_id, ip, port, uploaded, downloaded, to_go, started, last_action, seeder, userid, agent, uploadoffset, downloadoffset, passkey) VALUES ('$connectable', $torrentid, " sqlesc($peer_id) . ", " sqlesc($ip) . ", $port$uploaded$downloaded$left, NOW(), NOW(), '$seeder', $userid, " sqlesc($agent) . ", $uploaded$downloaded, " sqlesc($passkey) . ")");
        if (
$ret)
        {
            if (
$seeder == "yes")
                
$updateset[] = "seeders = seeders + 1";
            else
                
$updateset[] = "leechers = leechers + 1";
        }
    }
}

if (
$seeder == "yes")
{
    if (
$torrent["banned"] != "yes")
        
$updateset[] = "visible = 'yes'";
    
$updateset[] = "last_action = NOW()";
}

if (
count($updateset))
    
mysql_query("UPDATE torrents SET " join(","$updateset) . " WHERE id = $torrentid");

benc_resp_raw($resp);

?>


fmsheselina 2nd September 2012 20:05

thanks:drink:

Bump: XXX delete php ?

kimikelku 15th September 2012 15:21

I always get this error when uploading a torrent
Code:

Warning:  move_uploaded_file(tbru/torrents/14.torrent) [function.move-uploaded-file]: failed to open stream: No such file or directory in /home/dimensio/public_html/tbru/takeupload.php on line 230

Warning:  move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/php6A6IZP' to 'tbru/torrents/14.torrent' in /home/dimensio/public_html/tbru/takeupload.php on line 230

Warning:  Cannot modify header information - headers already sent  by (output started at  /home/dimensio/public_html/tbru/takeupload.php:230) in /home/dimensio/public_html/tbru/takeupload.php on line 326


mustafa 2nd October 2012 01:05

Quote:

Originally Posted by shasta (Post 33439)
the admin and pass dosnt work :wallbash:

1. login with phpmyadmin
2. browse user table
3. click edit user admin
4. change e-mail adress for admin
5. go to recoveri passwaord
6. put the e-mail adress
7. go to your email services
8. click the link from e-mail
9. check your mail for new password
10. login admin and new password.

is work for me.

I get this error when i what to add [ Film / Video ] torent:
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting T_STRING in /home/xxx/public_html/English-imdb.php on line 121

help plz
thk

Marco 6th October 2012 16:58

hello guys i read all pages

but for me it is impossible to login to the index.php admin 123456 or login with any new user....

password is never is the right one....

if i wish to confirm the user from mail confirm.php sorry pal nothing found :(

i confirm from mysql and try to log in ...but not let me in .....username/password incorect :(((((

zyberwax 21st October 2012 14:42

Erro code
 
What is this ??
Are there nothing of this trackere so work ??:clown:

Deprecated
: Function ereg() is deprecated in /home/worldtra/public_html/include/bittorrent.php on line 301

Deprecated: Function ereg() is deprecated in /home/worldtra/public_html/include/bittorrent.php on line 309

Deprecated: Function ereg() is deprecated in /home/worldtra/public_html/include/bittorrent.php on line 313

Deprecated: Function ereg() is deprecated in /home/worldtra/public_html/include/bittorrent.php on line 319

Warning: Cannot modify header information - headers already sent by (output started at /home/worldtra/public_html/include/bittorrent.php:301) in /home/worldtra/public_html/include/bittorrent.php on line 399

buves18 15th June 2013 18:54

ERROR !!!
 
HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request.

why ???
i edited config.php and secrets.php

DND 15th June 2013 19:34

read the error logs. don't ask why !
LOL

staff 28th June 2013 14:13

I typed language, I do not.
 
in forums.php not found I want to type my language. plz help me
http://image.ohozaa.com/i/0a0/9aIs44.jpg

firefly007 28th June 2013 17:01

Quote:

Originally Posted by staff (Post 41269)
in forums.php not found I want to type my language. plz help me
http://image.ohozaa.com/i/0a0/9aIs44.jpg



in forums.php

staff 28th June 2013 19:38

Quote:

Originally Posted by firefly007 (Post 41272)
in forums.php

Charset = utf-8 word where.Find me.Rows to change.

firefly007 28th June 2013 20:09

Quote:

Originally Posted by staff (Post 41279)
Charset = utf-8 word where.Find me.Rows to change.

????????

staff 29th June 2013 15:51

Quote:

Originally Posted by firefly007 (Post 41272)
in forums.php

Can not find it.>> in forums.php

sammygo 9th November 2016 11:43

That youtube movie project it's awesome , i hope you will post that source , everybody needs something from it . :drink:
That statusbar is epic , everything is well done

obey 14th November 2016 17:34

Help
 
Someone needs help on this secure

Snatchlist MOD

Tested by me

This mod fits well in this version

link: http://www.bvlist.com/showthread.php?t=247


All times are GMT +2. The time now is 07:55.

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