Updates from lnApp

This commit is contained in:
Deon George
2011-05-02 22:20:56 +10:00
parent ca37cea6cf
commit 2f7a10804e
32 changed files with 301 additions and 278 deletions

View File

@@ -1,2 +0,0 @@
order allow,deny
deny from all

View File

@@ -15,5 +15,6 @@ return array(
'salt_pattern' => null,
'lifetime' => 1209600,
'session_key' => 'auth_user',
'forced_key' => 'auth_forced',
);
?>

View File

@@ -9,17 +9,29 @@
* @copyright (c) 2010 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
return array
(
'default' => array
(
'type' => 'mysql',
'connection' => array(
'hostname' => 'mysql.leenooks.vpn',
'username' => 'gh-webbill',
'password' => 'ws0593',
/**
* 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?
*
* Ports and sockets may be appended to the hostname.
*/
'hostname' => 'localhost',
'username' => 'username',
'password' => 'password',
'persistent' => FALSE,
'database' => 'webghosb',
'database' => 'database',
),
'table_prefix' => 'ab_',
'charset' => 'utf8',