Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Downloads (http://www.bvlist.com/forumdisplay.php?f=16)
-   -   FTS v1.0.2 (http://www.bvlist.com/showthread.php?t=119)

fr33bh 12th January 2008 11:17

FTS v1.0.2
 
Free Torrent Source 1.0.2 Final !
-updated 09 June 2008-

Download

~~~~~~~~~~~~~~
FEATURES
~~~~~~~~~~~~~~
+ Post image link with torrent(and automaticly insert it in description)
+ BugFixes(many)
~ Cache system in index page
~ Many code changes!
+ Better collapse system(improved image)
~ Jquery 1.2.3 version
~ Avatar system
~ Bitbucket system
- Cache system from IMDB mod(useless)
- BlueBlog template (everybody should make their own skin, or use the old one! BE CREATIVE!)
+ Print topic mod
+ etc
It has a lot of modifications,too many to be listed.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

attention

Attention

Latest release of this source is FTS 1.1
In the future you can check for new versions of this source here http://sourceforge.net/projects/freetosu






Fynnon 12th January 2008 12:37

Re: Fts 1.0.0
 
Welcome, there has been some time....thank you for your tracker source, will test !!!

fr33bh 12th January 2008 13:06

Re: Fts 1.0.0
 
thank you, i`ve been warned by xam but i got back

Fynnon 12th January 2008 13:22

Re: Fts 1.0.0
 
Quote:

Originally Posted by fr33bh
thank you, i`ve been warned by xam but i got back

Warned?
I`ve installed this source (see first post) but gave me an error at 5th step when it tried to connect to the database and said the "bans" table don`t exist...

Plus at the bottom of every page I get

Code:

SELECT * FROM usergroups WHERE id = 7
SELECT id,username FROM users WHERE status='confirmed' ORDER BY id DESC LIMIT 1
SELECT * FROM avps WHERE arg='last24'
SELECT * FROM users WHERE last_access >= '2008-01-11 11:16:33' ORDER BY username
SELECT value_u FROM avps WHERE arg='seeders'
SELECT value_u FROM avps WHERE arg='leechers'
SELECT SUM(downloaded) AS totaldl, SUM(uploaded) AS totalul FROM users
SELECT id, username, class FROM users WHERE last_access >= '2008-01-12 11:13:33' ORDER BY username
SELECT COUNT(*) FROM users WHERE status = 'pending' AND invited_by = 1
SELECT * FROM news WHERE ADDDATE(added, INTERVAL 45 DAY) > NOW() ORDER BY added DESC LIMIT 10
SELECT posts.id AS pid, posts.topicid, posts.userid AS userpost, posts.added, topics.id AS tid, topics.subject, topics.forumid, topics.lastpost, topics.views, forums.name, forums.minclassread, forums.topiccount, users.username FROM posts, topics, forums, users, users AS topicposter WHERE posts.topicid = topics.id AND topics.forumid = forums.id AND posts.userid = users.id AND topics.userid = topicposter.id AND minclassread <=7 ORDER BY posts.added DESC LIMIT 5
SELECT * FROM torrents where visible='yes' ORDER BY added DESC LIMIT 5
SELECT * FROM polls ORDER BY added DESC LIMIT 1

:coffee:

fr33bh 12th January 2008 14:11

Re: Fts 1.0.0
 
debug mode is activated (see: settings>tweak>debug must be off)

when did you get that install error, when you tested the email?

Fynnon 14th January 2008 00:42

Re: Fts 1.0.0
 
Quote:

Originally Posted by fr33bh
este activat debug mode (vezi settings>tweak>debug sa fie off)

si la install cand ti-a dat eroarea? cand ai dat la test email?

done, works great ! :)
Nice work !

SuspekT 15th January 2008 10:01

Re: Fts 1.0.0
 
isn`t this identic with 1.3.9 By xam??

wait answer! :D

Aldomoro 15th January 2008 13:57

Re: Fts 1.0.0
 
it has small modifications :D

SuspekT 16th January 2008 09:11

Re: Fts 1.0.0
 
OK :)

wMan 5th February 2008 20:14

Re: Fts v1.0.0
 
why is my name there with the pass :roll: :o

aGp 6th February 2008 00:33

Re: Fts v1.0.0
 
works fine .. installed :D .. i will use this one! :P

Fynnon 6th February 2008 01:03

Re: Fts v1.0.0
 
Quote:

Originally Posted by clocktower
why is my name there with the pass :roll: :o

I know what you are saying :-)
That is because you have cookies enabled and your brwser automaticaly signs you in so only can see that you are logged in but nobody else...

aGp 7th February 2008 14:39

Re: Fts v1.0.0
 
on utorrent 1.7.7 . tracker status offline ( timed out ) .. http://1st-tracker.eu

Fynnon 1st March 2008 17:16

Re: FTS v1.0.1
 
There`s a new BETA version of this great source by fr33bh : FTS 1.0.1
http://sourceforge.net/project/showfile ... _id=206447

djallexy 6th April 2008 16:43

Re: FTS v1.0.1
 
Code:

Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}'
in /home/weebyinf/public_html/include/handle.php on line 7

Why this eror ? :sos: :sad:

BoLaMN 6th April 2008 17:45

Re: FTS v1.0.1
 
Try this, i dont know if it will work im guessing ur not using php5 ;)

Code:


########################################################
#                        FTS Handle Functions                                          #
#                        Do Not Edit                                                                  #
########################################################
class HANDLE {
        function Freq($where,$file,$type = '_class.php',$ui = 0) {
                if(is_array($where))
                die('HANDLE strict rules: \$where parameter must not be an array');
                $where = explode ( '.' , $where );
                if(!is_array($where))
                die('HANDLE error: cannot make an array');
                global $rootpath;
                $pth = '';
                foreach($where as $where) {
                        $pth .= $where.'/';
                }
                include $rootpath.'include/'.$pth.$file.$type;
        }
       
        function dep($file) {
                include $file;
        }
       
        function hiderr() {
                return error_reporting(0);
        }
       
        function showerr() {
                return error_reporting(1);
        }
       
        function checkins() {
        global $rootpath;
        if(file_exists($rootpath.'install') && !file_exists($rootpath.'install/install.lock'))
        error(8,'
If you haven\'t installed FTS yet, click here to install it.
If you already installed FTS and you think this is an error, make an file named install.lock in install folder(or simply delete the install folder)');
}
       
        function strip_magic_quotes($arr)
{
foreach ($arr as $k => $v)
{
 if (is_array($v))
  { $arr[$k] = HANDLE::strip_magic_quotes($v); }
 else
  { $arr[$k] = stripslashes($v); }
}

return $arr;
}
       
        function htmlspecialchars_uni($text, $entities = true)
{
        return str_replace(
                // replace special html characters
                array('<', '>', '"'),
                array('<', '>', '"'),
                preg_replace(
                        // translates all non-unicode entities
                        '/&(?!' . ($entities ? '#[0-9]+' : '(#[0-9]+|[a-z]+)') . ';)/si',
                        '&',
                        $text
                )
        );
}
       
        function cur_user_check () {
        global $CURUSER;
        if ($CURUSER)
        stderr ("Permission denied!", "You are already logged in!");
}
}
global $rootpath;
include $rootpath.'include/factory.php';
class UserHandle {
function KPS($type = "+", $point = "1.0", $id = "") {
        global $bonus,$_db;
        if ($bonus == "enable" OR $bonus == "disablesave")
                $_db->query("UPDATE users SET seedbonus = seedbonus$type$point WHERE id = ".sqlesc($id)) or sqlerr(__FILE__, __LINE__);               
        else
                return;
}       
}
?>


djallexy 6th April 2008 18:24

Re: FTS v1.0.1
 
doesn`t work :sad: , please :sos: ...

PS: Thx for try

johnsmith24 16th April 2008 08:54

Re: FTS v1.0.1
 
when i go to seed the torrents i have uploaded i get a 404 error inside of utorrent can anybody help me i love the source an the install went good the only trouble i am have is after i upload a torrent an i redownload it to seed it i get a 404 error.....

raefor1 17th April 2008 17:47

Re: FTS v1.0.1
 
nice working good on test site like to see some themes for it :drink:

IceFox 28th April 2008 15:24

Re: FTS v1.0.1
 
how can i set so users can upload.. only uploaders and better can upload now. and i want to all registerd users can upload

Fynnon 7th May 2008 03:26

Re: FTS v1.0.1
 
Great news, a new verison is out, i will update the demo a.s.a.p. !

10x

:drink:

daeron 22nd May 2008 09:23

Re: FTS v1.0.1
 
i tried to upgrade from FTS v1.0.0, after all i can't login into the admin panel.

snakebite 22nd May 2008 23:09

Re: FTS v1.0.1
 
hei where can i get rid of this thing?

[flash=,:1h451c1k]http://www.katls.lv/bildes/files/ny2mmzuyzd00wdjmcmex.jpg[/flash:1h451c1k]

Fynnon 16th June 2008 19:10

Re: FTS v1.0.2
 
Quote:

Originally Posted by snakebite
hei where can i get rid of this thing?

http://www.katls.lv/bildes/files/ny2...00wdjmcmex.jpg

It says right there, next to the that commercial that it should be modified in the Admin Panel
http://tracker-adress/admin/index.php


or
http://tracker-adress/administrator

I looked inside my demo for this source ( http://www.bvlist.com/fts ) but i could not find any commercials already installed, maybe the one who put that commercial code there knows also how and where from to remove it...

attention

Attention

Latest release of this source is FTS 1.1
In the future you can check for new versions of this source here http://sourceforge.net/projects/freetosu







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

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