Repository is developed by The SmartFactory (http://www.smartfactory.ca), a division of InBox Solutions (http://www.inboxsolutions.net)

Syndication

Syndication

X-Reaggregator



Description:

Resized ImageX-Reaggregator based on XoopsHeadlines includes a nice feature for Re-aggregating your RSS Feeds into your community from other sources, it includes a .htaccess SEO as well as an RSS Cache and RSS Snooping by Setting in your preferences.

This for example is useful with your X-Torrent Installation as you can add other X-Torrent RSS Feeds to it and allow your users to with the RSS Torrent acquire Aggregate torrents from many sources with the Feed Snooping the composite group of feeds with snooping quantities for the amount of items in the RSS Feed. Now with RSS Mashables.

Download the X-Reaggregator 2.16 here from Chronolabs Australia.

Features:
  • RSS Syndication
  • Based on XoopsHeadlines
  • Outfeed with RSS Snooping
  • Multsite Support
  • Collaboration Methods
  • Grouped Mashables
  • Categories
  • Keyword Filtering
  • RSS Mashables
  • Categories
  • Tabs
  • Category Snoop
  • Mashable Snoop

System Requirements:
  • Xoops 2.0.x
  • Xoops 2.3.x

Download History:
RSS Fixes Templating Fixes Sort Added to RSS Snoop 2008/07/14 Bad Characters Filter For Snoop 2009/05/20 * Mashables Feature Added * Bug Fixes 2009/06/04 Name Bug Fixed Categories Added Form Error Fixed (Weight) 2009/09/23 * Snoops Fixed * Categories Added * Mashables Added

Submitter: wishcraft
Publisher: Wishcraft (Simon Roberts)
Updated On: 2009/09/23

Version: 2.52
Release Status: 
Downloads: 4294
File Size: 72.78 Kb
Home Page: Chronolabs

Rating:   (0 Votes)

Reviews:  (0)

Mirrors Available: 0

Download Times:
Modem(56k) : 12s
ISDN(64k) : 10s
DSL(768k) : 0.86s
LAN(10M) : 0.07s
 
Price: Free | Platform: 2.0.x | License: GNU General Public License (GPL) (v. 2.0) | Limitations: None

XOOPS Web Application System User Reviews

Other files by: wishcraft
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)
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)

X-Reaggregator © copyright 2025 https://xoops.org

The comments are owned by the author. We aren't responsible for their content.
user

 Re: X-Reaggregator 2.02 - Templating Fix


Quick Templating Fix

xreaggregator_index.html


<
div style="clear:both;">&nbsp;div>

 
user

 X-Reaggregator 2.07 - RSS Bad Chars Filter


RSS Bad Char Filter

Sometimes the feed will contain bad characters for this in RSS feeds is bad chars, this is the final fix to this code it is only changes to files..

/xeaggregator/class/xreaggregatorrenderer.php

Step 1

// At Line 131 - Add the following
$channel_data $this->xr_htmlspecialchars($this->xr_htmlspecialchars_decode($channel_data));
$image_data $this->xr_htmlspecialchars($this->xr_htmlspecialchars_decode($image_data));
$items $this->xr_htmlspecialchars($this->xr_htmlspecialchars_decode($items));


Step 2

Below the function xreaggregatorRenderer.renderRSS add the following 2 functions:

function xr_htmlspecialchars($obj_items)
    {
        foreach(
$obj_items as $key => $item)
        {
            if (
is_array($item))
            {
                
$obj_items[$key] = $this->xr_htmlspecialchars($item);
            } else {
                
$obj_items[$key] = htmlspecialchars($item);
            }
        }

        return 
$obj_items;    
    }
    
    function 
xr_htmlspecialchars_decode($obj_items)
    {
        foreach(
$obj_items as $key => $item)
        {
            if (
is_array($item))
            {
                
$obj_items[$key] = $this->xr_htmlspecialchars_decode($item);
            } else {
                
$obj_items[$key] = htmlspecialchars_decode($item);
            }
        }

        return 
$obj_items;    
    }

 
user

 Re: X-Reaggregator 2.07 - RSS Bad Chars Filter


Errors when used with XOOPS 2.3 final

Notice: Undefined index: id in file /modules/xreaggregator/index.php line 95
Notice: Only variable references should be returned by reference in file /modules/xreaggregator/include/functions.php line 12
Warning: fopen() [function.fopen]: php_network_getaddresses: getaddrinfo failed: No such host is known. in file /modules/xreaggregator/class/xreaggregatorrenderer.php line 63
Warning: fopen(https://xoops.org/backend.php) [function.fopen]: failed to open stream: No such file or directory in file /modules/xreaggregator/class/xreaggregatorrenderer.php line 63

 
user

 Re: X-Reaggregator 2.07 - RSS Bad Chars Filter


Hi btesec,

how are you? that is something you will have to discuss with your hosting provider.. you can attempt to put this line before line 63 in /modules/xreaggregator/class/xreaggregatorrenderer.php line 63

Otherwise you have to get them to turn on 'allow_url_fopen' in php.ini on the server.

ini_set('allow_url_fopen',true);

 
user

 Re: X-Reaggregator 2.09


Errors with XOOPS 2.3.1

On the admin side;
- Unable to edit either of the existing feeds pre-populated in the module
- Unable to change any of the block display settings or weights
- Unable to add any new feeds

No errors reported in debug mode for PHP or Smarty

No problems or errors on the user side

Same issues in IE7 and FF

XOOPS Version - XOOPS 2.3.1

PHP Version - 5.2.1
safe_mode - Off
register_globals - Off
magic_quotes_gpc - On
allow_url_fopen - On
fsockopen - On
allow_call_time_pass_reference - Off

MySQL Version - 5.0.32-Debian_7

OS Version - Linux

Any help would be greatly appreciated!
Thanks ahead of time

 
user

 X-Reaggregator 2.22


Final release :: http://cid-6580d2a11c091017.skydrive.live.com/self.aspx/XOOPS%20Modules/X-Reaggregator/Source%20Code/xoops2%5E_xreaggregator%5E_2.22.zip

 
Author Thread

Login

Top Module Downloads

Who's Online

155 user(s) are online (1 user(s) are browsing Module Repository)


Members: 0


Guests: 155


more...

Donat-O-Meter

Stats
Goal: AU$15.00
Due Date: Jul 31
Gross Amount: AU$0.00
Net Balance: AU$0.00
Left to go: AU$15.00
Make donations with PayPal!