So I have developed a CMSMS website for a client and launched it yesterday. All working fine (other than a couple of styling issues that I'll be fixing later). However, the client has now decided that they don't like their chosen domain name and have decided to change it to a new domain name. To be clear though the site won't be moving from one server to another. It's only the domain name that will change.
Other than changing the primary & secondary dns to the new domain name I'm aware I will need to change some settings in cmsms. Reading through the forums I see that specifically I'll need to edit my config.php file, the line about the rout URL. However, when I look at my config.php file there's no line for route URL. Am I missing something here? Can anyone advise the steps I need to take to do this? Below is my config file:
Code: Select all
<?php
# CMS Made Simple Configuration File
# Documentation: /doc/CMSMS_config_reference.pdf
#
$config['dbms'] = 'mysqli';
$config['db_hostname'] = 'localhost';
$config['db_username'] = 'removed';
$config['db_password'] = 'removed';
$config['db_name'] = 'removed';
$config['db_prefix'] = 'cms_';
$config['timezone'] = 'Australia/Sydney';
?>