Quote:
Originally Posted by majjed2008
thank you very much i am going to do that , but i fined the the picture use wrong URL how to change it please ? do i have to thread and edited it manually i have very big forum more than 300K thread ?
|
If you have made a mistake, or simply moved the forum or the images to another place, you may use phpmyadmin and craft a query, like:
Code:
UPDATE post SET pagetext=REPLACE(pagetext, 'old', 'new')
e.g.:
Code:
UPDATE post SET pagetext=REPLACE(pagetext, 'http://www.abc.com/', 'http://www.def.net/')
or:
Code:
UPDATE post SET pagetext=REPLACE(pagetext, '/imported/', '/images/new-site/')
It is unavoidable to make first a backup of the involved table, then a few tests, and if everything is ok, issue the final query.