MyBB Community Forums

Full Version: Changing Board URL
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I changed my Domain but when i loaded by backup the url are still
my domain i want to change them to my new domain.
You'll need to manually change your domain in the database. Run these two SQL statements via phpMyAdmin or similar:
UPDATE `database_name`.`mybb_settings` SET `value` = 'http://newdomain.com/' WHERE `mybb_settings`.`name` = 'homeurl';

UPDATE `database_name`.`mybb_settings` SET `value` =  '.newdomain.com' WHERE `mybb_settings`.`name` = 'cookiedomain';

Change "database_name" and "newdomain.com" to reflect your personal requirements.
Not working
please be more clear
Did you run the queries in phpmyadmin?

If you tell us your new domain I can give you the exact queries to run. After you have run them, delete ./inc/settings.php and it will regenerate, and your site will reflect the changes. Smile.