I have installed with godaddy hosting / windows / IIS
http://jobawk.com/jobbase/
Im able to see the default page and admin page. But unable to see other pages getting error page not found.
I tried changing the ROOT httaccess file to the following
RewriteEngine on
Options +FollowSymlinks
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /jobbase/index.php [L]
RewriteBase /jobbase/admin
ErrorDocument 404 /page-unavailable/
config---------------------------------------------
// local (http://localhost/jobberbase/public)
$__instances['local'] = array(
// should be a unique part of the url (or the entire url if you wish)
'prefix' => 'localhost',
// mysql credentials
'db_host' => 'localhost',
'db_port' => 3306,
'db_user' => 'jobbaseadmin',
'db_password' => '*****',
'db_name' => 'jobbaseadmin',
'db_prefix' => '',
// your site's full url
'app_url' => 'http://localhost/jobbase/',
// error reporting
'ini_error_reporting' => E_ALL,
'ini_display_errors' => 'On',
// environment setting 1 (use 'local' for localhost/testing OR 'online' for live, production environment)
'location' => 'online',
// environment setting 2 (use 'dev' together with 'local' in the previous setting OR 'prod' with 'online')
'environment' => 'prod',
//'apache_mod_rewrite', 'iis_url_rewrite' -microsoft URL Rewrite module, 'iis_isapi_rewrite'
'rewrite_mode' => 'iis_url_rewrite'
);
// live (http://www.yourjobberbasedomain.com)
$__instances['live'] = array(
'prefix' => 'jobawk.com',
'db_host' => '182.50.131.41',
'db_port' => 3306,
'db_user' => 'jobbaseadmin',
'db_password' => '*****',
'db_name' => 'jobbaseadmin',
'db_prefix' => '',
'app_url' => 'http://jobawk.com/jobbase/',
'ini_error_reporting' => E_ALL,
'ini_display_errors' => 'On',
'location' => 'online',
'environment' => 'prod',
'rewrite_mode' => 'iis_url_rewrite'
--
thanks