G GKBlaze Member Sep 21, 2017 #1 Can someone write me the query where I can search for a specific image link that appear in all threads? Thanks for your help.
Can someone write me the query where I can search for a specific image link that appear in all threads? Thanks for your help.
AndyB Well-known member Sep 21, 2017 #2 You might like this add-on: https://xenforo.com/community/resources/advanced-search.5602/ Upvote 0 Downvote
G GKBlaze Member Sep 21, 2017 #3 AndyB said: You might like this add-on: https://xenforo.com/community/resources/advanced-search.5602/ Click to expand... I just need to search for one single image so a query will do the job. Thanks for the recommendation though. Upvote 0 Downvote
AndyB said: You might like this add-on: https://xenforo.com/community/resources/advanced-search.5602/ Click to expand... I just need to search for one single image so a query will do the job. Thanks for the recommendation though.
G GKBlaze Member Sep 21, 2017 #4 For those that need the query Code: SELECT * FROM xf_post WHERE message LIKE '%imagelink%' and if you need to replace the image link or any content with something else. Code: UPDATE xf_post SET message = REPLACE(message, 'originalcontent', 'replacewiththis') WHERE INSTR(message, 'originalcontent') > 0; Upvote 0 Downvote
For those that need the query Code: SELECT * FROM xf_post WHERE message LIKE '%imagelink%' and if you need to replace the image link or any content with something else. Code: UPDATE xf_post SET message = REPLACE(message, 'originalcontent', 'replacewiththis') WHERE INSTR(message, 'originalcontent') > 0;