Here is the Syndication php file that generates the "xml" feed:
No worries mate, not sure how much help I can be but I'll give it my best shot.
Did you write most of that Objective C by yourself? That's a big effort!
PHP Code:
<?php
/**
* MyBB 1.4
* Copyright © 2008 MyBB Group, All Rights Reserved
*
* Website: http://www.mybboard.net
* License: http://www.mybboard.net/about/license
*
* $Id: syndication.php 4383 2009-06-18 11:25:58Z Tomm $
*/
define("IN_MYBB", 1);
define("IGNORE_CLEAN_VARS", "fid");
define("NO_ONLINE", 1);
define('THIS_SCRIPT', 'syndication.php');
require_once "./global.php";
// Load global language phrases
$lang->load("syndication");
// Load syndication class.
require_once MYBB_ROOT."inc/class_feedgeneration.php";
$feedgenerator = new FeedGenerator();
// Load the post parser
require_once MYBB_ROOT."inc/class_parser.php";
$parser = new postParser;
// Find out the thread limit.
$thread_limit = intval($mybb->input['limit']);
if($thread_limit > 50)
{
$thread_limit = 50;
}
else if(!$thread_limit || $thread_limit < 0)
{
$thread_limit = 20;
}
// Syndicate a specific forum or all viewable?
if(isset($mybb->input['fid']))
{
$forumlist = $mybb->input['fid'];
$forumlist = explode(',', $forumlist);
}
else
{
$forumlist = "";
}
// Get the forums the user is not allowed to see.
$unviewableforums = get_unviewable_forums(true);
$inactiveforums = get_inactive_forums();
$unviewable = '';
// If there are any, add SQL to exclude them.
if($unviewableforums)
{
$unviewable .= " AND fid NOT IN($unviewableforums)";
}
if($inactiveforums)
{
$unviewable .= " AND fid NOT IN($inactiveforums)";
}
// If there are no forums to syndicate, syndicate all viewable.
if(!empty($forumlist))
{
$forum_ids = "'-1'";
foreach($forumlist as $fid)
{
$forum_ids .= ",'".intval($fid)."'";
}
$forumlist = "AND fid IN ($forum_ids) $unviewable";
}
else
{
$forumlist = $unviewable;
$all_forums = 1;
}
// Find out which title to add to the feed.
$title = $mybb->settings['bbname'];
$query = $db->simple_select("forums", "name, fid, allowhtml, allowmycode, allowsmilies, allowimgcode", "1=1 ".$forumlist);
$comma = " - ";
while($forum = $db->fetch_array($query))
{
$title .= $comma.$forum['name'];
$forumcache[$forum['fid']] = $forum;
$comma = ", ";
}
// If syndicating all forums then cut the title back to "All Forums"
if($all_forums)
{
$title = $mybb->settings['bbname']." - ".$lang->all_forums;
}
// Set the feed type.
$feedgenerator->set_feed_format($mybb->input['type']);
// Set the channel header.
$channel = array(
"title" => $title,
"link" => $mybb->settings['bburl']."/",
"date" => time(),
"description" => $mybb->settings['bbname']." - ".$mybb->settings['bburl']
);
$feedgenerator->set_channel($channel);
// Get the threads to syndicate.
$query = $db->simple_select("threads", "subject, tid, dateline, firstpost", "visible='1' AND closed NOT LIKE 'moved|%' ".$forumlist, array('order_by' => 'dateline', 'order_dir' => 'DESC', 'limit' => $thread_limit));
// Loop through all the threads.
while($thread = $db->fetch_array($query))
{
$items[$thread['tid']] = array(
"title" => $thread['subject'],
"link" => $channel['link'].get_thread_link($thread['tid']),
"date" => $thread['dateline'],
);
$firstposts[] = $thread['firstpost'];
}
if(!empty($firstposts))
{
$firstpostlist = "pid IN(".$db->escape_string(implode(',', $firstposts)).")";
$query = $db->simple_select("posts", "message, edittime, tid, fid", $firstpostlist, array('order_by' => 'dateline', 'order_dir' => 'desc'));
while($post = $db->fetch_array($query))
{
$parser_options = array(
"allow_html" => $forumcache[$post['fid']]['allowhtml'],
"allow_mycode" => $forumcache[$post['fid']]['allowmycode'],
"allow_smilies" => $forumcache[$post['fid']]['allowsmilies'],
"allow_imgcode" => $forumcache[$post['fid']]['allowimgcode'],
"filter_badwords" => 1
);
$items[$post['tid']]['description'] = $parser->parse_message($post['message'], $parser_options);
$items[$post['tid']]['updated'] = $post['edittime'];
$feedgenerator->add_item($items[$post['tid']]);
}
}
// Then output the feed XML.
$feedgenerator->output_feed();
?>
(20-01-2010, 09:47pm)sgaheer Wrote: thanks for your help.
No worries mate, not sure how much help I can be but I'll give it my best shot.

Did you write most of that Objective C by yourself? That's a big effort!
Licence Back!