Update of /cvsroot/phpwebapp/empty-sample/config
In directory sc8-pr-cvs1:/tmp/cvs-serv29805
Modified Files:
const.Paths.php
Added Files:
const.DB.php
Log Message:
--- NEW FILE: const.DB.php ---
<?php
/* This file is part of phpWebApp. */
/** @package sample-application */
/** */
//constants of the default DB connection
define("DBHOST", "localhost");
define("DBUSER", "root");
define("DBPASS", "");
define("DBNAME", "test");
?>
Index: const.Paths.php
===================================================================
RCS file: /cvsroot/phpwebapp/empty-sample/config/const.Paths.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** const.Paths.php 25 Aug 2003 13:43:35 -0000 1.2
--- const.Paths.php 24 Sep 2003 14:25:59 -0000 1.3
***************
*** 5,9 ****
/** */
//constants of the paths in the application
! define("WEBAPP_PATH", APP_PATH."../web_app/");
define("GRAPHICS", APP_URL."graphics/");
define("TPL_PATH", APP_PATH."templates/");
--- 5,9 ----
/** */
//constants of the paths in the application
! define("WEBAPP_PATH", UP_PATH."web_app/");
define("GRAPHICS", APP_URL."graphics/");
define("TPL_PATH", APP_PATH."templates/");
|