XF 1.2 BBcode YouTube embeds

Vidmarc

Member
Since importing from vB4, all of our YouTube embedded videos are appearing like this:

Code:
[YOUTUBE]8_ocrenOCPo[/YOUTUBE]

Any suggestions as to how to fix it?
 
For simple content such as that, you can use an SQL query, which is what I did.

Code:
UPDATE xf_post SET message = REPLACE(message,'current_content','new_content');

Take a backup first though.
 
No idea what I need to do to replace those BB codes. Can anybody help please?

I guess I need to search for the first and last parts of the code and replace these?

[YOUTUBE]

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

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

Rebuild the search index once done.
 
Top Bottom