Page 1 of 42

[ABD] Full Syndication Suite 1.0.RC1 (RSS/ATOM)

Posted: Tue May 22, 2007 3:25 pm
by Schumi
MOD Title: Full Syndication Suite
MOD Description: This MOD adds a full RSS/ATOM feed functionality to syndicate posts or topics in various ways.
MOD Version: 1.0.RC1

MOD Download: full-syndication-suite-1.0.RC1.zip
Demo Board: not available

This MOD adds a full syndication suite to your board.
You can syndicate posts and topics for certain forums, categories, topics or the entire board as well as your own PM folders. Feeds for private forums are supported via HTTP AUTH identification.
There is also a custom feed generator provided which users can use to compile their very own and individual feeds.
Supported formats for feeds are RSS2 and ATOM.
The administrator has the possibility to disable syndication completely or to use the permission system to control access to feeds for specific users or groups.

Re: [BETA] Full Syndication Suite 0.9.3b (RSS/ATOM)

Posted: Tue May 22, 2007 4:03 pm
by angelside
I tested, It's have advanced RSS features... UCP, ACP etc..

Re: [BETA] Full Syndication Suite 0.9.3b (RSS/ATOM)

Posted: Wed May 23, 2007 4:35 am
by well-form
:cry: How can I install the MOD..
I have downloaded it...
I think I need to know how many code I have to modify....

well-form

Re: [BETA] Full Syndication Suite 0.9.3b (RSS/ATOM)

Posted: Wed May 23, 2007 12:28 pm
by Schumi
Unpack the archive and then open the file full-syndication-suite-0.9.3b/full_syndication_suite.xml in your web browser. You may also want to take a look into phpBB.com's documentation on how to install a MOD in MODX format.

Re: [BETA] Full Syndication Suite 0.9.3b (RSS/ATOM)

Posted: Fri May 25, 2007 8:12 am
by canitb
Hey, I need a rss for my forum and you'r mod seems nice.
I'm new in installing a MODX and I read the dokumentation.
But I'm missing some parts..

Was hoping you could explain me the baby steps in installing this mod?
like copy this to that, then do that... would be really nice for somone who is not that good in programming :?


Ok I feel kinda stoopid now, hehe.
I opened the xml file, and everything even the baby steps is there :o

Thanx !

Re: [BETA] Full Syndication Suite 0.9.3b (RSS/ATOM)

Posted: Fri May 25, 2007 12:31 pm
by ejellard
Can you syndicate (new) private messages (with HTTP authentication) with this system?

Re: [BETA] Full Syndication Suite 0.9.3b (RSS/ATOM)

Posted: Fri May 25, 2007 1:26 pm
by Schumi
ejellard wrote:Can you syndicate (new) private messages (with HTTP authentication) with this system?
Currently not, but that sounds like an reasonable feature. I'll add it with the next release.
canitb wrote:I opened the xml file, and everything even the baby steps is there :o
Feel free to ask if you need help with specific parts of the installation ;).

Re: [BETA] Full Syndication Suite 0.9.3b (RSS/ATOM)

Posted: Fri May 25, 2007 1:39 pm
by G.I. Suck
Even though I have 'S_SYNDICATION_METHOD' => $data['syndication_method'], installed in the ucp_prefs.php, I currently don't see this option in the user control panel.


Some assistance please?

Re: [BETA] Full Syndication Suite 0.9.3b (RSS/ATOM)

Posted: Fri May 25, 2007 1:44 pm
by G.I. Suck
Even though I have 'S_SYNDICATION_METHOD' => $data['syndication_method'], installed in the ucp_prefs.php, I currently don't see this option in the user control panel.


Some assistance please?

Re: [BETA] Full Syndication Suite 0.9.3b (RSS/ATOM)

Posted: Fri May 25, 2007 1:57 pm
by Schumi
Did you also perform the specific installation instructions for prosilver? There is another XML file in the templates folder (templates/prosilver.xml) which contains all template changes. Afterwards, remember to clear the board's cache ;).

Re: [BETA] Full Syndication Suite 0.9.3b (RSS/ATOM)

Posted: Fri May 25, 2007 2:03 pm
by G.I. Suck
D'oh!!!

Thanks for that... I'll do that right now.

Re: [BETA] Full Syndication Suite 0.9.3b (RSS/ATOM)

Posted: Fri May 25, 2007 3:41 pm
by JunglistPerfection
I just finished installing the mod and I want to say that I really like the mod. Very nice. :D

Re: [BETA] Full Syndication Suite 0.9.3b (RSS/ATOM)

Posted: Fri May 25, 2007 6:06 pm
by Highway of Life
Hi Tuk!!

Great to see this MOD on here!

Re: [BETA] Full Syndication Suite 0.9.3b (RSS/ATOM)

Posted: Fri May 25, 2007 6:38 pm
by G.I. Suck
Still having problems here..


SQL ERROR [ mysqli ]

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 3 [1064]

SQL

SELECT forum_name FROM phpbb3_forums WHERE forum_id =

BACKTRACE


FILE: includes/db/mysqli.php
LINE: 118
CALL: dbal->sql_error()

FILE: includes/functions_syndication.php
LINE: 90
CALL: dbal_mysqli->sql_query()

FILE: generate_feed.php
LINE: 149
CALL: generate_feed_details()

Re: [BETA] Full Syndication Suite 0.9.3b (RSS/ATOM)

Posted: Fri May 25, 2007 6:53 pm
by Schumi
Thanks for reporting, that's a bug.
Open includes/functions_syndication.php, find

Code: Select all

					$keys = array_values($forum_ids);
and replace this line with

Code: Select all

					$keys = array_keys($forum_ids);
The error should be gone after that.