Topic: The requested URL /page-unavailable/ was not found on this server.
I am trying to run jobberbase on a locahost (ubuntu)
I have correctly followed the install instructions which said copy all th files in public to the web server.
I did this and copied them all to /var/www
Then I changed the config file to be as follows
// 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' => 'root',
'db_password' => 'passwordiscorrect',
'db_name' => 'jobberbase',
'db_prefix' => '',
// your site's full url
'app_url' => 'http://localhost/',
// 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' => 'local',
// environment setting 2 (use 'dev' together with 'local' in the previous setting
OR 'prod' with 'online')
'environment' => 'dev',
//'apache_mod_rewrite', 'iis_url_rewrite' -microsoft URL Rewrite module, 'iis_isa
pi_rewrite'
'rewrite_mode' => 'apache_mod_rewrite'
);
When I try http://localhost/index.php
I get this :
Not Found
The requested URL /page-unavailable/ was not found on this server.
Apache/2.2.14 (Ubuntu) Server at localhost Port 80
When I went to http://localhost/admin
I got a login page, logged in, then got a similar error to above ,but it appeared to login, because when I went back to same address, i.e. http://localhost/admin
I could see all the functions on the admin menu. Although when I clicked one I got :
The requested URL /admin/settings/mail/ was not found on this server.
Apache/2.2.14 (Ubuntu) Server at localhost Port 80
Seems like something to do with a setting which is incorrectly causing the path of the web page to commence with / which on a unix server means go back to the root directory.
I also need to know what ownership and groupid should be specified for successful operation of the system for the so called webuser.
Apache tasks running seem to indicate www-data as the owner. Do I leave all file permissions as they were and set the ownership and group membership as www-data ?
I would really appreciate some help here.
Kind Regards
Ron
(jobberbase newbie)