Manage cookies that are used for advertising, such as ad personalization, remarketing, and ad effectiveness analysis.
2.14.2.13. Transfer Joomla!
To correctly transfer site running under the Joomla! CMS, it is usually sufficient to do the following:
- Transfer site files and database (if required) using instructions appropriate for your situation.
- Edit site configuration file
configuration.phpand make following changes to it:- For Joomla! versions that contain the line
class JConfigin theconfiguration.phpfile:public $log_path = '/home/account_name/your_site.com/www/logs'; public $tmp_path = '/home/account_name/your_site.com/www/tmp'; public $ftp_enable = '0'; public $host = 'host'; public $user = 'login'; public $db = 'database'; public $password = 'password'; public $live_site = 'http://www.your_site.com'; public $sef_rewrite = '1';Where:
account_name— hosting account name where the website is hosted.your_site.comis the name of your site (domain).
- For Joomla! versions that do not contain the line
class JConfigin theconfiguration.phpfile:var $logs = '/home/account_name/your_site.com/www/logs'; var $tmp = '/home/account_name/your_site.com/www/tmp'; var $ftp_enable = '0'; var $host = 'host'; var $user = 'login'; var $db = 'database'; var $password = 'password'; var $live_site = 'http://www.your_site.com'; var $sef_rewrite = '1';Where:
account_name— hosting account name where the website is hosted.your_site.comis the name of your site (domain).
- Delete the
cache/pagedirectory with all its contents. - Rename
htaccess.txtfile to.htaccess. - In .htaccess file, replace
FollowSymLinksdirective withSymLinksIfOwnerMatch.