Topic: Links do not work from main page
I have installed jobber base on Ubuntu with apache and mysql
unzipped the contects of public folder to /var/www/jobberbase
set up mysql, created database 'jobber' a user 'jobber@localhost' with all privileges for the database jobberbase.
set config.envs.php as follows
$__instances['local'] = array(
// should be a unique part of the url (or the entire url if you wish)
'prefix' => 'local',
// mysql credentials
'db_host' => 'localhost',
'db_port' => 3306,
'db_user' => 'jobber@localhost',
'db_password' => 'jobber12',
'db_name' => 'jobberbase',
'db_prefix' => '',
// your site's full url
'app_url' => 'http://localhost/jobberbase/',
// error reporting
'ini_error_reporting' => E_ALL,
'ini_display_errors' => 'On'
.....
None of the links work from the home page.
the contents of the public folder is unzipped under the folder /var/www/jobberbase
what am i doing wrong