CC-1695 Remove Campcaster Studio and make install easier

Fixed references to files for new directory structure for the backend stuff.
This commit is contained in:
paul.baranowski 2010-09-30 16:59:38 -04:00
parent fe724b7814
commit 2ece374513
319 changed files with 75 additions and 357 deletions

View file

@ -2,13 +2,12 @@
define('NSPACE', 'lse');
header("Content-type: text/plain");
require_once('conf.php');
require_once("$STORAGE_SERVER_PATH/var/conf.php");
require_once('DB.php');
require_once("XML/Util.php");
require_once("XML/Beautifier.php");
require_once("$STORAGE_SERVER_PATH/var/BasicStor.php");
require_once("$STORAGE_SERVER_PATH/var/Prefs.php");
require_once(dirname(__FILE__)."/../conf.php");
require_once(dirname(__FILE__)."/../backend/BasicStor.php");
require_once(dirname(__FILE__)."/../backend/Prefs.php");
PEAR::setErrorHandling(PEAR_ERROR_RETURN);
$CC_DBC = DB::connect($CC_CONFIG['dsn'], TRUE);