vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Beta Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=34)
-   -   Nu Torrent Tracker 0.74 (https://vborg.vbsupport.ru/showthread.php?t=82635)

DjTaz 07-10-2005 12:53 PM

I commented this bit on the Upload.php and it seems to let me upload from any tracker now ... havent tested to see if they actually work yet but they do upload no problems

Upload.php line 206-208
Code:

//////        //if ($ann !== $vboptions['nutt_announceurl']){
//////        //        eval(print_standard_redirect('redirect_invannurl'));
//////    }


DjTaz 07-10-2005 04:21 PM

Im not sure if this would be a help to anyone , and itll prob be included in the next version anyway , but i did a quick script for myself to edit the catagories in version .74 - its 3 new files , and one replaced file (just one line edited at the bottom to add in a link to the catagories section)

Anyway , it will let you edit the catagories , delete some , and add in new ones ... hope it works ok for everyone .. the connect.php is needed as im unsure of the codes for VBB to connect the the database , but ill learn that soon.

efd702 07-10-2005 06:32 PM

when i try to generate a passkey i get this error

mysql error: Table 'wireles3_efd702.vb3_nutt_peers' doesn't exist

when i check my database for this directory its 'wireles3_efd702.nutt_peers' and not 'wireles3_efd702.vb3_nutt_peers' what can i do to correct this.
thanks

DjTaz 07-11-2005 11:13 PM

I think sketch is having the same issue efd .. i think the database prefix issue needs to be addressed here for the next version also - it works great if you dont have a prefix , but theres issues if you have

sketch42 07-12-2005 02:02 AM

PHP Code:

// ################################ Create NuTT Tables ###############################
if ($_REQUEST['step'] == 5)
{
        echo 
"Adding Table nutt_cats<br />";
        
        
$DB_site->query("CREATE TABLE `nutt_cats` (
                                        `id` mediumint(9) NOT NULL auto_increment,
                                        `title` varchar(50) NOT NULL default '',
                                        `options` int(10) NOT NULL default '0',
                                        `pic` varchar(255) NOT NULL default '',
                                        PRIMARY KEY  (`id`),
                                        KEY `id` (`id`)
                                        ) TYPE=MyISAM;"
);
        
        echo 
"Adding Table nutt_files<br />";
        
$DB_site->query("CREATE TABLE `nutt_files` (
                                        `id` int(10) NOT NULL auto_increment,
                                        `torrent` int(10) NOT NULL default '0',
                                        `filename` varchar(150) NOT NULL default '',
                                        `size` int(25) NOT NULL default '0',
                                        PRIMARY KEY  (`id`)
                                        ) TYPE=MyISAM;"
);
        
        echo 
"Adding Table nutt_peers<br />";
        
$DB_site->query("CREATE TABLE `nutt_peers` (
                                        `id` int(10) unsigned NOT NULL auto_increment,
                                        `torrent` int(10) unsigned NOT NULL default '0',
                                        `peer_id` varchar(20) NOT NULL default '',
                                        `ip` varchar(64) NOT NULL default '',
                                        `port` smallint(5) unsigned NOT NULL default '0',
                                        `uploaded` bigint(20) unsigned NOT NULL default '0',
                                        `downloaded` bigint(20) unsigned NOT NULL default '0',
                                        `to_go` bigint(20) unsigned NOT NULL default '0',
                                        `seeder` enum('yes','no') NOT NULL default 'no',
                                        `started` int(11) NOT NULL default '0',
                                        `last_action` int(11) NOT NULL default '0',
                                        `connectable` enum('yes','no') NOT NULL default 'yes',
                                        `userid` int(10) unsigned NOT NULL default '0',
                                        `agent` varchar(60) NOT NULL default '',
                                        `finishedat` int(10) unsigned NOT NULL default '0',
                                        `downloadoffset` bigint(20) unsigned NOT NULL default '0',
                                        `uploadoffset` bigint(20) unsigned NOT NULL default '0',
                                        `passkey` varchar(32) NOT NULL default '',
                                        PRIMARY KEY  (`id`),
                                        UNIQUE KEY `torrent_peer_id` (`torrent`,`peer_id`),
                                        KEY `torrent` (`torrent`),
                                        KEY `torrent_seeder` (`torrent`,`seeder`),
                                        KEY `last_action` (`last_action`),
                                        KEY `connectable` (`connectable`),
                                        KEY `userid` (`userid`)
                                        ) TYPE=MyISAM;"
);
        
        echo 
"Adding Table nutt_rate<br />";
        
$DB_site->query("CREATE TABLE `nutt_rate` (
                                        `id` int(11) NOT NULL auto_increment,
                                        `rate` int(11) NOT NULL default '0',
                                        `torrent` int(11) NOT NULL default '0',
                                        `userid` int(11) NOT NULL default '0',
                                        `ip` varchar(62) NOT NULL default '',
                                        `time` int(11) NOT NULL default '0',
                                        PRIMARY KEY  (`id`)
                                        ) TYPE=MyISAM;"
);
        
        echo 
"Adding Table nutt_torrents<br />";
        
$DB_site->query("CREATE TABLE `nutt_torrents` (
                                        `id` int(10) NOT NULL auto_increment,
                                        `threadid` int(10) NOT NULL default '0',
                                        `filename` varchar(255) NOT NULL default '',
                                        `owner` varchar(255) NOT NULL default '0',
                                        `ownerm` varchar(255) NOT NULL default '',
                                        `ownerid` int(10) NOT NULL default '0',
                                        `visible` varchar(5) NOT NULL default '',
                                        `deleted` varchar(10) NOT NULL default 'no',
                                        `hash` varchar(255) NOT NULL default '',
                                        `name` varchar(255) NOT NULL default '',
                                        `size` int(25) NOT NULL default '0',
                                        `numfiles` int(10) NOT NULL default '0',
                                        `type` varchar(10) NOT NULL default '',
                                        `descr` mediumtext NOT NULL,
                                        `cat` int(10) NOT NULL default '0',
                                        `save` varchar(255) NOT NULL default '',
                                        `added` int(25) NOT NULL default '0',
                                        `last_action` int(25) NOT NULL default '0',
                                        `downloaded` int(10) NOT NULL default '0',
                                        `seeders` int(10) NOT NULL default '0',
                                        `leechers` int(10) NOT NULL default '0',
                                        `rated` mediumtext NOT NULL,
                                        `comments` int(11) NOT NULL default '0',
                                        PRIMARY KEY  (`id`)
                                        ) TYPE=MyISAM;"
);

        echo 
"<br />NuTT Tables Added!<br /><br />";

        
//         insert data
        
$DB_site->query("INSERT INTO `nutt_cats` VALUES (1, 'MP3', 0, 'mp3.gif')");
        
$DB_site->query("INSERT INTO `nutt_cats` VALUES (2, 'Single', 0, 'single.gif')");
        
$DB_site->query("INSERT INTO `nutt_cats` VALUES (3, 'Album', 0, 'album.gif')");
        
$DB_site->query("INSERT INTO `nutt_cats` VALUES (4, 'PV', 0, 'pv.gif')");
        
$DB_site->query("INSERT INTO `nutt_cats` VALUES (5, 'DVD', 0, 'dvd.gif')");
        
$DB_site->query("INSERT INTO `nutt_cats` VALUES (6, 'Images', 0, 'img.gif')");
        
$DB_site->query("INSERT INTO `nutt_cats` VALUES (7, 'TV', 0, 'tv.gif')");
        
$DB_site->query("INSERT INTO `nutt_cats` VALUES (8, 'Performance', 0, 'perf.gif')");
        
$DB_site->query("INSERT INTO `nutt_cats` VALUES (9, 'Misc', 0, 'misc.gif')");

        echo 
"<br />NuTT Tables Populated!<br /><br />";

        
$DB_site->query("ALTER TABLE ".TABLE_PREFIX."usergroup ADD nuttpermissions INT(10) UNSIGNED DEFAULT '0' NOT NULL");
        
$DB_site->query("UPDATE ".TABLE_PREFIX."usergroup SET nuttpermissions='511' WHERE usergroupid='6'");
        
$DB_site->query("ALTER TABLE ".TABLE_PREFIX."user ADD uploaded BIGINT(20) DEFAULT '0' NOT NULL");
        
$DB_site->query("ALTER TABLE ".TABLE_PREFIX."user ADD downloaded BIGINT(20) DEFAULT '0' NOT NULL");
        
$DB_site->query("ALTER TABLE ".TABLE_PREFIX."user ADD tempuploaded BIGINT(20) DEFAULT '0' NOT NULL");
        
$DB_site->query("ALTER TABLE ".TABLE_PREFIX."user ADD tempdownloaded BIGINT(20) DEFAULT '0' NOT NULL");
        
$DB_site->query("ALTER TABLE ".TABLE_PREFIX."user ADD tempreset INT(10) UNSIGNED DEFAULT '0' NOT NULL");
        
$DB_site->query("ALTER TABLE ".TABLE_PREFIX."user ADD passkey VARCHAR(32) DEFAULT '0' NOT NULL");
        
$DB_site->query("ALTER TABLE ".TABLE_PREFIX."user ADD agent VARCHAR(255) DEFAULT '0' NOT NULL");

        echo 
"<br />vBulletin Tables Updated!<br /><br />";
        


this is from the nut_install.php , i need to know is it as simple as changing this
PHP Code:

$DB_site->query("CREATE TABLE `nutt_rate` (
                                        `id` int(11) NOT NULL auto_increment,
                                        `rate` int(11) NOT NULL default '0',
                                        `torrent` int(11) NOT NULL default '0',
                                        `userid` int(11) NOT NULL default '0',
                                        `ip` varchar(62) NOT NULL default '',
                                        `time` int(11) NOT NULL default '0',
                                        PRIMARY KEY  (`id`)
                                        ) TYPE=MyISAM;"
); 

to this???
PHP Code:

$DB_site->query("CREATE TABLE . TABLE PREFIX. `nutt_rate` (
                                        `id` int(11) NOT NULL auto_increment,
                                        `rate` int(11) NOT NULL default '0',
                                        `torrent` int(11) NOT NULL default '0',
                                        `userid` int(11) NOT NULL default '0',
                                        `ip` varchar(62) NOT NULL default '',
                                        `time` int(11) NOT NULL default '0',
                                        PRIMARY KEY  (`id`)
                                        ) TYPE=MyISAM;"
); 

And if so what other files do i need to edit that call to the tables

sketch42 07-12-2005 06:14 AM

ok well Marco64 helped me out in finding what queries to run in phpmyadmin to rename the table names
for anyone else that needs it
Quote:

Originally Posted by MarcoH64
[sql]RENAME TABLE tablename TO prefix_tablename;[/sql]


sketch42 07-12-2005 06:23 AM

a few questions now that finally everything is setup
1) I created a forum and specified its forum id in the nutt settings .. however when i click on the forum link it doesnt goto /nutt any idea why its doing that?

and
2) whenever i try uploading a torrent i keep getting this error that the announce url is wrong(see attachment) but the announce url is correct ( see attachment2) any ideas?

afusion 07-12-2005 08:19 AM

1) The forum is for torrent commenting functions. It's supposed to be a normal forum.

2) You need to set the announce URL in the settings.

sketch42 07-12-2005 08:36 AM

Quote:

Originally Posted by afusion
1) The forum is for torrent commenting functions. It's supposed to be a normal forum.

2) You need to set the announce URL in the settings.

it is set in the nutt settings

DjTaz 07-13-2005 09:03 AM

sketch - yeah - the settings in the admincp - vboptions- nutt options .. theres an announce url in there ... use the same url as that to make torrents. i discovered mine had an extra space at the end , and it wouldnt work, so make sure theres no spaces

sketch42 07-13-2005 08:26 PM

Quote:

Originally Posted by DjTaz
sketch - yeah - the settings in the admincp - vboptions- nutt options .. theres an announce url in there ... use the same url as that to make torrents. i discovered mine had an extra space at the end , and it wouldnt work, so make sure theres no spaces

here dj take a look at this and tell me what you get
http://www.wirelessolution.net/nutt go and try to upload something

test accnt: username: test
password: test

sketch42 07-13-2005 11:30 PM

i think im just gonna switch to VBTT just because of the lack of support on this one, the hack author hasnt answered anything significant to my problem or anyones in more than a week. the problem i was having has nothing to do with the the announce url not being in the nutt settings.. i set that up more than 5 days ago.. there is clearly a problem with something else.. i think that if you as a hack author are going to tick the supported button than you should support it. otherwisse let people know that you cant support it due to lack of time or otherwise. this is the worst support i have ever had on any hack.
anyone considering this hack understand that there is NO SUPPORT.
and if the hack author comes only now to rebutt this post, than clearly he is showing that he has enough time for debate but not for support????

afusion 07-14-2005 08:26 AM

I'm sorry for any inconvinience I might be causing but I've got barely the time to do everything. When I clicked that button, things were a lot calmer but now however, whenever I am online, I need to deal with my server being a complete WooHoo from Mars while also trying to make 0.8 look decent enough to roll it out here.

And before you say it, yes it's easier to babble here to than to answer your questions. This reply was made up in a whooping 0.4s!

Anyway, I reckon I'm gonna unclick support now until 0.8 because I'm gonna have gray hair before I resolve every issue with 0.74 since it's a beta.

DjTaz 07-14-2005 04:38 PM

.74 looks good so far afusion , and seems to work on the basic install , bar that prefix issue - i have it all installed and running fine , but im not releasing it to my members until torrents can be uploaded from any tracker and that catagories part fixed so we can choose our own ... everything else really seems fine to me

Sketch - sorry i couldnt be more help, but i can see things from afusions point of view as well - his life cant really revolve around this hack , and real life has to take a preference , its just a pity u felt ignored in the process.

Id say wait till version .8 is out and give it a try again - a lot of small things should be fixed by then.

sketch42 07-14-2005 04:45 PM

Quote:

Originally Posted by DjTaz
.74 looks good so far afusion , and seems to work on the basic install , bar that prefix issue - i have it all installed and running fine , but im not releasing it to my members until torrents can be uploaded from any tracker and that catagories part fixed so we can choose our own ... everything else really seems fine to me

Sketch - sorry i couldnt be more help, but i can see things from afusions point of view as well - his life cant really revolve around this hack , and real life has to take a preference , its just a pity u felt ignored in the process.

Id say wait till version .8 is out and give it a try again - a lot of small things should be fixed by then.

i was just felt that if its being advertised as supported it should be. obviously not 24/7 but its been more than a week .. and it was an error holding me back from doing anything else on my forum. had i known from before it wasnt supported full time meaning wouldnt get an answer at least once every 2 days i woldve most likely just waired until it left beta, or if i had problems with the install i wouldve just uninstalled it from the beggining and waited for the stable release. my rant was mainly at the fact that it was advertised as supported and it wasnt. thats all. now that he showing that its unsupported id wait till .8 is released at least.

arabuser 07-17-2005 08:02 PM

afusion
can you please include Statistics page for Top 10 uploaders , seeders , downloaders etc ...

afusion 07-20-2005 07:21 AM

Quote:

Originally Posted by arabuser
afusion
can you please include Statistics page for Top 10 uploaders , seeders , downloaders etc ...

Thanks for the idea, I'll see about it ;)

Filmrus 08-01-2005 08:57 AM

afusion
When new version wil be issued?

fraghappy 08-04-2005 08:34 AM

Quote:

Originally Posted by Filmrus
afusion
When new version wil be issued?

Read the thread. He says he's dealing with an immense number of other problems at the moment, and combined with the fact that the functionality will need to be updated to match the v3.5.x of the software, he wants to wait until said version has reached a stable release.

arabuser 08-15-2005 02:53 PM

afusion
is it will take long time to see next version ?

fraghappy 08-15-2005 05:47 PM

Quote:

Originally Posted by arabuser
afusion
is it will take long time to see next version ?

He hasn't posted a progress report in a couple of weeks. :disappointed:

James Ballard 08-16-2005 11:57 AM

Hey,

All went smoothly with the installation and setup (or so it seemed). However, torrents simply aren't working. I keep getting "Bad data from tracker" errors in BT when trying to seed. Is there something blatantly obvious I've missed here? :lick:

DjTaz 08-16-2005 12:55 PM

James - they have to be torrents you create yourself from your own tracker , and not a torrent you get from another site . the files have to be your own , as far as i know

James Ballard 08-16-2005 11:04 PM

Yeah, they are. I created torrents using the announce URL from my NuTT. Strange, but just my luck :P

iiyoN 08-17-2005 06:01 PM

k got a problem when doing the nutt_maintenance.php
Code:

Warning: mysql_connect() [function.mysql-connect]: Access denied for user: 'wwwrun@localhost' (Using password: NO) in .....
.
Warning: mysql_select_db() [function.mysql-select-db]: A link to the server could not be established in ...
.

seems like mysql log in doesn't work anyhow :/
when i look at the config file + nutt_external I see no problem
Chmod is on all files 644 - changed nutt_maintenance.php to 744 .. but still dun work
any ideas ?

edit : it's the same problem like on page 10
argh .. i dun want to go through sketch adventurous tour as well ^^
would be nice if any1 could explain how I get this to work.

oldfan 08-18-2005 06:02 AM

Not to rain on your parade, but Sqrtboy has released a even better version of his vbtt :)
http://www.phpsoft.org/vbtt2.php

Omega Prime 08-21-2005 01:36 AM

Quote:

Originally Posted by oldfan
Not to rain on your parade, but Sqrtboy has released a even better version of his vbtt :)
http://www.phpsoft.org/vbtt2.php

sqrtboy's currently charging 80 euros for that, whereas afusion is offering this for free and with more features than you can find with VBTT ;)

oldfan 08-21-2005 02:34 AM

Quote:

Originally Posted by Omega Prime
sqrtboy's currently charging 80 euros for that, whereas afusion is offering this for free and with more features than you can find with VBTT ;)

Sorry, I'm just pointing that out :)

afusion 08-21-2005 07:25 AM

Time for an update...

Life has been extremely busy and vB 3.5 RC3 is coming out soon so I've decided to move on to 3.5 with NuTT. It will be an almost completely new version with many new features and improvements like...
  • AJAX editing
  • A lot cleaner and nicer interface
  • A big amount of configurability via the AdminCP including settings, usergroup permissions, category editing and more...
  • A lot of stats about everything you want to know and more ranging from tracker activity, to torrent activity, to a connected peers browser; all with cool, flashy pie charts ^^
  • and much more...
Now if I were to be talking about any release date, I'd be lying straight in your face so it will just be done when it's done. I know this though - it's after 3.5 goes Gold and before October ^^

arabuser 08-21-2005 08:07 AM

oh my god what about 0.80 we were waiting it ? I'm not ready yet to move to 3.5 not this year so is it possible we get 0.80 or atleast 0.79

zajako 08-25-2005 04:46 AM

Yeah, I personaly dont want to update to 3.5 >.<

hitokiri battou 08-30-2005 10:15 PM

I have a question. Is that detailed seeder/leecher info in a persons profile only available in the current version on Nutt you are working on or is it also available one the one that is up. When I clicked a persons profile, I did not see any torrent info in it at all. Did I screw up somewhere on the install.

EDIT: Ya, I personally would really like a copy of that advanced version of the tracker you're making for vb ver 3.07 or 8. Im also not ready to upgrade to version 3.5 yet.

Edrick 09-15-2005 05:50 AM

Hey, I couldn't find the link to the support forums, all I get is the main forums...

Anyways, I'm having this trouble when I try to view an user profile:

Quote:

Database error in vBulletin 3.0.8:

Invalid SQL:
SELECT user.userid, user.username, user.uploaded, user.downloaded,
user.tempuploaded, user.tempdownloaded, user.tempreset,
user.passkey, user.agent, user.ipaddress, user.port,
usergroup.opentag, usergroup.closetag
FROM user AS user
LEFT JOIN usergroup AS usergroup ON(user.usergroupid = usergroup.usergroupid)
WHERE user.userid = 2018
LIMIT 1

mysql error: Unknown column 'user.port' in 'field list'

mysql error number: 1054

Date: Thursday 15th of September 2005 12:39:26 AM
Script: http://www.valiantgamers.com/nutt/member.php?u=2018
Referer: http://www.valiantgamers.com/nutt/
Username: Edrick
IP Address: 201.154.228.89
any idea why?

hitokiri battou 09-15-2005 12:35 PM

I have that exact same problem so Id like to know a well.

COBRAws 10-06-2005 04:19 AM

Quote:

Originally Posted by afusion
Time for an update...

Life has been extremely busy and vB 3.5 RC3 is coming out soon so I've decided to move on to 3.5 with NuTT. It will be an almost completely new version with many new features and improvements like...
  • AJAX editing
  • A lot cleaner and nicer interface
  • A big amount of configurability via the AdminCP including settings, usergroup permissions, category editing and more...
  • A lot of stats about everything you want to know and more ranging from tracker activity, to torrent activity, to a connected peers browser; all with cool, flashy pie charts ^^
  • and much more...
Now if I were to be talking about any release date, I'd be lying straight in your face so it will just be done when it's done. I know this though - it's after 3.5 goes Gold and before October ^^

ill pay for a 3.5

steadicamop 10-06-2005 07:11 PM

Quote:

Originally Posted by Edrick
Hey, I couldn't find the link to the support forums, all I get is the main forums...

Anyways, I'm having this trouble when I try to view an user profile:



any idea why?

That is something to do with the fact that user.port doesn't exsist in the database, and look at the same error I got the next two after it don't exsist either, I tried to create user.port but I'm no expert with MySQL ... so I'm just gonna either leave it or uninstall it ... which is a shame cos it's an awesome addition, just a shame that now 3.0.x users will get left behind cos of 3.5 :(

???`S?LV?R???` 10-08-2005 10:59 AM

Yeah, a 3.5 edition would definilt be appreciated.

COBRAws 10-11-2005 07:38 PM

afusion I noticed you are using vb 3.5 on you forum with nuTT :) Beta coming out public soon?

Sorry to hurry

Omega Prime 10-12-2005 01:45 AM

Quote:

Originally Posted by COBRAws
afusion I noticed you are using vb 3.5 on you forum with nuTT :) Beta coming out public soon?

Sorry to hurry

He's working on an improved version of the tracker, which includes code optimizations and new features (such as editable torrents, tracker stats, and more). What you see at my forum is a port of this version that afusion made. Patience is needed before an actual 3.5 version is finalized :)

Selene 10-15-2005 09:43 PM

any news? we are eagerly waitng for this hack to release for 3.5GOLD

plz plz plz do something.


All times are GMT. The time now is 02:23 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01588 seconds
  • Memory Usage 1,945KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (3)bbcode_php_printable
  • (13)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete