CC-1695 Remove Campcaster Studio and make install easier
Removed more stuff and started creating new directory structure.
This commit is contained in:
parent
3f5b1a1c92
commit
d9c6971131
148 changed files with 50 additions and 29338 deletions
10
utils/dumpDbSchema.php
Normal file
10
utils/dumpDbSchema.php
Normal 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";
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue