Bugfix su problemi di importazione

This commit is contained in:
Riccardo Di Dato
2016-01-07 18:02:10 +01:00
parent 749b1c8dc8
commit 11636e5785
16 changed files with 433 additions and 82 deletions
+39
View File
@@ -0,0 +1,39 @@
<?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";
$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->remoteLocation = "http://$_SERVER[HTTP_HOST]";
// $config->locations = new stdClass();
// $config->application->applicationInterfacePath = "/tnc15";
// $config->application->systemTmp = "/tmp";
?>