Installation Instructions are below
Upload Package
1. Unzip the package for realestate, downloaded from Codecanyon
2. Upload the folder "ci_realestate" and all its content to your server.
Setup Database
Get your database informtation from your hosting’s MySQL Databases page. generally it has only 3 fields.
- database_name
- username that are setup access for those database
- password that are used to access for those database
Open the “application/config/database.php” file with a text editor and set your database settings.
$db['default'] = array(
'dsn' => '',
'hostname' => 'localhost',
'username' => '{{ENTER_USERNAME_HERE}}',
'password' => '{{ENTER_PASSWORD_HERE}}',
'database' => '{{ENTER_DATABASE_NAME_HERE}}',
'dbdriver' => 'mysqli',
'dbprefix' => '',
'pconnect' => FALSE,
'db_debug' => (ENVIRONMENT !== 'production'),
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array(),
'save_queries' => TRUE
);
Import Database
In the root of package “ci_realestate“, there are some sql files, like ci_realestate.sql, ci_realestate2.4.sql, ci_realestate2.5.sql and so on. and 1 of them is like this
ci_realestate{{VERSION}}(Latest).sql.
so you need to select this sql file for import.
go to your hosting by login, and open phpmyadmin, select the database, and then go to import tab. where select those sql file for import.
Update Security using htaccess
Security is major issue on websites, so we take care this using htaccess.
RewriteBase /main_demo/ci_realestate/
so we just need to change above like this
RewriteBase /