Create pagine per notizie in pending e rifiutate; Creati componenti grafici per mostrare Notizia, Commento e lista commenti; Bugfix e limature su amministrazione
45 lines
1.7 KiB
PHP
45 lines
1.7 KiB
PHP
<?php
|
|
/*
|
|
Author: Riccardo Di Dato
|
|
Creation Date: 14/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->tmpBaseDir = "/tmp/asdynamics";
|
|
$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 = "http://fdn2.asdynamics.com/fdn2/";
|
|
|
|
$backupSystem = new stdClass();
|
|
$backupSystem->account = "40a911e14db8ad6faf0a0e7385e7c267";
|
|
$backupSystem->passphrase = "a54af48c2ec44bba903666b6d12290750178154a6965c9165d3b387e7fd0f14c5f2d62cb93f468be640d469c80f1260feed3ad98f5f52d52c045b0487e59981bf365f4037f6c7cb93572cdd5d20daeb8185afcc65dba1bd2067829f827d9b795451f6e5e8fafe5e1fbe29675feb93e7d208a6b53a14df5aeec62d97fbf34d56a";
|
|
|
|
|
|
|
|
// $config->locations = new stdClass();
|
|
|
|
// $config->application->applicationInterfacePath = "/tnc15";
|
|
|
|
// $config->application->systemTmp = "/tmp";
|
|
?>
|