After inputing restaurant settings, the page goes to a complete blanck page but having this address "http://localhost/tastyigniter/setup/index.php/settings"
Please help.
I have installed on localhost
My .htaccess files
root
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
RewriteRule ^assets/downloads/(.*) not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
admin
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/admin
RewriteRule ^assets/downloads/(.*) not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
setup
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/setup
RewriteRule ^assets/downloads/(.*) not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
config.php file
$config['uri_protocol'] = 'REQUEST_URI';
$config['index_page'] = 'index.php';
Database file
<?php if ( ! defined('BASEPATH')) exit('No direct access allowed');
$active_group = 'default';
$query_builder = TRUE;
$db['default']['dsn'] = '';
$db['default']['hostname'] = 'localhost';
$db['default']['username'] = 'root';
$db['default']['password'] = '******';
$db['default']['database'] = 'tasty';
$db['default']['dbdriver'] = 'mysqli';
$db['default']['dbprefix'] = 'ti_';
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = FALSE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = '';
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = TRUE;
$db['default']['encrypt'] = FALSE;
$db['default']['compress'] = FALSE;
$db['default']['stricton'] = FALSE;
$db['default']['failover'] = array();
$db['default']['save_queries'] = TRUE;
/* End of file database.php */
/* Location: ./system/tastyigniter/config/database.php */
I go through the requirements page but once i fill in the restaurant details (restaurant name and all that), it simply redirects to a blank page
PLEASE HELP