Log in

View Full Version : Parsing [video] bbcodes in own script


tscargo
07-05-2010, 09:46 PM
Hi,

I am working on some custom php-scripts. I used to parse bbcode in some db-fields using this function:

//parse bbcode to html
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$content = $parser->parse($post['pagetext']);

Unfortunately this does not parse any video bbcodes.

How should i make this parse all tags ?

Thanks,

Taco

--------------- Added 1278373095 at 1278373095 ---------------

Found out it was forum permission related....

NeDra
09-14-2010, 01:57 PM
Thank a lot! your code helped me ^^
I needed the same thing as you.

Here, we use bbcode made custom and it parsing the custom code perfectly.
I haven't tried if the
http://www.youtube.com/watch?v=eOUq4Z6R7xI
where also being parsed correctly, but i figure the video one will since it came with vbulletin?

Sorry, I guess you needed that info 3 months ago, if your still having an issue, let me know and i will peak at it and try to figure out what the issue is.

I was using the $text=parse_wysiwyg_html($text); method but that wasn't parsing the bbcode at all.

Kyojii
04-13-2012, 10:42 PM
Hi,

I am working on some custom php-scripts. I used to parse bbcode in some db-fields using this function:

//parse bbcode to html
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$content = $parser->parse($post['pagetext']);

Unfortunately this does not parse any video bbcodes.

How should i make this parse all tags ?

Thanks,

Taco

--------------- Added 1278373095 at 1278373095 ---------------

Found out it was forum permission related....

Does anyone happen to know what permission this is? Found my problem, it's completely unrelated to the parsing it's because the option parameter for the video is missing.