Features:
System Requirements:
Download History:
=== 1.30rc Bug Fix === * Tracker Implemented === 1.06 Bug Fixes === * print_r statements remmed out * polling times added to singlefile.php 2008/04/04 === 1.32 Bug Fix === * Visit.php - Tracker On Fly Editing fix for open tracker 2008/06/16 * RSS Feeds * .htaccess SEO added * No Tracker specified Fixed * Throttle Marked (Experimental) * Images Updated 2008/07/12 • RSS Feeds Fixed (New htaccess options added) • Agent Control - With Preference Option. • Minor Templating Changes |
Submitter: wishcraft
Publisher: Simon Roberts
Updated On: 2009/03/27
Version: 3.40
Release Status:
Downloads: 4331
File Size: 444 Kb
Home Page: Chronolabs International
Rating:
![]() Reviews: ![]() Mirrors Available: 0 Download Times:
Modem(56k) : 1.2min
ISDN(64k) : 1.1min DSL(768k) : 5s LAN(10M) : 0.40s |
||||
Price: Free |
Platform: 2.3.x |
License: GNU General Public License (GPL) (v. 2.0) |
Limitations: None
|
|||||
MyAlbum-p
(2012/03/13)
|
Flowplayer
(2012/03/13)
|
X-REST API
(2012/03/13)
|
UI Tabs
(2012/03/13)
|
Sexy
(2012/03/13)
|
Benchmark
(2012/03/13)
|
Maquee 1.03
(2012/03/13)
|
XQuiz
(2012/03/13)
|
MatrixStream 1.06 (Commerical)
(2011/11/22)
|
Pageflip 1.03 RC - Multilingual Books for XOOPS
(2011/09/22)
|
IRC 1.02
(2011/08/10)
|
TwitterBomb 1.12
(2011/08/10)
|
Prochatrooms 7.0
(2011/05/08)
|
Membership 1.02
(2011/02/06)
|
Webcams 1.09
(2011/02/04)
|
Xpayment 1.18
(2011/01/21)
|
XinCodes 1.02
(2010/12/15)
|
Profile (Verbose) 1.62
(2010/12/15)
|
Dates 1.45
(2010/11/08)
|
X-Center
(2010/09/29)
|
Author | Thread |
---|
This is a quick fix for the RSS Feed.
/xtorrent/rss/feed.php
//Line 38:-
$download['url'] = XOOPS_URL.'/modules/'.$xoopsModule->dirname().'/visit.php?agree=1&lid='.$myrow['lid'];
You may also like to add guid to it:
//After Line 115:-
<guid> echo $item['dossier_url']; ?>
This will place a 'read more' to the torrent page rss feed. Now for the final fix a category.. This is a little bit more involved.
//Line 30:-
$result = $xoopsDB->query("SELECT a.lid, a.cid, a.title, a.date, a.description, a.hits, b.title as category FROM " .
$xoopsDB->prefix('xtorrent_downloads'). " a INNER JOIN " . $xoopsDB->prefix('xtorrent_cat') .
" b ON a.cid = b.cid $pif ORDER BY published DESC ", $numitems, 0);
// Line 38 & 40 Change :-
$download['url'] = XOOPS_URL.'/modules/'.$xoopsModule->dirname().'/visit.php?agree=1&lid='.$myrow['lid'].'&cid='.$myrow['cid'];
$download['dossier_url'] = XOOPS_URL.'/modules/'.$xoopsModule->dirname().'/singlefile.php?lid='.$myrow['lid'].'&cid='.$myrow['cid'];
// Add at line 42 :-
$download['category'] = $myrow['category'];
//Add after line 117
<category> echo $item['category']; ?>
And that is that for my quick bug fix to the x-torrent feed