first commit

This commit is contained in:
2014-03-26 14:18:20 +08:00
commit 41681f1f18
31 changed files with 4496 additions and 0 deletions

4
config/app.config.php Executable file
View File

@ -0,0 +1,4 @@
<?php
$__config['akey'] ='';// appkey
$__config['skey'] = '';// secret key
$__config['callback'] = 'http://'.$_SERVER['HTTP_HOST'].'/?c=callback';

15
config/db.config.php Executable file
View File

@ -0,0 +1,15 @@
<?php
// main db setting
$master['host'] = 'localhost';
$master['user'] = 'root';
$master['passwd'] = '';
$master['dbname'] = '';
/* slave db seting
$slave['host'] = 'localhost';
$slave['user'] = 'root';
$slave['passwd'] = '';
$slave['dbname'] = '';
*/