XF 1.5 Import from VB - Media - Youtube convert

If it's just the bb code tags, you can do it with two simple queries.

Code:
UPDATE xf_post SET message = REPLACE(message, '[youtube]', '[media=youtube]');

UPDATE xf_post SET message = REPLACE(message, '[/youtube]', '[/media]');

That assumes the tags in VB are youtube /youtube.

Take a backup first.
 
Top Bottom