Installation Instructions are below
Get your database informtation from your hosting's MySQL Databases page. generally it has only 3 fields.
Open the "application/config/database.php" file and "application/admin/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
);
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.
Security is major issue on websites, so we take care this using htaccess. There are 2 htacces files need to be updated for front-end and admin.
RewriteBase /main_demo/ci_realestate/
so we just need to change above like this
RewriteBase /
RewriteBase /main_demo/ci_realestate/admin/
so we need to change above like this
RewriteBase /admin/