fixing SAP blogs

This commit is contained in:
francois.lutran
2016-12-16 17:19:15 +13:00
parent 7fecaa602f
commit 1bca2ec8ad
3 changed files with 166 additions and 71 deletions

18
settings-sample.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
class Settings
{
const DB_SERVER = 'localhost';
const DB_LOGIN = '';
const DB_PASS = '';
const DB_NAME = 'databap';
const DB_ENC = 'utf8mb4';
const TEXT_ENC = 'UTF-8';
const TIMEZONE = 'Europe/Paris';
const DEBUG = true;
const MAIL_SCRIPT = '';
const MAIL_API_KEY = '';
public static $OSS_ACCOUNTS = array('S User'=>'pass');
}
?>