Filesoup
X   Site Message
(Message will auto close in 2 seconds)


> 

If you would like to advertise your Hosting, Services or Products on Filesoup, please contact Geeker for a quote.

6 Pages V   1 2 3 > »   
Reply to this topicStart new topic
> AK Nova 1.7.5, T-Xore Modifications
phrostwave
post May 29 2007, 12:56 AM
Post #1


DJ Taktikz / STR Records
Group Icon

Group: BT Community Leader
Posts: 128
Joined: 7-September 06
From: 407 Area
Member No.: 411,795
 
System Specs: (show/hide)




Its up!

-----------------------------------------------------------------------------------------------------------------------------
AK NOVA - 1.7.5

The AK Nova is a literal upgrade from the orignal T-Xore script. It has many new features, modifications, designs, and contributions from members of this forum (filesoup), and me as well - so it can be considered a group project practically! Its a torrent indexer, capable of crawling torrents across the web, very similar to Mininova, and Meganova.

The enviroment/setup I use to develop the AK Nova goes as follows, and should be considered as minimum requirements:
PHP 4.3 & above, MySQL 4.x & above, Apache 1.3 & above.

Pros:
TWO mass scrapes (with curl options), cool dhtml/ajax capabilities, more subcategories (I tryed to get the ones from Mininova v.2, and Meganova), registration captcha (slightly improved), logged in for comments, more global variables to configure, redesigned admin area, single scrape, view users, admin search (for torrents), plus more stuff im probably forgetting.

Cons:
Still not completely Ibitzy compliant (its an UPLOAD center, not a CRAWLER!!), slow scrapes (mass scrapes take forever with over 6000 torrents, damn tpb!!!!), could be prone to description XSS (?), minor 'invisible' bugs.
----------------------------------------------------------------------------------------------------------------------------
Download the AK Nova 1.7.5
(available in 7zip, and Zip formats, no tarball this time!)


--------------------
torrentgod :: god of torrents (and powered by the ak nova!)
ak project :: ak sourceforge

recommended dj cuts:
vaughn mason - bounce, rock, skate, roll
Go to the top of the pageReport Post
+
hustler263
post May 29 2007, 01:43 AM
Post #2


Spam Soup
Group Icon

Group: Admin
Posts: 1,391
Joined: 16-January 04
From: Florida
Member No.: 61,222
 


Excellent, I love this combo! ThumbsUp.gif


--------------------

Mini Tracker Public Announce URL: http://hustlers-place.com/sbt/announce.php
Hustler's Place Lite Tracker: http://hustlers-place2.com/ttlite/index.php
(New) Hustler's Place BT Ferret using AK Nova: http://hustlers-place.com/btferret/index.php
(New) Hustler's Place Topsites Site: http://hustlers-place.com/topsite/index.php
Hustler's Place VIPTracker: http://hustlers-place2.com/viptracker/index.php This one requires
you to be an active member of our forums!
Go to the top of the pageReport Post
+
juiced
post May 29 2007, 03:01 AM
Post #3


Tomato
Group Icon

Group: Member
Posts: 56
Joined: 7-May 07
Member No.: 452,851



Nice job dude
Go to the top of the pageReport Post
+
phrostwave
post May 29 2007, 03:23 AM
Post #4


DJ Taktikz / STR Records
Group Icon

Group: BT Community Leader
Posts: 128
Joined: 7-September 06
From: 407 Area
Member No.: 411,795
 
System Specs: (show/hide)




thanks, im just trying to figure out why theres "1's" as votes, i hope that its really not that horrible smile.gif
Go to the top of the pageReport Post
+
hustler263
post May 29 2007, 03:33 AM
Post #5


Spam Soup
Group Icon

Group: Admin
Posts: 1,391
Joined: 16-January 04
From: Florida
Member No.: 61,222
 


QUOTE(phrostwave @ May 28 2007, 09:23 PM) *
thanks, im just trying to figure out why theres "1's" as votes, i hope that its really not that horrible smile.gif


Oppps, one of those ones would be my fault, figuring 1 would be better! Sorry!!!

So far everything is working great. Great job phrostwave! 11.gif
Go to the top of the pageReport Post
+
phrostwave
post May 29 2007, 03:36 AM
Post #6


DJ Taktikz / STR Records
Group Icon

Group: BT Community Leader
Posts: 128
Joined: 7-September 06
From: 407 Area
Member No.: 411,795
 
System Specs: (show/hide)




next time i'll just make three 'good', 'eh', 'bad' so its less confusing :P

HOPEFULLY i will include the forum addon with another release soon, im still yet to get a reply from the guy saying if i can distribute my modified version of his forum with my package, but its mainly because he doesnt want it to appear in commercial products. I'm also working on a better version of ibitzy (0.4) for it, i just couldnt release that because it sort of doesnt work completely with t-xore.

This post has been edited by phrostwave: May 29 2007, 03:41 AM
Go to the top of the pageReport Post
+
hustler263
post May 29 2007, 03:48 AM
Post #7


Spam Soup
Group Icon

Group: Admin
Posts: 1,391
Joined: 16-January 04
From: Florida
Member No.: 61,222
 


Mine's working just fine, the iBitzy I mean, the rest of it is working great as I have stated before. applaud.gif
Go to the top of the pageReport Post
+
guibean
post May 29 2007, 04:16 AM
Post #8


Spam Soup
Group Icon

Group: Contributor
Posts: 121
Joined: 22-September 05
Member No.: 313,949
 


very good


--------------------
Go to the top of the pageReport Post
+
diorz
post May 29 2007, 03:59 PM
Post #9


Tomato
Group Icon

Group: Member
Posts: 55
Joined: 24-September 06
Member No.: 415,651



nice addon, i like the ajax register/login stuff.
Go to the top of the pageReport Post
+
phrostwave
post May 29 2007, 07:38 PM
Post #10


DJ Taktikz / STR Records
Group Icon

Group: BT Community Leader
Posts: 128
Joined: 7-September 06
From: 407 Area
Member No.: 411,795
 
System Specs: (show/hide)




also, if you plan on using cURL functions for scraping, make sure to add this to your config.php (mod by ccblue)

find:
CODE
function torrent_scrape_url($scrape, $hash)
......


add ABOVE:
CODE
function getcontent($url,$timeout=10) //set a nice low timeout so we dont stall
{
//Grab the ad etc
$ch = curl_init();
curl_setopt($ch, CURLOPT_USERAGENT, 'Scrape'); //the scrapers 'useragent'
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT,$timeout);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
$adval=curl_exec($ch);
curl_close($ch);
return $adval;
}


look inside the scraper.php and adm/uda2.php and look for the curl function that is commented out:
CODE
//$scrape = @file_get_contents($url); ///no curl
$scrape = @getcontent($url); ///curl <--uncomment this one

this method works a lot faster, i'll release another version of adm/uda.php when i get the time, but all in all cURL makes the whole scrape process a lighter load.

cURL is an extension to php, if its not installed already dont bug me on how to install it tongue.gif
Ive included a php_info(); for this reason, try opening that in the admin area and look for cURL about 1/3 or 1/2 way into the page.

This post has been edited by phrostwave: May 29 2007, 07:51 PM
Go to the top of the pageReport Post
+
coscast
post May 30 2007, 12:27 AM
Post #11


Clam Chowder
Group Icon

Group: BT Community Leader
Posts: 78
Joined: 8-October 04
Member No.: 198,840
 


I looked @ your scrape and IMO there is the "downloaded" stat missing. You got the seeds and peers. Maybe you extend it to scrape the downloaded stats. Just an idea, noting more, nothing less.


--------------------
http://www.torrents-and-more.to
Go to the top of the pageReport Post
+
phrostwave
post May 30 2007, 01:45 AM
Post #12


DJ Taktikz / STR Records
Group Icon

Group: BT Community Leader
Posts: 128
Joined: 7-September 06
From: 407 Area
Member No.: 411,795
 
System Specs: (show/hide)




i'll try to post a new scraper with this ability (and upgrade t-xore a tiny bit), i cant promise itll get done tonight but i'll try to get it out soon. i might be wrong but i think pktorrents has this ability so i guess i can try to implement it from there smile.gif

[edit>]
ok, pktorrents has this ability, it looks like i could have this done soon - so long as its ok with proxykill if i grab this tongue.gif

This post has been edited by phrostwave: May 30 2007, 01:52 AM
Go to the top of the pageReport Post
+
phrostwave
post May 30 2007, 08:49 AM
Post #13


DJ Taktikz / STR Records
Group Icon

Group: BT Community Leader
Posts: 128
Joined: 7-September 06
From: 407 Area
Member No.: 411,795
 
System Specs: (show/hide)




Got it working coscast!

This will only work on the crazy scrape, and i have included a little upgrade from the original scraper.php so it grabs the stat as well biggrin.gif

Example... (try updating other torrents as well, this one has already been updated!)

Info here...

Hope it works for you guys, and ENJOY! biggrin.gif

This post has been edited by phrostwave: May 30 2007, 08:55 AM
Go to the top of the pageReport Post
+
phrostwave
post May 30 2007, 09:00 PM
Post #14


DJ Taktikz / STR Records
Group Icon

Group: BT Community Leader
Posts: 128
Joined: 7-September 06
From: 407 Area
Member No.: 411,795
 
System Specs: (show/hide)




hey guys, i made a tiny mistake when i released the scraper addon......

make sure to use:
CODE
ALTER TABLE 'torrents' ADD 'grabs' varchar(11) default '0';

instead of INSERT TABLE, which is provided with the readme.txt

This post has been edited by phrostwave: May 30 2007, 10:38 PM
Go to the top of the pageReport Post
+
phrostwave
post May 31 2007, 12:01 AM
Post #15


DJ Taktikz / STR Records
Group Icon

Group: BT Community Leader
Posts: 128
Joined: 7-September 06
From: 407 Area
Member No.: 411,795
 
System Specs: (show/hide)




cURL for IBITZY available!
by request of two people, hopefully this should do for now.

im just coding up a storm over here! 2gunsfiring_v1.gif

This post has been edited by phrostwave: May 31 2007, 12:09 AM
Go to the top of the pageReport Post
+

6 Pages V   1 2 3 > » 
Fast ReplyReply to this topicStart new topic
1 User(s) are reading this topic (0 Guests and 0 Anonymous Users)
1 Members: OPPZeroCool

 




Gay Dating Service | Verizon Ringtones | Secured Loan | Credit Cards | Best Custom PHP Scripts
-
Lo-Fi Version 0.1483 sec    --    13 queries    GZIP Enabled
Time is now: 27th June 2007 - 06:23 PM