RSS Feed/News BBCode replacement not taking effect after SQL update (IPB to XenForo migration)

Status
Not open for further replies.

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
28,416
Points
823

Reputation:

Hello,
I recently migrated my forum from Invision Power Board (IPB) to XenForo. As part of the cleanup process, I ran the following SQL queries directly in the database to replace old BBCode tags:
Code:

Code:
UPDATE xf_post
SET message = REPLACE(message, '[hide]', '[REPLYTHANKS]')
WHERE message LIKE '%[hide]%';

UPDATE xf_post
SET message = REPLACE(message, '[/hide]', '[/REPLYTHANKS]')
WHERE message LIKE '%[/hide]%';
The queries executed without error, and the xf_post table is quite large (over 400 MB). However, no...

Read more

Continue reading...
 
Status
Not open for further replies.
Top