Inclusi js essenziali BugFix LoginManager Creata classe MenuGenerator per ottenere le voci menu in base ai ruoli Incluso sistema di inclusione header in GUIHandler
42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
<?php
|
|
/*
|
|
Author: Riccardo Di Dato
|
|
Creation Date: 19/nov/2013
|
|
*/
|
|
|
|
|
|
|
|
// $dbconn = new DatabaseConnection();
|
|
// $dbconn->dbname = "cbs";
|
|
// $dbconn->dbtype = "mysql";
|
|
// $dbconn->location = "localhost";
|
|
// $dbconn->username = "root";
|
|
// $dbconn->password = "root";
|
|
$database = new stdClass();
|
|
$database->dbName = "fdn2";
|
|
$database->connectionString = null;
|
|
|
|
$currentSystem = new stdClass();
|
|
$currentSystem->storageBaseDir = "/home"; // Il path con storage ecc in cui mettere immagini, file temporanei ecc
|
|
$currentSystem->privateBaseDir = "/home/asdynamics"; // Il path in cui inserire la cartella con lib, task, binari ecc
|
|
$currentSystem->logBaseDir = "/var/log"; // Il path dei log....
|
|
$currentSystem->xSendFileDir = "/tmp/xsend";
|
|
|
|
$currentSystem->safeStorage = "/home/cbs/storage";
|
|
|
|
$currentSystem->apache = new StdClass();
|
|
$currentSystem->apache->user = "var-www";
|
|
$currentSystem->apache->group = "var-www";
|
|
$currentSystem->apache->workdir = "/var/www"; // Il path in cui inserire la cartella con le pagine html
|
|
|
|
$currentSystem->remoteLocationPath = "/";
|
|
|
|
|
|
|
|
// $config->locations = new stdClass();
|
|
|
|
// $config->application->applicationInterfacePath = "/tnc15";
|
|
|
|
// $config->application->systemTmp = "/tmp";
|
|
|
|
?>
|