This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/application/config/database.php
2011-05-03 09:49:04 +10:00

31 lines
646 B
PHP

<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* OSB Database configuration
*
* @package OSB
* @category Configuration
* @author Deon George
* @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',
'persistent' => FALSE,
'database' => 'webghosb',
),
'table_prefix' => 'ab_',
'charset' => 'utf8',
'caching' => FALSE,
'profiling' => TRUE,
),
);
?>