PDA

View Full Version : how can i change word in the all topics


mr.ehab
08-19-2009, 01:07 AM
hello,

How can i change word or link to another in the all topics in my forum

Marco van Herwaarden
08-19-2009, 10:53 AM
Is this a 1 time change?

mr.ehab
08-19-2009, 04:23 PM
no the word i want to change it, in the all topics in my forum

example

i want to change the link yahoo.com to vbulletin.com with out edit the topics one by one

--------------- Added 1250732711 at 1250732711 ---------------

is there any away or plugin to make it ?

Marco van Herwaarden
08-20-2009, 11:39 AM
You could run a query to manually change all the posts.

mr.ehab
08-20-2009, 01:20 PM
yes, but it's around 2000 topics , is there any easy away ?

Marco van Herwaarden
08-21-2009, 10:15 AM
You can do all posts in a single manual query:

UPDATE post
SET pagetext = REPLACE(pagetext, 'OLDTEXT', 'NEWTEXT')
WHERE pagetext LIKE '%OLDTEXT%';

PS Always create a backup vefore running manual update queries.