Update of /cvsroot/upcase-project/UpCase
In directory usw-pr-cvs1:/tmp/cvs-serv14273
Modified Files:
install.php
Log Message:
renaming of root urls and path variables
Index: install.php
===================================================================
RCS file: /cvsroot/upcase-project/UpCase/install.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** install.php 13 Nov 2002 08:58:02 -0000 1.2
--- install.php 14 Nov 2002 10:46:47 -0000 1.3
***************
*** 97,105 ****
! $docroot = dirname($DOCUMENT_ROOT . $PHP_SELF);
! $modules = $DOCUMENT_ROOT;
- $rooturl = $HTTP_HOST . "/upcase";
- $modsurl = $HTTP_HOST;
// Create the config file
--- 97,110 ----
! // Web site document root
! $siteRoot = $DOCUMENT_ROOT;
! // Web site root URL
! $siteUrl = $HTTP_HOST;
!
! // ucpase document root
! $upcaseRoot = dirname($DOCUMENT_ROOT . $PHP_SELF);
! // upcase root URL
! $upcaseUrl = dirname($HTTP_HOST . $PHP_SELF);
// Create the config file
***************
*** 112,116 ****
-->
<paths>
! <docroot>$docroot</docroot>
<modules>$modules</modules>
<rooturl>http://$rooturl</rooturl>
--- 117,125 ----
-->
<paths>
! <siteroot>$siteRoot</siteroot>
! <siteurl>$siteUrl</siteurl>
! <upcaseroot>$upcaseRoot</upcaseroot>
! <upcaseurl>$upcaseUrl</upcaseurl>
!
<modules>$modules</modules>
<rooturl>http://$rooturl</rooturl>
|