mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-25 12:31:06 -05:00
configs
This commit is contained in:
parent
c44c85caea
commit
0bfd50dae6
@ -52,7 +52,7 @@ $autoload['packages'] = array();
|
||||
| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
|
||||
*/
|
||||
|
||||
$autoload['libraries'] = array();
|
||||
$autoload['libraries'] = array('database', "db_session");
|
||||
|
||||
|
||||
/*
|
||||
@ -64,7 +64,7 @@ $autoload['libraries'] = array();
|
||||
| $autoload['helper'] = array('url', 'file');
|
||||
*/
|
||||
|
||||
$autoload['helper'] = array();
|
||||
$autoload['helper'] = array('url', 'date');
|
||||
|
||||
|
||||
/*
|
||||
@ -80,7 +80,7 @@ $autoload['helper'] = array();
|
||||
|
|
||||
*/
|
||||
|
||||
$autoload['config'] = array();
|
||||
$autoload['config'] = array('stikked');
|
||||
|
||||
|
||||
/*
|
||||
@ -113,4 +113,4 @@ $autoload['model'] = array();
|
||||
|
||||
|
||||
/* End of file autoload.php */
|
||||
/* Location: ./application/config/autoload.php */
|
||||
/* Location: ./application/config/autoload.php */
|
||||
|
@ -26,7 +26,7 @@ $config['base_url'] = '';
|
||||
| variable so that it is blank.
|
||||
|
|
||||
*/
|
||||
$config['index_page'] = 'index.php';
|
||||
$config['index_page'] = '';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
@ -49,9 +49,9 @@ $active_group = 'default';
|
||||
$active_record = TRUE;
|
||||
|
||||
$db['default']['hostname'] = 'localhost';
|
||||
$db['default']['username'] = '';
|
||||
$db['default']['password'] = '';
|
||||
$db['default']['database'] = '';
|
||||
$db['default']['username'] = 'stikked';
|
||||
$db['default']['password'] = 'stikked';
|
||||
$db['default']['database'] = 'stikked';
|
||||
$db['default']['dbdriver'] = 'mysql';
|
||||
$db['default']['dbprefix'] = '';
|
||||
$db['default']['pconnect'] = TRUE;
|
||||
@ -66,4 +66,4 @@ $db['default']['stricton'] = FALSE;
|
||||
|
||||
|
||||
/* End of file database.php */
|
||||
/* Location: ./application/config/database.php */
|
||||
/* Location: ./application/config/database.php */
|
||||
|
@ -38,9 +38,20 @@
|
||||
|
|
||||
*/
|
||||
|
||||
$route['default_controller'] = "welcome";
|
||||
$route['404_override'] = '';
|
||||
$route['default_controller'] = "main";
|
||||
$route['scaffolding_trigger'] = "";
|
||||
|
||||
$route['cron/:any'] = "main/cron";
|
||||
|
||||
$route['view/raw/:any'] = 'main/raw/';
|
||||
$route['view/options'] = 'main/view_options';
|
||||
$route['view/:any'] = 'main/view';
|
||||
$route['lists'] = 'main/lists';
|
||||
$route['lists/:num'] = 'main/lists/$1';
|
||||
$route['about'] = 'main/about';
|
||||
|
||||
$route['iphone/:num'] = 'iphone';
|
||||
$route['iphone/view/:any'] = 'iphone/view';
|
||||
|
||||
/* End of file routes.php */
|
||||
/* Location: ./application/config/routes.php */
|
||||
/* Location: ./application/config/routes.php */
|
||||
|
Loading…
x
Reference in New Issue
Block a user