Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Downloads (http://www.bvlist.com/forumdisplay.php?f=16)
-   -   Giganova Tracker Source v2 (http://www.bvlist.com/showthread.php?t=623)

Fynnon 14th July 2008 13:02

Giganova Tracker Source v2
 
1 Attachment(s)
Install:

- upload the files to your server

- create a database and import into it the sql file

- edit the file config.php



heartodark 15th August 2008 13:44

uploading dont work
 
i install it it look good nice theme
the only probleme is the uploding service nor working

i got this error with all torrent i tray to upload

i got a white page or:
Code:

This torrent does not have a valid tracker
UDP links are not valid


joeroberts 6th August 2009 00:27

just to help out here are a few sample sub cats to get you started and give you a Idea on how to do it
Code:

INSERT INTO `categories` (catid, name, subname)VALUES(6, 'Anime', 'About a Girl');
INSERT INTO `categories` (catid, name, subname)VALUES(6, 'Anime', 'AMV');
INSERT INTO `categories` (catid, name, subname)VALUES(6, 'Anime', 'Battle Programer Shirase');
INSERT INTO `categories` (catid, name, subname)VALUES(6, 'Anime', 'Big O');
INSERT INTO `categories` (catid, name, subname)VALUES(1, 'Movies', 'Action');
INSERT INTO `categories` (catid, name, subname)VALUES(1, 'Movies', 'Adventure');
INSERT INTO `categories` (catid, name, subname)VALUES(1, 'Movies', 'Americana');
INSERT INTO `categories` (catid, name, subname)VALUES(1, 'Movies', 'Animation');
INSERT INTO `categories` (catid, name, subname)VALUES(4, 'Games', 'Dreamcast');
INSERT INTO `categories` (catid, name, subname)VALUES(4, 'Games', 'Game fixes/patches');
INSERT INTO `categories` (catid, name, subname)VALUES(4, 'Games', 'GameCube');
INSERT INTO `categories` (catid, name, subname)VALUES(4, 'Games', 'Linux');
INSERT INTO `categories` (catid, name, subname)VALUES(3, 'Music', 'Alternative');
INSERT INTO `categories` (catid, name, subname)VALUES(3, 'Music', 'Ambient');
INSERT INTO `categories` (catid, name, subname)VALUES(3, 'Music', 'Anime');
INSERT INTO `categories` (catid, name, subname)VALUES(3, 'Music', 'Asian');
INSERT INTO `categories` (catid, name, subname)VALUES(5, 'Appz', 'Linux');
INSERT INTO `categories` (catid, name, subname)VALUES(5, 'Appz', 'Mac');
INSERT INTO `categories` (catid, name, subname)VALUES(5, 'Appz', 'Mobile phones');
INSERT INTO `categories` (catid, name, subname)VALUES(5, 'Appz', 'Other operating systems');
INSERT INTO `categories` (catid, name, subname)VALUES(2, 'Shows', '10 Items or Less');
INSERT INTO `categories` (catid, name, subname)VALUES(2, 'Shows', '24');
INSERT INTO `categories` (catid, name, subname)VALUES(2, 'Shows', '3 LBS');
INSERT INTO `categories` (catid, name, subname)VALUES(2, 'Shows', '30 Days');
INSERT INTO `categories` (catid, name, subname)VALUES(7, 'Others', 'Flash/Shockwave');
INSERT INTO `categories` (catid, name, subname)VALUES(7, 'Others', 'Funny clips');
INSERT INTO `categories` (catid, name, subname)VALUES(7, 'Others', 'Other');
INSERT INTO `categories` (catid, name, subname)VALUES(7, 'Others', 'Podcasts');

to give you example on how to write new sql, the values are:

PHP Code:

INSERT INTO `categories` (catidnamesubname)VALUES(7'Others''Podcasts'); 

7 is the id of the base category

the Others are the name of the base category

Podcasts is the name of the new subcategory you want to add the the Others category

sammygo 6th August 2009 08:26

I must CHMOD some files/folders ? When i upload .. it say TRACKER DEAD All times...and when i try on localhost it works perfectly !


Code:

Warning: move_uploaded_file(./torrent//47bb668f91ff0449d8649d2b6896dbae4d49db44.bogtor) [function.move-uploaded-file]: failed to open stream: Permission denied in /home/ciosmy/public_html/upload.php on line 138
Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/phphMZDUy' to './torrent//47bb668f91ff0449d8649d2b6896dbae4d49db44.bogtor' in /home/ciosmy/public_html/upload.php on line 138

Line 138 :
Code:

move_uploaded_file($upfile , $btdir.'/'. $infohash .'.bogtor') or die("Error...");
Help ;)

joeroberts 7th August 2009 13:55

you need to check your settings for torrent location looks like you have a / that is not needed
Code:

Warning: move_uploaded_file(./torrent//47bb668f91ff0449d8649d2b6896dbae4d49db44.bogtor)
check your config make sure its like this
Code:

$dbhost    = 'localhost'; // DB Host, normally 'localhost'
$dbuser    = 'database'; // DB User
$dbpass    = 'password'; // DB Password
$database    = 'traker'; // Batabase name
$btdir        = 'torrent'; //  Torrent's Dir
$sitename    = 'your_site.Ro'; // SITENAME
$admin_user = 'you'; // admin's nickname
$admin_pass = 'yourpass'; // admin's password
$version    = '5'; //Do not modify -- versioning system
$base_uri    = 'http://your_site.ro'; // Set this to your site URL...


bindu2k7 8th August 2009 16:26

Search Cloud Sql is missing. :sad:

sammygo 8th August 2009 16:30

Quote:

Originally Posted by bindu2k7 (Post 14254)
Search Cloud Sql is missing. :sad:

Search Cloud is not necesarry...
just go to config.php search the line and delete ;)
and delete searchcloud or cloud.php (i don't know exactly the name of php file)

joeroberts 8th August 2009 17:12

I found a error in upload
edit
Code:

    @$status = file_get_contents(''.$tracker.'?info_hash='.$infohash.'');
to
Code:

    @$status = file_get_contents(''.$tracker.'?info_hash='.escape_url($infohash).'');

sammygo 8th August 2009 17:32

2 Attachment(s)
Quote:

Originally Posted by joeroberts (Post 14256)
I found a error in upload

Thanks for all .:)

There are also some errors...
When you go to admin and modify a torrent's DESCRIPTION and u SUBMIT..when u go to that torrent..description - nothing :|

What's wrong ? in this php(s) file ? i can't edit description in admin panel :cry:

shuriman 20th October 2009 12:23

I'm sorry for my bad English.

This script is a serious vulnerability can read more below for reference.

I tried this bug even if you view a demo is ... The most interesting thing that this code is present in the script ak nova, but the bug does not go ... Sorry I was not familiar with the php and can not find the right decision and I ask you for help.

Way torrent hoster script checks the form input using a login script validator.php, if anyone has the time and opportunity to introduce this method please protect and t-xore advance grateful.

To even be moved to the code password recovery torrent hoster to do was beauty ... Thanks in advance for the answer.

P.S. By Google http://forum.antichat.ru/showthread....re#post1098181


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

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