XF 1.5 Change the internal forum links with MySQL

Robru

Well-known member
Which mysql command I can use to change the internal forum links:

From:
Code:
https://www.caviaforum.nl/threads/
to:
Code:
https://www.caviaforum.nl/community/threads/
 
Code:
UPDATE xf_post SET message = REPLACE(message,'current_content','new_content');

Just change current_content and new_content to suit.
 
Just change the table/field like so:

Code:
UPDATE xf_user_profile SET signature = REPLACE(signature,'current_content','new_content');

UPDATE xf_conversation_message SET message = REPLACE(message,'current_content','new_content');
 
Top Bottom