<?php
$Config = array();
// Server Database
$Config['database'] = array();
$Config['database']['hostname'] = '127.0.0.1';
$Config['database']['username'] = '';
$Config['database']['password'] = '';
$Config['database']['database'] = '';
$Config['SMTP'] = array();
$Config['SMTP']['hostname'] = '127.0.0.1';
$Config['SMTP']['port'] = 25;
$Config['SMTP']['username'] = '';
$Config['SMTP']['password'] = '';
$Config['SMTP']['from'] = '';
$Config['server'] = array();
$Config['server']['hostname'] = '';
$Config['server']['username'] = '';
$Config['server']['password'] = '';
$Config['server']['hashkey'] = '';
?> |