View Single Post
  #7  
Old 28th February 2023, 13:20
dragon100 dragon100 is offline
Senior Member
 
Join Date: Feb 2023
Posts: 19
Default
Quote:
Originally Posted by crowni View Post
Try in this lines



if ($XBTT_USE)
{
$tseeds="`f`.`seeds`+ifnull(`x`.`seeders`,0)";
$tleechs="`f`.`leechers`+ifnull(`x`.`leechers`,0)" ;
$tcompletes="f.finished+ifnull(`x`.`completed`,0)" ;
$ttables="`{$TABLE_PREFIX}files` `f` LEFT JOIN `xbt_files` `x` ON `x`.`info_hash`=`f`.`bin_hash`";
}
I need to change 0 to 1 in `seeders`,0) leechers`,0) and completed`,0 ?

Bump:

Bump: I changed it like this but unfortunately it still displays only one torrent as before. Even when I added a new torrent it doesn't show it.


if ($XBTT_USE)
{
$tseeds="`f`.`seeds`+ifnull(`x`.`seeders`,1)";
$tleechs="`f`.`leechers`+ifnull(`x`.`leechers`,1)" ;
$tcompletes="f.finished+ifnull(`x`.`completed`,1)" ;
$ttables="`{$TABLE_PREFIX}files` `f` LEFT JOIN `xbt_files` `x` ON `x`.`info_hash`=`f`.`bin_hash`";
}
Reply With Quote