CC-1695 Remove Campcaster Studio and make install easier

Moved install directory
This commit is contained in:
paul.baranowski 2010-09-30 16:03:24 -04:00
parent e946e6a84e
commit 356407f66a
11 changed files with 0 additions and 0 deletions

10
install/getWwwRoot.php Normal file
View file

@ -0,0 +1,10 @@
<?php
/*------------------------------------------------------------------------------
* This script returns storage root URL
*----------------------------------------------------------------------------*/
header("Content-type: text/plain");
require("../conf.php");
echo "http://{$CC_CONFIG['storageUrlHost']}:{$CC_CONFIG['storageUrlPort']}".
"{$CC_CONFIG['storageUrlPath']}";
?>