2006-10-19 16:55:07 +02:00
|
|
|
<?php
|
|
|
|
/*------------------------------------------------------------------------------
|
|
|
|
* This script returns storage root URL
|
|
|
|
*----------------------------------------------------------------------------*/
|
|
|
|
|
2006-12-16 07:36:22 +01:00
|
|
|
header("Content-type: text/plain");
|
|
|
|
require("../conf.php");
|
|
|
|
echo "http://{$CC_CONFIG['storageUrlHost']}:{$CC_CONFIG['storageUrlPort']}".
|
|
|
|
"{$CC_CONFIG['storageUrlPath']}";
|
2006-10-19 16:55:07 +02:00
|
|
|
?>
|