Bravo List
Register
Go Back   > Bravo List > P2P > Forum > Downloads
Reply
  #1  
Old 14th July 2008, 13:02
Fynnon's Avatar
Fynnon Fynnon is offline
xxx
 
Join Date: Nov 2007
P2P
Posts: 984
Default Giganova Tracker Source v2
Install:

- upload the files to your server

- create a database and import into it the sql file

- edit the file config.php


Attached Files
File Type: rar GiganovaTrackerSourcev2.rar (295.3 KB, 846 views)

Last edited by Fynnon; 8th August 2009 at 23:25. Reason: Update !
Reply With Quote
The Following User Says Thank You to Fynnon For This Useful Post:
Ashur (19th September 2010)
  #2  
Old 15th August 2008, 13:44
heartodark heartodark is offline
Member
 
Join Date: Aug 2008
Posts: 2
Default 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
Reply With Quote
  #3  
Old 6th August 2009, 00:27
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
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
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/

Last edited by joeroberts; 8th August 2009 at 15:44.
Reply With Quote
  #4  
Old 6th August 2009, 08:26
sammygo sammygo is offline
Senior Member
 
Join Date: May 2008
P2P
Posts: 141
Default
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 ;)

Last edited by Fynnon; 7th August 2009 at 13:57.
Reply With Quote
  #5  
Old 7th August 2009, 13:55
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
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...
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/

Last edited by joeroberts; 8th August 2009 at 15:48.
Reply With Quote
  #6  
Old 8th August 2009, 16:26
bindu2k7 bindu2k7 is offline
Member
 
Join Date: Aug 2009
Afghanistan
Posts: 3
Default
Search Cloud Sql is missing.
Reply With Quote
  #7  
Old 8th August 2009, 16:30
sammygo sammygo is offline
Senior Member
 
Join Date: May 2008
P2P
Posts: 141
Default
Quote:
Originally Posted by bindu2k7 View Post
Search Cloud Sql is missing.
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)
Reply With Quote
  #8  
Old 8th August 2009, 17:12
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
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).'');
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
  #9  
Old 8th August 2009, 17:32
sammygo sammygo is offline
Senior Member
 
Join Date: May 2008
P2P
Posts: 141
Default
Quote:
Originally Posted by joeroberts View Post
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:
Attached Files
File Type: php modify.php (6.6 KB, 69 views)
File Type: php domod.php (1.3 KB, 24 views)

Last edited by sammygo; 9th August 2009 at 11:53.
Reply With Quote
  #10  
Old 20th October 2009, 12:23
shuriman shuriman is offline
Member
 
Join Date: Sep 2009
Ukraine
Posts: 1
Default
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
Reply With Quote
Reply

Tags
giganova , source , tracker , v2

Thread Tools

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
What tracker source is puretorrents.org using? AJ1804 Community Cafe 9 17th December 2010 15:01
tracker source encode Fynnon Community Cafe 1 15th September 2010 19:54
Tracker source movizdb Community Cafe 2 9th December 2008 18:21
Tracker Source - help me SafariMan Community Cafe 4 1st November 2008 03:51



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