﻿= Installing Akarru =

Step for installation

1. Preparation
2. Configure db_conf.php
3. Choose language
4. Make some directories writeable

== Preparation ==

You need a web server.

Just copy all the content of the public_html directory to the root of your site.

== Configure db_conf.php ==

Then you must create the file db_conf.php (in this distribution exists a file called db_conf_demo.php as reference).

In db_conf.php you define the conection parameters and encription key.

Example:
<?php

// You must configure your database here, and rename this file to db_conf.php

define('DATABASE_USER', 'john_doe');
define('DATABASE_PASS', "doe_pass");
define('DATABASE_HOST', "localhost");
define('DATABASE_NAME', "blogmemes");

// You must create a password for encryption of password and sensible information
define('AES_KEY', '&IUDA@e3hd12123 qasdas1');   /// AES site key for password storage use your own password

?>


Change all these settings according to your installation.

== Choose language ==

Choose your language, on config.php you must change the following line:

define('LANG', 'es');


This distribution support only 'es' for spanish.
Future release will add other languages.
You can create your own lang templates, just translate the files under templates/es and the config.es.php.

== Make some directories writeable ==

You must ensures that the directories templates_c, and cache are writeable by the web server.





