Installation
- Download the latest stable release from the Kohana website.
- Unzip the downloaded package to create a
kohanadirectory. - Upload the contents of this folder to your webserver.
- Open
application/bootstrap.phpand make the following changes:- Set the default timezone for your application.
- Set the
base_urlin the Kohana::init call to reflect the location of the kohana folder on your server relative to the document root.
- Make sure the
application/cacheandapplication/logsdirectories are writable by the web server. - Test your installation by opening the URL you set as the
base_urlin your favorite browser.
Depending on your platform, the installation's subdirs may have lost their permissions thanks to zip extraction. Chmod them all to 755 by running find . -type d -exec chmod 0755 {} \; from the root of your Kohana installation.
You should see the installation page. If it reports any errors, you will need to correct them before continuing.

Once your install page reports that your environment is set up correctly you need to either rename or delete install.php in the root directory. Kohana is now installed and you should see the output of the welcome controller:

Installing Kohana 3.0 From GitHub
The source code for Kohana 3.0 is hosted with GitHub. To install Kohana using the github source code first you need to install git. Visit http://help.github.com for details on how to install git on your platform.
To install the last stable release of Kohana using git run these commands:
git clone git://github.com/kohana/kohana.git
cd kohana/
git submodule init
git submodule update
For more information on using Git and Kohana see the Working with Git tutorial.