Robru Well-known member Jan 2, 2017 #1 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/
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/
P Paul B XenForo moderator Staff member Jan 2, 2017 #2 Code: UPDATE xf_post SET message = REPLACE(message,'current_content','new_content'); Just change current_content and new_content to suit. Upvote 0 Downvote
Code: UPDATE xf_post SET message = REPLACE(message,'current_content','new_content'); Just change current_content and new_content to suit.
Robru Well-known member Jan 2, 2017 #3 And how for links in signatures and conversations? Attachments upload_2017-1-2_20-39-20.webp 12.7 KB · Views: 4 Upvote 0 Downvote
P Paul B XenForo moderator Staff member Jan 2, 2017 #4 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'); Upvote 0 Downvote
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');