You are not logged in.
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!Pages: 1
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
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
Hi!
You can try adding:
RewriteBase /startupNowin your root .htaccess file (after RewriteEngine On).
Offline
Pages: 1