Initial commit
This commit is contained in:
8
application/config/config.php
Normal file
8
application/config/config.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php defined('SYSPATH') OR die('No direct access allowed.');
|
||||
|
||||
return array
|
||||
(
|
||||
'appname' => 'TSM Access Request',
|
||||
'theme' => 'bootstrap',
|
||||
'theme_admin' => 'baseadmin',
|
||||
);
|
31
application/config/database.php
Normal file
31
application/config/database.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php defined('SYSPATH') OR die('No direct access allowed.');
|
||||
|
||||
return array
|
||||
(
|
||||
'default' => array
|
||||
(
|
||||
'type' => 'MySQL',
|
||||
'connection' => array(
|
||||
/**
|
||||
* The following options are available for MySQL:
|
||||
*
|
||||
* string hostname server hostname, or socket
|
||||
* string database database name
|
||||
* string username database username
|
||||
* string password database password
|
||||
* boolean persistent use persistent connections?
|
||||
* array variables system variables as "key => value" pairs
|
||||
*
|
||||
* Ports and sockets may be appended to the hostname.
|
||||
*/
|
||||
'hostname' => 'mysql.leenooks.vpn',
|
||||
'database' => 'weblntsmac',
|
||||
'username' => 'ln-tsmac',
|
||||
'password' => 'TSM',
|
||||
'persistent' => TRUE,
|
||||
),
|
||||
'table_prefix' => 'tac_',
|
||||
'charset' => 'utf8',
|
||||
'caching' => TRUE,
|
||||
),
|
||||
);
|
18
application/config/session.php
Normal file
18
application/config/session.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php defined('SYSPATH') or die('No direct access allowed.');
|
||||
|
||||
/**
|
||||
* Configuration - Session Configuration
|
||||
*
|
||||
* @package TSM Access Management
|
||||
* @category Configuration
|
||||
* @author Deon George
|
||||
* @copyright (c) 2014 Deon George
|
||||
* @license http://dev.leenooks.net/license.html
|
||||
*/
|
||||
|
||||
return array(
|
||||
'native' => array(
|
||||
'name'=>'TSMAC',
|
||||
),
|
||||
);
|
||||
?>
|
Reference in New Issue
Block a user