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:
The queries executed without error, and the
Read more
Continue reading...
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]%';
xf_post
table is quite large (over 400 MB). However, no...Read more
Continue reading...