imno007 Well-known member Jun 29, 2013 #1 After converting from SMF, I've discovered that every single quotation mark (double quote) on my Xenforo forums has been replaced with " Is there a simple database query I could run that would replace every instance of " with quotation marks? Thanks
After converting from SMF, I've discovered that every single quotation mark (double quote) on my Xenforo forums has been replaced with " Is there a simple database query I could run that would replace every instance of " with quotation marks? Thanks
Jeremy in memoriam 1991-2020 Jun 29, 2013 #2 Use Kier's resource to replace post content. If it requires RegEx: (") Replace it with " and you should be good. Upvote 0 Downvote
Use Kier's resource to replace post content. If it requires RegEx: (") Replace it with " and you should be good.
P Paul B XenForo moderator Staff member Jun 29, 2013 #3 If it's a simple replacement for identical content, you could just use a query. Code: UPDATE xf_post SET message = REPLACE(message,'current_content','new_content'); Take a backup before doing so though. Upvote 0 Downvote
If it's a simple replacement for identical content, you could just use a query. Code: UPDATE xf_post SET message = REPLACE(message,'current_content','new_content'); Take a backup before doing so though.
imno007 Well-known member Jun 29, 2013 #4 Thanks, Brogan, will give it a try soon and see how it goes. Upvote 0 Downvote