JoeBloggs Posted July 21, 2010 Report Posted July 21, 2010 I have my joomla! installation on my server as http://www.example.com/joomla as I've been editting it. But now I would like my Joomla! installation put as the index so my joomla! homepage is the first page you go to on Example Web Page Not sure how to do this... hoping someone knows and can just tell me a quick answer :)
soveryapt Posted July 21, 2010 Report Posted July 21, 2010 Something like: How to move Joomla to another directory? Many web designers prefer to build their websites in test folders and when their development is over to move their Joomla applications to the root folder of their hosting accounts. For the purpose of this article let us presume that we have a Joomla 1.5 installed in the public_html/test folder in our account and we want to move it to the public_html directory so that it will be directly accessible through http://www.yourdomain.com. This change consists of the following steps: 1. Move all of the files and folders from your Joomla folder to the new directory. In our case from public_html/test to public_html 2. Reconfigure your application. You should edit your configuration.php file and make the following changes in it: Change: var $log_path = '/home/user/public_html/test/logs'; To: var $log_path = '/home/user/public_html/logs'; Change: var $tmp_path = '/home/user/public_html/test/tmp'; To: var $tmp_path = '/home/user/public_html/tmp'; Change: var $ftp_root = '/public_html/test'; To: var $ftp_root = '/public_html'; Change: var $live_site = 'http://www.yourdomain.com/test'; To: var $live_site = 'http://www.yourdomain.com'; 3. Remove the content of your cache folder (public_html/cache in our case) Now when you reload your website it should be working flawlessly from its new location. How to move Joomla to another directory? 1
soveryapt Posted July 21, 2010 Report Posted July 21, 2010 Worked a treat. Thanked. No worries. Glad to be of service.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now