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)
Assuming you have MySQL/mariadb access, here's the SQL:
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%';