Quote:
Originally Posted by snobbymom
I keep getting an error saying there isn't a file at any of the links I put in.
|
I think those of you who are having issues with the bot not posting should read up on this post:
https://vborg.vbsupport.ru/showpost....&postcount=145
Make sure your cron script is set accordingly.
Quote:
Quote:
Originally Posted by JumpD
I installed this and it is fantastic. Thanks alot. I did have a problem with some code in the feed I am parsing. As well as keeping bold charecters intact. But I solved it by adding the following code.
I found
PHP Code:
$article['description'] = strip_tags(html_entity_decode(trim($article['description'])));
and added above.
PHP Code:
$article['description'] = str_replace('<b>', '[b]', $article['description']);
$article['description'] = str_replace('</b>', '[/b]', $article['description']);
$article['description'] = str_replace('</b>', '[/b]', $article['description']);
$article['description'] = str_replace('<b>', '[b]', $article['description']);
$article['description'] = str_replace('<br />', "\n\r", $article['description']);
$article['description'] = str_replace('<br />', "\n\r", $article['description']);
And everything was fine. Thanks again for the great hack. 
|
|
Ah, cool, I'll have to update the hack with a preg_replace version of this.

(although I think there is already vB3 code for it somewhere)