Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > BT.Manager (phpMyBitTorrent) > Mods & Themes
Reply
  #1  
Old 9th December 2008, 15:00
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default [PMBT 2.x]Torrent snatcher
Welcome to Torrent Snatcher,
With this script you can... grab all the Torrents from the most known directories on the web, inluding Mininova, The Pirate Bay and Fulldls

It is still not 100% perfect yet !

  • Latest at Mininova.org
  • Enter your own address for Mininova.org
  • Search Mininova.org for your Torrents
  • Choose By category at Mininova.org
  • Search Fulldls.com
  • Choose By category at Fulldls.com
  • Latest fulldls torrents
  • Latest The Piratebay torrents
  • Choose By category thepiratebay.org
  • Latest from BTJunkie
Attached Files
File Type: php lastRSS.php (6.0 KB, 64 views)
File Type: php outside.php (69.9 KB, 30 views)
__________________
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
The Following 5 Users Say Thank You to joeroberts For This Useful Post:
Azurious (8th February 2009), Enza Gallo (24th August 2009), Fynnon (21st December 2008), pdq (9th December 2008), sirusuk (6th February 2010)
  #2  
Old 8th February 2009, 10:23
Azurious's Avatar
Azurious Azurious is offline
Senior Member
 
Join Date: Jan 2009
India
Posts: 60
Wink
Thanks but giving lots error & not snatching any torrents from any site

Code:
WWE Friday Night Smackdown 02 06 09 WS SDTV XviD-MoRPH0-[rarbg]  [592/1654]
Warning:  copy(massupload/WWE_Friday_Night_Smackdown_02_06_09_WS_SDTV_XviD-MoRPH0-.torrent) [function.copy]: failed to open stream: Permission denied in /home/xxx/public_html/outside.php on line 1658

Warning:  filesize() [function.filesize]: stat failed for massupload/WWE_Friday_Night_Smackdown_02_06_09_WS_SDTV_XviD-MoRPH0-.torrent in /home/xxx/public_html/outside.php on line 180

Fatal error:  Maximum execution time of 60 seconds exceeded in /home/xxx/public_html/outside.php on line 194


also i get many other errors like array

also can u add option to set Categories while selecting each torrents

Thanks for this
Reply With Quote
  #3  
Old 8th February 2009, 13:22
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
make sure that massupload folder is writable.
__________________
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
  #4  
Old 8th February 2009, 16:36
Azurious's Avatar
Azurious Azurious is offline
Senior Member
 
Join Date: Jan 2009
India
Posts: 60
Default
Quote:
Originally Posted by joeroberts View Post
make sure that massupload folder is writable.


thanks for reply but still its not working for any site

phpMyBitTorrent ErrorSELECT id, name FROM torrent_categories ORDER BY sort_index, id ASC


i have made my custom categories
Reply With Quote
  #5  
Old 8th February 2009, 17:16
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
in outside.php find
PHP Code:
                if (!entry_exists($scrape,"files(dictionary)","Scrape")) {
                        return 
bterror(_bttrackerdata,_btscrapeerror,false);
                } elseif (!
entry_exists($scrape,"files/".$infohash_hex."(Dictionary)","Scrape")) {
                        return 
bterror(_bttorrentnotregistered,_btscrapeerror,false);
                } else {
                        
#Check seeder
                        
$seeders entry_read($scrape,"files/".$infohash_hex."/complete(Integer)","Scrape");
                        
#if ($seeders <= 0 AND $force_upload) return bterror(_btnoseedersontracker,_btnoseedersontracker,false);
                        
if ($seeders <= AND !$force_upload) return bterror(_btnoseedersontracker,_btscrapeerror,false);
                        
$leechers entry_read($scrape,"files/".$infohash_hex."/incomplete(Integer)","Scrape");
                        
$completed entry_read($scrape,"files/".$infohash_hex."/downloaded(Integer)","Scrape");
                } 
and replace it with
PHP Code:
                if (!entry_exists($scrape,"files(dictionary)","Scrape")) {
                        return 
bterror(_bttrackerdata,_btscrapeerror,false);
                } elseif (!
entry_exists($scrape,"files/a".$infohash_hex."(Dictionary)","Scrape")) {
                        return 
bterror(_bttorrentnotregistered,_btscrapeerror,false);
                } else {
                        
#Check seeder
                        
$seeders entry_read($scrape,"files/a".$infohash_hex."/complete(Integer)","Scrape");
                        
#if ($seeders <= 0 AND $force_upload) return bterror(_btnoseedersontracker,_btnoseedersontracker,false);
                        
if ($seeders <= AND !$force_upload) return bterror(_btnoseedersontracker,_btscrapeerror,false);
                        
$leechers entry_read($scrape,"files/a".$infohash_hex."/incomplete(Integer)","Scrape");
                        
$completed entry_read($scrape,"files/a".$infohash_hex."/downloaded(Integer)","Scrape");
                } 
lol sorry this was done for PMBT 1.2 I forgot to update that part
__________________
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
  #6  
Old 8th February 2009, 20:56
Azurious's Avatar
Azurious Azurious is offline
Senior Member
 
Join Date: Jan 2009
India
Posts: 60
Default
Thanks alot

Enter your own address for Mininova.org

when i put address i can see all torrents but there check all is not working & also when i click on go just this comes & no torrents are uploaded

Torrents Snatcher

Welcome to Torrent Snatcher,
With this script you can... grab all the Torrents from the most known directories on the web, inluding Mininova, The Pirate Bay and Fulldls
Please do not abuse of it.


Array
also can i select category when ticking selecting torrents
Reply With Quote
  #7  
Old 8th February 2009, 22:12
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
this hole thing was put here for me to get help with it not for me to fix it my self because I did not have the time!
__________________
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
  #8  
Old 8th February 2009, 22:36
Azurious's Avatar
Azurious Azurious is offline
Senior Member
 
Join Date: Jan 2009
India
Posts: 60
Default
Quote:
Originally Posted by joeroberts View Post
this hole thing was put here for me to get help with it not for me to fix it my self because I did not have the time!
:sorry::unknown:
Reply With Quote
  #9  
Old 6th April 2009, 23:07
fireman fireman is offline
IonCube-R
 
Join Date: Oct 2008
Posts: 99
Smile Help
I have the same problem with this i know you are busy but could you please fix it if its in the script. Thanks for all you do for everyone it is much appreciated.
Quote:
Originally Posted by Azurious View Post
Thanks alot

Enter your own address for Mininova.org

when i put address i can see all torrents but there check all is not working & also when i click on go just this comes & no torrents are uploaded

Torrents Snatcher

Welcome to Torrent Snatcher,
With this script you can... grab all the Torrents from the most known directories on the web, inluding Mininova, The Pirate Bay and Fulldls
Please do not abuse of it.


Array
also can i select category when ticking selecting torrents
Reply With Quote
  #10  
Old 28th August 2009, 22:39
coco coco is offline
Member
 
Join Date: Jan 2009
Default
Posts: 1
Default
thanks
Reply With Quote
Reply

Tags
2xtorrent , pmbt , snatcher

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
Today torrent and last week torrent tsse5.6 Claude33 Template Shares 2 18th May 2010 19:29
Problem in PMBT 2.0.4 underx BT.Manager (phpMyBitTorrent) 2 24th January 2010 14:05
[PMBT] T15 v.0.9 wMan Sell & Buy 9 30th May 2009 13:01
[PMBT 2.0.3]Latest Torrent Mod for index page Azurious BT.Manager (phpMyBitTorrent) 9 25th January 2009 21:15
[PMBT v2.0]EI joeroberts Mods & Themes 0 21st October 2008 08:32



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