To correctly transfer a site running CMS Joomla !, usually just the following:
configuration.php
and make the following changes to it:configuration.php
string class JConfig
:public $log_path = '/home/name_account/your_website.com/www/logs'; public $tmp_path = '/home/name_account/your_site.com/www/tmp'; public $ftp_enable = '0'; public $host = 'host'; public $user = 'login'; public $db = 'base_data'; public $password = 'password'; public $live_site = 'http://www.your_website.com'; public $sef_rewrite = '1';
Where:
name_account
— hosting account namewhere the site is hosted.your_website.com
- the name of your site (domain).configuration.php
string class JConfig
:var $logs = '/home/name_account/your_website.com/www/logs'; var $tmp = '/home/name_account/your_site.com/www/tmp'; var $ftp_enable = '0'; var $host = 'host'; var $user = 'login'; var $db = 'base_data'; var $password = 'password'; var $live_site = 'http://www.your_website.com'; var $sef_rewrite = '1';
Where:
name_account
— hosting account namewhere the site is hosted.your_website.com
- the name of your site (domain).cache/page
with all content.htaccess.txt
in .htaccess
.FollowSymLinks
on SymLinksIfOwnerMatch
.