Code: Select all
PHP Notice: in file /includes/mods/smixmods_feed_news_center.class.php on line 589: Undefined variable: id
Same here, I've been looking for something like this for ages. But I need it to link back to original story, and I need my users to be able to post replies to the thread.rabbmasterflash wrote:I am definitely waiting for that, I love this mod but unless it has a link back to the original story I can't use it
It´s already possibleWhen this mod is complete, would it be possible for different RSS feeds to be automatically posted in different forums within phpbb3?
Code: Select all
$this->populate($id);
Code: Select all
$this->populate($this->feed_id);
Code: Select all
//'post_time' => $current_time,
// SmiX.MODs feed news center [+]
'post_time' => ($data['post_time']) ? $data['post_time'] : $current_time,
// SmiX.MODs feed news center [-]
Code: Select all
[phpBB Debug] PHP Notice: in file /includes/mods/smixmods_feed_news_center.class.php on line 129: simplexml_load_file(http://www.facebook.com/feeds/notes.php?id=43253796601&viewer=612642150&key=e4845d7f83&format=rss20) [function.simplexml-load-file]: failed to open stream: Permission denied
[phpBB Debug] PHP Notice: in file /includes/mods/smixmods_feed_news_center.class.php on line 129: simplexml_load_file() [function.simplexml-load-file]: I/O warning : failed to load external entity "http://www.facebook.com/feeds/notes.php?id=43253796601&viewer=612642150&key=e4845d7f83&format=rss20"
I just noticed html_to_bbcode isn't being used. When I addSmix wrote:@benmac
What´s the URL of the feed which is not working for you?
@Apophis72
Thanks! ... I´ve prepared a forum for translations on my board, where you can post it ... I´ll link it always with the latest version in the first post ...
@dramacius
Thanks for reporting of this issue. I´ve never seen this bug before. What´s your PHP version? simplexml_load_file is defaultly enabled in PHP5 ... You might try to consult that problem with your server hosting - why is not simplexml_load_file function not working ...
It´s still possible to run this MOD working without this functions - do you have fopen or cURL on your server enabled? (check phpinfo in ACP).
@madmartyau
Thanks for report, yeah, I´ll need to strip all tags but not those used in html_to_bbcode ... Will check it soonly
Thanks for reports ...
Code: Select all
$message = $this->html_to_bbcode($message);
Code: Select all
// templates RSS / ATOM has different indexes for messages
$temp = ( ($this->feed_type == 'rss') || ($this->feed_type == 'rdf') )? 'description' : 'content';
$message = $this->feed_name."\n\n".$this->items[$i][$temp];