jobberBase Community

Welcome to jobberBase Developer Community!

You are not logged in.

Announcement

Announcement for new users: in order to combat the ever increasing spam, we no longer allow new users to post links in the message body. This limitation is automatically lifted once a new user has a specific number of 'valid' posts.

You can post links like google.com which will be rendered as text but you will not be able to post messages that contain complete URLs like www.google.com

Thank you for your understanding!

#1 2012-04-28 02:49:48

phillipv
Member
Registered: 2012-04-28
Posts: 2

Installation problems

Can't seem to get past a blank page. I've followed all the installation instructions. Here's the page that shows blank (no errors even):

http://www.lightsoninteractive.com/startupNow/

any ideas, I have a feeling it's something completely obvious I'm missing but I've tried for a good hour now without luck..

The config.envs.php looks like this:

// 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' => '',
    'db_name' => 'jobberbase',
    'db_prefix' => '',
    // your site's full url
    'app_url' => 'http://localhost/jobberbase/trunk/public/',
    // 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_isapi_rewrite'
    'rewrite_mode' => 'apache_mod_rewrite'
);

// live (http://www.yourjobberbasedomain.com)
$__instances['live'] = array(
    'prefix' => 'lightsoninteractive.com',
    'db_host' => 'localhost',
    'db_port' => 3306,
    'db_user' => 'root',
    'db_password' => '',
    'db_name' => 'phillipv_startupNow',
    'db_prefix' => '',
    'app_url' => 'http://www.lightsoninteractive.com/startupNow/',
    'ini_error_reporting' => E_ALL,
    'ini_display_errors' => 'On',
    'location' => 'online',
    'environment' => 'prod',
    'rewrite_mode' => 'apache_mod_rewrite'
);

Offline

#2 2012-04-28 16:17:51

phillipv
Member
Registered: 2012-04-28
Posts: 2

Re: Installation problems

I have the homepage showing now, but when any tab or link is clicked only a blank page shows up..

http://www.lightsoninteractive.com/startupNow/

Any advice would be appreciated, thanks

Offline

#3 2012-04-28 20:28:03

links
Administrator
Registered: 2008-08-20
Posts: 245

Re: Installation problems

Hi!

You can try adding:

RewriteBase /startupNow

in your root .htaccess file (after RewriteEngine On).

Offline

Board footer

Powered by FluxBB