CC-1695 Remove Campcaster Studio and make install easier

Removed more stuff and started creating new directory structure.
This commit is contained in:
paul.baranowski 2010-09-30 15:32:02 -04:00
parent 3f5b1a1c92
commit d9c6971131
148 changed files with 50 additions and 29338 deletions

10
utils/dumpDbSchema.php Normal file
View file

@ -0,0 +1,10 @@
<?
require_once('conf.php');
require_once("$STORAGE_SERVER_PATH/var/conf.php");
header("Conten-type: text/plain");
$dbname = $CC_CONFIG['dsn']['database'];
$dbuser = $CC_CONFIG['dsn']['username'];
$dbhost = $CC_CONFIG['dsn']['hostspec'];
$res = `pg_dump -s $dbname -U $dbuser`;
echo "$res\n";
?>