MyBB Community Forums

Full Version: Problem with "RSS To Post"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have the following problem with the plugin "RSS To Post" from DennisTT:
http://dennistt.net/forum/showthread.php?tid=452
It would be very nice if someone could help me.
Thanks
This could possibly be a error with html_entity_decode.
You could try changing:
$message = html_entity_decode($item_data['description']);
to:
$message = html_entity_decode($item_data['description'], ENT_COMPAT, 'UTF-8');
If that doesn't work. Try:
$message = $item_data['description'];
Same with this line, change:
$subject = html_entity_decode($item_data['title']);
to:
$subject = html_entity_decode($item_data['title'], ENT_COMPAT, 'UTF-8');
If that doesn't work. Try:
$subject = $item_data['title'];
Thanks it works.
I get the short error message:

Warning: cannot yet handle MBCS in html_entity_decode()! in
../plugins/rss2post.php on line 286

But it works after that.
Is this bad for the server?
I have only the tested to change the first line you said.

Thanks for help

PS: Must I deactivate and activate the plugin every time I change the code?
It works even though your server doesn't support Multibyte extension?..
If it works you can use @ infront of html_entity_decode

No you shouldn't have to.
Thanks now it works.
One more question:

Why is on http://www.schon-versichert.de/Wirtschaf...-t-73.html only 1/1/2 sentences displayed and on http://www.schon-versichert.de/Unfallver...html#pid36 the whole text?