PDA

View Full Version : Need a full bbcode parser incl. smilies, will pay for it!


isnichwahr
06-24-2007, 08:54 PM
hi, i want to display some posts from my vb3 forum on an external page, this already works, but i dont know how to handle the bbcodes especially the smilies

can someone help me with this problem? ive tried a few free bbcode parser scripts, but none of them works fine (even not the smilies)

can i use the vb3 bbcode engine or have someone the extracted script?

i really need this code so i will pay for it, i hope someone can help me

EnIgMa1234
06-24-2007, 09:00 PM
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$variable = $parser->do_parse($variable,1, 1, 1, 1, 1);

And Add Under:
require_once('./global.php');
THIS:
require_once('./includes/class_bbcode.php');

at that to the script

its what i used for my rules hack

isnichwahr
06-24-2007, 09:12 PM
thank you sooooo much!

is there any way to do you a favour?

EnIgMa1234
06-24-2007, 09:14 PM
thats up to you but im just here to help :D

isnichwahr
06-24-2007, 09:20 PM
paypal account?

jeremyalyea
12-06-2010, 08:19 PM
Where is this part supposed to go?
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$variable = $parser->do_parse($variable,1, 1, 1, 1, 1);

kh99
12-06-2010, 08:27 PM
That's the part that does the parsing, so put it wherever you need it (but it needs to be in php code that includes vBulletin's global.php).

jeremyalyea
12-07-2010, 01:20 AM
I just added that part to my external file, and its is working fine. I used BBcodes to align and resize images in posts. I am using my rss feed to feed the frontpage of my site with news stories. Thanks for everyone's help.