Tuesday, 16 October 2012

Installation of Joomla from Source


Joomla is an award-winning content management system (CMS), which enables you to build Web sites and powerful online applications. Many aspects, including its ease-of-use and extensibility, have made Joomla the most popular Web site software available. Best of all, Joomla is an open source solution that is freely available to everyone.A content management system is software that keeps track of every piece of content on your Web site, much like your local public library keeps track of books and stores them. Content can be simple text, photos, music, video, documents, or just about anything you can think of. A major advantage of using a CMS is that it requires almost no technical skill or knowledge to manage 

Installation

1) Downloaded joomla application from website.
2) Extracted the file and copied it to the location /home/www/www/
3) Created database named "joomla"
>create database joomla;
Granted permission to the database for the user root.
> GRANT ALL PRIVILEGES ON joomla.* TO "joomlauser"@"localhost" IDENTIFIED BY "redhat";
Flushed privilege
>flush privileges;
4) Changed permission of the wordpress file on that location
chown -R www:www /home/www/www/*
5)Recompile Php with zlib suport
./configure --prefix=/usr/local/
--with-config-file-path=/usr/local/php
--enable-cgi --with-mysql=/usr/local/mysql
--with-zlib
6)Restart apache and enter following address http://test007.server.com/joomla in the browser, Follow the step and joomla installation will be complete


No comments:

Post a Comment