I greet everyone and especially the support.
How do you change links in bulk posts after moving a forum from one domain to another (eg from forum.sebesdileni.cz to forum.etiq.cz)? Through some plugin or in phpMyAdmin?
Do a search and replace with phpMyAdmin (or similar) directly in the database (probably posts_table)Raziel-CZ wrote: Tue Feb 15, 2022 8:22 am How do you change links in bulk posts after moving a forum from one domain to another (eg from forum.sebesdileni.cz to forum.etiq.cz)? Through some plugin or in phpMyAdmin?
123
might be abc
or thank you
might work123
might be abc
or thank you
might workAssuming you have MySQL/mariadb access, here's the SQL:Raziel-CZ wrote: Sat Apr 13, 2024 5:16 pm...I'm just a bit of an advanced user, not a coder, so this advice didn't help me.
Code: Select all
UPDATE phpbb3_posts set post_text = REPLACE(post_text, 'forum.sebesdileni.cz', 'forum.etiq.cz') WHERE post_text LIKE '%forum.sebesdileni.cz%';