Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > Torrent Strike
Reply
Thread Tools
  #131  
Old 9th April 2009, 14:40
thereal thereal is offline
Senior Member
 
Join Date: Apr 2009
P2P
Posts: 16
Default
Quote:
Originally Posted by raefor View Post
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, ?
Reply With Quote
  #132  
Old 7th May 2009, 18:09
bute bute is offline
Member
 
Join Date: Apr 2009
P2P
Posts: 7
Default
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

Last edited by bute; 7th May 2009 at 18:11. Reason: update information
Reply With Quote
  #133  
Old 11th May 2009, 20:52
razvaneluu razvaneluu is offline
Member
 
Join Date: Feb 2008
Posts: 9
Default
wait time ? How to remove wait time :-?

Click image for larger version

Name:	70861635.png
Views:	112
Size:	142.4 KB
ID:	1322
Reply With Quote
  #134  
Old 11th May 2009, 21:12
Krypto Krypto is offline
Retired from BVList
 
Join Date: Jan 2008
P2P
Posts: 510
Default
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.
Reply With Quote
  #135  
Old 25th June 2009, 18:41
DarkK1d DarkK1d is offline
Senior Member
 
Join Date: Apr 2009
P2P
Posts: 20
Default
Great work creator!
Reply With Quote
  #136  
Old 15th July 2009, 01:36
goood goood is offline
Member
 
Join Date: Apr 2009
Romania
Posts: 7
Default hi
erors
Code:
SQL Error

 Table 'torrentz_mada.phpbb_posts' doesn't exist


????????
Reply With Quote
  #137  
Old 15th July 2009, 02:12
Timisoreanul's Avatar
Timisoreanul Timisoreanul is offline
Senior Member
 
Join Date: Apr 2008
P2P
Posts: 211
Default
Quote:
Originally Posted by goood View Post
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

Last edited by Timisoreanul; 15th July 2009 at 02:15. Reason: some ads
Reply With Quote
  #138  
Old 17th July 2009, 09:56
Night_Owl Night_Owl is offline
Member
 
Join Date: Jun 2009
P2P
Posts: 10
Smile 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
Reply With Quote
  #139  
Old 17th July 2009, 21:13
Krypto Krypto is offline
Retired from BVList
 
Join Date: Jan 2008
P2P
Posts: 510
Default
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
Reply With Quote
  #140  
Old 18th July 2009, 08:54
Night_Owl Night_Owl is offline
Member
 
Join Date: Jun 2009
P2P
Posts: 10
Talking thank you :)
just wanted to say thank you krypto

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

Last edited by Night_Owl; 19th July 2009 at 11:46.
Reply With Quote
Reply

Tags
fullymodded , torrents tracker , torrentstrike , v10


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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Torrentstrike Fullymodded v1.0 Seedbox problem!Help! jernej1 Torrent Strike 4 19th December 2012 22:09
Hit&Run system for Fullymodded adrian21 Torrent Strike 5 1st July 2010 22:29
Help with torrentstrike fullymodded v1.0 RikT Torrent Strike 0 24th September 2008 12:52
TS FullyModded 1.0 Problem NighTing Torrent Strike 4 13th September 2008 16:51
Torrentstrike Fullymodded v1.0 Passkey HELP Robz Torrent Strike 6 11th September 2008 22:49



All times are GMT +2. The time now is 10:30. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.