Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Torrent Strike (http://www.bvlist.com/forumdisplay.php?f=21)
-   -   Torrentstrike Fullymodded v1.0 (http://www.bvlist.com/showthread.php?t=117)

thereal 9th April 2009 14:40

Quote:

Originally Posted by raefor (Post 10659)
Have you chomded the torrent folder to 777 ?
or try and re upload the torrent?

yeah i did, different torrents also, but same HTTP error and the passkey
, maybe something in tracker.php that is wrong`?

and I noticed that the site isn't sending any Email Confirmation, ?

bute 7th May 2009 18:09

I am testing this but i found a problem, and maybe me who dont do the right things.

You say in first topic than we can use BBcode in comments, news, upload ... but i try to do some tags for test like and in the descriction of uploading and he dont respect it.

Other think is if this version have the option to create the torrent as freeleech and how we do it.

Anyway you or anybody can help me.
Thanks in advance

razvaneluu 11th May 2009 20:52

1 Attachment(s)
wait time ? How to remove wait time :-?

Attachment 1322

Krypto 11th May 2009 21:12

The wait time is located in 3 files

announce.php
details.php
\include\bittorrent.php

Just change the values to 0

Search for something like

Code:

$wait = 0;
        if ($CURUSER["class"] < UC_VIP)
        {
            $gigs = $CURUSER["uploaded"] / (1024*1024*1024);
            $ratio = (($CURUSER["downloaded"] > 0) ? ($CURUSER["uploaded"] / $CURUSER["downloaded"]) : 0);
            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;
            $elapsed = floor((gmtime() - strtotime($row["added"])) / 3600);
            if ($elapsed < $wait)
                $wait = number_format($wait - $elapsed);

        }

and then change the $wait values to zero in the files that I mentioned.

DarkK1d 25th June 2009 18:41

Great work creator! :muscle::drink:

goood 15th July 2009 01:36

hi
 
erors
Code:

SQL Error

 Table 'torrentz_mada.phpbb_posts' doesn't exist



????????

Timisoreanul 15th July 2009 02:12

Quote:

Originally Posted by goood (Post 13376)
erors
Code:

SQL Error

 Table 'torrentz_mada.phpbb_posts' doesn't exist



????????

You need to install phpbb2 >> read this, first part >>> http://bvlist.com/torrent-strike/181....html#post8219

Night_Owl 17th July 2009 09:56

seed boxes
 
hello all i like the source it looks nice and all im having a small issue though i added the passkey in it works upload and download but were tryin to figure out why its not allowin seed boxes any ideas would be apreisated great work btw on the source :relax:

Krypto 17th July 2009 21:13

replace this in announce


PHP Code:

$rz mysql_query("SELECT id, uploaded, downloaded, class, parked FROM users WHERE ip='$ip' AND enabled = 'yes' ". (ENA_PASSKEY "AND passkey=$passkey ":''). "ORDER BY last_access DESC LIMIT 1") or err("Tracker error 2");
    if (
$MEMBERSONLY && mysql_num_rows($rz) == 0)
        
err("Unrecognized host ($ip). Please go to $BASEURL to sign-up or login.");
    
$az mysql_fetch_assoc($rz);
    
$userid $az["id"]; 

to this works now


PHP Code:

 $rz mysql_query("SELECT id, uploaded, downloaded, class, parked FROM users WHERE enabled = 'yes' ". (ENA_PASSKEY "AND passkey=$passkey ":''). "ORDER BY last_access DESC LIMIT 1") or err("Tracker error 2");
//    if ($MEMBERSONLY && mysql_num_rows($rz) == 0)
//        err("Unrecognized host ($ip). Please go to $BASEURL to sign-up or login.");
    
$az mysql_fetch_assoc($rz);
    
$userid $az["id"]; 

if useint utorrent webui


PHP Code:

elseif (preg_match("/^utorrent webui (.+)$/"$httpagent$matches))
      return 
"utorrent webui/$matches[1]";
   else 

add above in details

Night_Owl 18th July 2009 08:54

thank you :)
 
just wanted to say thank you krypto :drink:

Bump: this is the error they get when tryin to add torrent to a seed box :/ not sure what would cause this Failure: Tracker Error 2 again



fixed now it was in the sql db something to do with the passkey system :) thanks for the help on the other part that helped out alot to with the error


All times are GMT +2. The time now is 23:30.

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