Bravo List
Register
Go Back   > Bravo List > P2P > Forum > Downloads
Reply
Thread Tools
  #111  
Old 1st August 2009, 21:17
sacco sacco is offline
Member
 
Join Date: Dec 2008
Afghanistan
Posts: 11
Default prob
hello my probleme is , i upload a torrent , and redownload .torrent in to the tk !!

passkey is not automaticly write in torrent

and the torrent is not in seed because passkey is not parse in utorrent

Reply With Quote
  #112  
Old 3rd August 2009, 00:50
cigano33 cigano33 is offline
Member
 
Join Date: Apr 2009
P2P
Posts: 6
Default languages
I search the languages french please :bubble:
Reply With Quote
  #113  
Old 5th August 2009, 14:19
bit4you bit4you is offline
Senior Member
 
Join Date: Apr 2008
P2P
Posts: 28
Default
do they also still another Dark have style? Bets Regards
Reply With Quote
The Following User Says Thank You to bit4you For This Useful Post:
blackstormattack (6th August 2009)
  #114  
Old 7th August 2009, 17:30
adso adso is offline
Member
 
Join Date: Aug 2009
P2P
Posts: 6
Default
what files and folder must change permison?
Reply With Quote
  #115  
Old 7th August 2009, 22:26
raefor's Avatar
raefor raefor is offline
Senior Member
 
Join Date: Mar 2008
United States
Posts: 90
Default
Quote:
Originally Posted by adso View Post
what files and folder must change permison?

DID YOU LOOK AT THE THREAD AT ALL YOU WILL FIND WHAT YOUR LOOKING FOR IN THIS THREAD
Reply With Quote
  #116  
Old 7th August 2009, 23:52
vlados25 vlados25 is offline
Member
 
Join Date: Jun 2008
Posts: 3
Default
How to fix that?

Click image for larger version

Name:	8dc718e202da.jpg
Views:	108
Size:	70.0 KB
ID:	1598
Reply With Quote
  #117  
Old 8th August 2009, 09:53
Fynnon's Avatar
Fynnon Fynnon is offline
xxx
 
Join Date: Nov 2007
P2P
Posts: 984
Default
Quote:
Originally Posted by vlados25 View Post
How to fix that?
HTracker looks ok on my 1024x768 resolution...no scrolling

I you want to make the page smaller so you don`t have to scroll then you need to look into modifying the CSS file from your theme folder - theme:css

That theme needs to be made FLUID and maybe even parts of css need to be modified

Fluid means something like:
PHP Code:
widthauto
Reply With Quote
  #118  
Old 12th August 2009, 02:01
cigano33 cigano33 is offline
Member
 
Join Date: Apr 2009
P2P
Posts: 6
Default mp
salvation, my members cannot send a comment or a pm they get error

Code:
You have reached your Comment limit. Please wait 10 minutes before retrying.
Reply With Quote
  #119  
Old 12th August 2009, 15:53
raefor's Avatar
raefor raefor is offline
Senior Member
 
Join Date: Mar 2008
United States
Posts: 90
Default
Quote:
Originally Posted by vlados25 View Post
How to fix that?

you can try this


torrents.php

PHP Code:
<?
//
//  TorrentTrader v2.x
//    This file was last updated: 26/June/2007
//    
//    http://www.torrenttrader.org
//
//
require_once("backend/functions.php");
dbconn();
checker();
 
$site_config["LEFTNAV"] = false;
 
$site_config["RIGHTNAV"] = false;
//check permissions
if ($site_config["MEMBERSONLY"]){
    
loggedinonly();
      
parked();
      
age(); 

    if(
$CURUSER["view_torrents"]=="no")
        
show_error_msg("Error","You do not have permission to view torrents",1);

 
//get http vars
$addparam ""
$wherea = array(); 
    
$r mysql_query("SELECT id, name, parent_cat FROM categories ORDER BY parent_cat ASC, sort_index ASC") or die(mysql_error());
        while (
$a mysql_fetch_assoc($r))
if (
strpos($CURUSER['notifs'], "[$a[id]]") !== false) {
    
$wherea[] = "category != '$a[id]'";
}
$wherea[] = "visible = 'yes'";
$thisurl "torrents.php?";
 
if (
$_GET["cat"]) {  
    
$wherea[] = "category = " sqlesc($_GET["cat"]);
    
$addparam .= "cat=" urlencode($_GET["cat"]) . "&amp;";
    
$thisurl .= "cat=".urlencode($_GET["cat"])."&"
}

if (
$_GET["parent_cat"]) { 
    
$addparam .= "parent_cat=" urlencode($_GET["parent_cat"]) . "&amp;";
    
$thisurl .= "parent_cat=".urlencode($_GET["parent_cat"])."&";
    
$wherea[] = "categories.parent_cat=".sqlesc($_GET["parent_cat"]);
}

$parent_cat unesc($_GET["parent_cat"]);
$category = (int)$_GET["cat"];

$where implode(" AND "$wherea);
$wherecatina = array();
$wherecatin "";
$res mysql_query("SELECT id FROM categories");
while(
$row mysql_fetch_assoc($res)){
    if (
$_GET["c$row[id]"]) {
        
$wherecatina[] = $row[id];
        
$addparam .= "c$row[id]=1&amp;";
        
$thisurl .= "c$row[id]=1&amp;";
    }
    
$wherecatin implode(", "$wherecatina);
}

if (
$wherecatin)
    
$where .= ($where " AND " "") . "category IN(" $wherecatin ")";

if (
$where != "")
    
$where "WHERE $where";

if (
$_GET["sort"] || $_GET["order"]) {

    switch (
$_GET["sort"]) {
        case 
'name'$sort "torrents.name"$addparam .= "sort=name&"; break;
        case 
'times_completed':    $sort "torrents.times_completed"$addparam .= "sort=times_completed&"; break;
        case 
'seeders':    $sort "torrents.seeders"$addparam .= "sort=seeders&"; break;
        case 
'leechers'$sort "torrents.leechers"$addparam .= "sort=leechers&"; break;
        case 
'comments'$sort "torrents.comments"$addparam .= "sort=comments&"; break;
        case 
'size'$sort "torrents.size"$addparam .= "sort=size&"; break;
        default: 
$sort "torrents.id";
    }

    if (
$_GET["order"] == "asc" || ($_GET["sort"] != "id" && !$_GET["order"])) {
        
$sort .= " ASC";
        
$addparam .= "order=asc&";
    } else {
        
$sort .= " DESC";
        
$addparam .= "order=desc&";
    }

    
$orderby "ORDER BY $sort";

    }else{
        
$orderby "ORDER BY sticky ASC, torrents.id DESC";
        
$_GET["sort"] = "id";
        
$_GET["order"] = "desc";
    }

//Get Total For Pager
$res mysql_query("SELECT COUNT(*) FROM torrents LEFT JOIN categories ON category = categories.id $where $parent_check") or die(mysql_error());

$row mysql_fetch_array($res);
$count $row[0];

//get sql info
if ($count) {
    list(
$pagertop$pagerbottom$limit) = pager(20$count"torrents.php?" $addparam);
    
$query "SELECT torrents.id, torrents.anon, torrents.announce, torrents.sticky, torrents.category, torrents.leechers, torrents.nfo, torrents.seeders, torrents.name, vip, req, nuked, torrents.times_completed, torrents.size, torrents.added, torrents.comments, torrents.numfiles, torrents.filename, torrents.owner, torrents.external, torrents.freeleech, categories.name AS cat_name, categories.parent_cat AS cat_parent, categories.image AS cat_pic, users.username, users.privacy, IF(torrents.numratings < 2, NULL, ROUND(torrents.ratingsum / torrents.numratings, 1)) AS rating FROM torrents LEFT JOIN categories ON category = categories.id LEFT JOIN users ON torrents.owner = users.id $where $parent_check $orderby $limit";
    
$res mysql_query($query) or die(mysql_error());
}else{
    unset(
$res);
}


stdhead("" BROWSE_TORRENTS "");
begin_frame("" BROWSE_TORRENTS "");
$title "Categories";
$hide "<a href=\"javascript: klappe_block('b".$title."')\"><img border=\"0\" src=\"".$site_config["SITEURL"]."/images/plus.gif\" id=\"picb".$title."\" alt=\"Show/Hide\">"
echo 
"<CENTER><B>".$title."&nbsp;&nbsp;".$hide."</B> "
echo 
"<BR><BR><div id=\"kb".$title."\" style=\"display: none;\">\n";
echo
"<table class=tablebg width=98% align=center><tr><td><div class=\"rowtabhead\" ><a  href=torrents.php ><B>Show All</B></a></div>";
echo
"<br><div align=center>";
$catsquery mysql_query("SELECT distinct parent_cat FROM categories ORDER BY parent_cat")or die(mysql_error()); 
while(
$catsrow MYSQL_FETCH_ARRAY($catsquery)){
        echo 
" - <a href=torrents.php?parent_cat=".urlencode($catsrow['parent_cat'])."><font class=cat>$catsrow[parent_cat]</font></a>"
}
echo
"</div>";
?>
<form method="get" action="torrents.php">
<table class=tablebg align="center" style="padding:10px;">
<tr align='right'>
<?
$i 
0;
$cats mysql_query("SELECT * FROM categories ORDER BY parent_cat, name");
while (
$cat mysql_fetch_assoc($cats)) {
    
$catsperrow 5
    print((
$i && $i $catsperrow == 0) ? "</tr><tr align='right'>" "");
    print(
"<td class=row1 style=\"padding-bottom: 2px;padding-left: 2px;\"><a  href=torrents.php?cat={$cat["id"]}><font class=cat>".htmlspecialchars($cat["parent_cat"])."</font> - <font class=subcat>" htmlspecialchars($cat["name"]) . "</font></a><input name=c{$cat["id"]} type=\"checkbox\" " . (in_array($cat["id"], $wherecatina) ? "checked " "") . "value=1></td>\n");
    
$i++;
}
echo 
"</tr></table>";                                                                            
echo 
"<tr align='center'><td class=rowend colspan=$catsperrow align='center'><input type='submit' value='Go'></td></tr></div>";
echo 
"</tr></table></form>";
//if we are browsing, display all subcats that are in same cat
if ($parent_cat){
    
$thisurl .= "parent_cat=".urlencode($parent_cat)."&";
    echo 
"<BR><BR><b>You are in:</b> <a href=torrents.php?parent_cat=".urlencode($parent_cat).">".htmlspecialchars($parent_cat)."</a><BR><B>Sub Categories:</B> ";
    
$subcatsquery mysql_query("SELECT id, name, parent_cat FROM categories WHERE parent_cat=".sqlesc($parent_cat)." ORDER BY name")or die(mysql_error()); 
    while(
$subcatsrow MYSQL_FETCH_ARRAY($subcatsquery)){
        
$name $subcatsrow['name'];
        echo 
" - <a href=torrents.php?cat=$subcatsrow[id]>$name</a>"
    } 
}    

if (
is_valid_id($_GET["page"]))
    
$thisurl .= "page=$_GET[page]&";

echo 
"</CENTER><BR>";//some spacing
 
// New code (TorrentialStorm)
    
echo "<div align=right><form id='sort'>Sort By: <select name='sort' onChange='window.location=\"{$thisurl}sort=\"+this.options[this.selectedIndex].value+\"&order=\"+document.forms[\"sort\"].order.options[document.forms[\"sort\"].order.selectedIndex].value' style=\"font-family: Verdana; font-size: 8pt; border: 1px solid #000000; background-color: #CCCCCC\" size=\"1\">";
    echo 
"<option value='id'" . ($_GET["sort"] == "id" "selected" "") . ">Added</option>";
    echo 
"<option value='name'" . ($_GET["sort"] == "name" "selected" "") . ">Name</option>";
    echo 
"<option value='comments'" . ($_GET["sort"] == "comments" "selected" "") . ">Comments</option>";
    echo 
"<option value='size'" . ($_GET["sort"] == "size" "selected" "") . ">Size</option>";
    echo 
"<option value='times_completed'" . ($_GET["sort"] == "times_completed" "selected" "") . ">Completed</option>";
    echo 
"<option value='seeders'" . ($_GET["sort"] == "seeders" "selected" "") . ">Seeders</option>";
    echo 
"<option value='leechers'" . ($_GET["sort"] == "leechers" "selected" "") . ">Leechers</option>";
    echo 
"</select>&nbsp;";
    echo 
"<select name='order' onChange='window.location=\"{$thisurl}order=\"+this.options[this.selectedIndex].value+\"&sort=\"+document.forms[\"sort\"].sort.options[document.forms[\"sort\"].sort.selectedIndex].value' style=\"font-family: Verdana; font-size: 8pt; border: 1px solid #000000; background-color: #CCCCCC\" size=\"1\">";
    echo 
"<option selected value='asc'" . ($_GET["order"] == "asc" "selected" "") . ">Ascend</option>";
    echo 
"<option value='desc'" . ($_GET["order"] == "desc" "selected" "") . ">Descend</option>";
    echo 
"</select>";
    echo 
"</form></div>";

// End

if ($count) {
    print(
$pagertop);
    
torrenttable($res);
    print(
$pagerbottom);
}else {
    
show_error_msg("" NOTHING_FOUND """" NO_UPLOADS "",0);
}

if (
$CURUSER)
    
mysql_query("UPDATE users SET last_browse=".gmtime()." WHERE id=$CURUSER[id]");

end_frame();
stdfoot();
?>
Quote:
Originally Posted by cigano33 View Post
salvation, my members cannot send a comment or a pm they get error

Code:
You have reached your Comment limit. Please wait 10 minutes before retrying.
is that in shoutbox or comments
Reply With Quote
  #120  
Old 12th August 2009, 16:06
cigano33 cigano33 is offline
Member
 
Join Date: Apr 2009
P2P
Posts: 6
Default re
comments
Reply With Quote
Reply

Tags
htracker , v2


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



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