Topic: complete blank page
i just install the script on a live server
but nothing show up. but if im working on localserver it works.
i also change the config.envz.php
///////////////////
$__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' => 'j_data',
'db_password' => 'password',
'db_name' => 'j_data',
'db_prefix' => '',
// your site's full url
'app_url' => 'http://bingot.net/jobs/',
// 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.bingot.net/jobs/)
$__instances['live'] = array(
'prefix' => 'localhost',
'db_host' => 'localhost',
'db_port' => 3306,
'db_user' => 'j_data',
'db_password' => 'password',
'db_name' => 'j_data',
'db_prefix' => '',
'app_url' => 'http://www.bingot.net/jobs/',
'ini_error_reporting' => E_ALL,
'ini_display_errors' => 'Off',
'location' => 'online',
'environment' => 'prod',
'rewrite_mode' => 'apache_mod_rewrite'
);
//////////
the directory for cache and upload are 777 writable too
still nothing show up. can you guys help me pls
thnx
Last edited by bingot (2010-09-12 09:17:09)