[Openfirst-cvscommit] config globals.php,1.5,1.6
Brought to you by:
xtimg
From: <dav...@us...> - 2003-05-13 23:52:28
|
Update of /cvsroot/openfirst/config In directory sc8-pr-cvs1:/tmp/cvs-serv23538 Modified Files: globals.php Log Message: Added new openFIRST template designs. All links are currently directing to the /images/ folder on the sourceforge site. Index: globals.php =================================================================== RCS file: /cvsroot/openfirst/config/globals.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** globals.php 3 May 2003 00:43:32 -0000 1.5 --- globals.php 13 May 2003 23:52:24 -0000 1.6 *************** *** 34,38 **** // or UNIX (includes Linux, FreeBSD, etc.). ! // $ostype = "windows"; // $ostype = "unix"; --- 34,38 ---- // or UNIX (includes Linux, FreeBSD, etc.). ! $ostype = "windows"; // $ostype = "unix"; *************** *** 40,44 **** if ($ostype == "unix") { ini_set("include_path","../config/:."); ! } elseif ($ostype == "windows") { ini_set("include_path","../config/;."); } --- 40,44 ---- if ($ostype == "unix") { ini_set("include_path","../config/:."); ! } else { ini_set("include_path","../config/;."); } *************** *** 52,58 **** $version = "CVS"; // Version of software $sqlserver = "localhost"; // Change this to the MySQL Server Address ! $sqluser = "sqluser"; // Change this to the MySQL Server User ! $sqlpassword = "sqlpassword"; //Change this to the MySQL Server Password ! $sqldatabase = "sqldatabase"; //Change this to the MySQL Database $home = "http://openfirst.sf.net/"; // The address scripts will use for // linking to your main page. --- 52,58 ---- $version = "CVS"; // Version of software $sqlserver = "localhost"; // Change this to the MySQL Server Address ! $sqluser = "root"; // Change this to the MySQL Server User ! $sqlpassword = ""; //Change this to the MySQL Server Password ! $sqldatabase = "openFIRST"; //Change this to the MySQL Database $home = "http://openfirst.sf.net/"; // The address scripts will use for // linking to your main page. *************** *** 78,82 **** // double slashes in front. ! // include("../logger/logger.php"); ! // include("../messanger/messanger.php"); ?> --- 78,82 ---- // double slashes in front. ! include("../logger/logger.php"); ! include("../messanger/messanger.php"); ?> |