To correctly transfer a site running CMS MODX, it is usually sufficient to do the following:
/core/config/config.inc.php
correct the absolute paths to the site files. The path to the site directory should look like /home/user/example.com/www
where instead of user
should be indicated hosting account nameand instead of example.com/www
— path to site files./core/config/config.inc.php
change the site address to a new one in the line with the parameter $http_host
(the example shows the site address example.com
):$http_host='example.com';
from 2-00 to 7-00