Update of /cvsroot/openfirst/config
In directory sc8-pr-cvs1:/tmp/cvs-serv8364
Modified Files:
globals.php headers.php
Log Message:
Update globals to reflect recent changes to modules, and to include session starting and finishing.
Index: globals.php
===================================================================
RCS file: /cvsroot/openfirst/config/globals.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** globals.php 14 May 2003 11:32:44 -0000 1.7
--- globals.php 1 Jun 2003 17:30:13 -0000 1.8
***************
*** 2,7 ****
/*
* openFIRST globals.php
- * Last Modified:
- * Tim Ginn, April 13, 2003
*
* Copyright (C) 2003,
--- 2,5 ----
***************
*** 74,84 ****
// SQL database
//MODULE ACTIVATION - To activate any
! // of these modules simply remove the
! // double slashes in front.
! // include("../logger/logger.php");
! // include("../messanger/messanger.php");
! // include("../emoticon/emoticonf.php");
! // include("../members/auth.php");
?>
--- 72,103 ----
// SQL database
+ session_start();
+
//MODULE ACTIVATION - To activate any
! // of these modules simply extract them into the appropriate
! // directory. If they require SQL tables to set up, then
! // place double slashes infront of their repective include()
! // line, and set them up in the members area by logging in as
! // an administrator and selecting SQL Tables Install, then
! // remove the double slashes.
! if(file_exists("../logger/logger.php") == true) {
! include("../logger/logger.php");
! }
! if(file_exists("../messanger/messanger.php") == true) {
! include("../messanger/messanger.php");
! }
! if(file_exists("../emoticon/emoticonf.php") == true) {
! include("../emoticon/emoticonf.php");
! }
! if(file_exists("../members/auth.php") == true) {
! // Set the type of encryption to use for members passwords.
!
! $encryption = "crypt"; // You should probably leave this
! // available values are:
! // md5, sha1, crypt, crc32
! include("../members/auth.php");
! }
!
! session_write_close();
?>
Index: headers.php
===================================================================
RCS file: /cvsroot/openfirst/config/headers.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** headers.php 29 May 2003 01:30:35 -0000 1.9
--- headers.php 1 Jun 2003 17:30:14 -0000 1.10
***************
*** 57,61 ****
| <a class="menu" accesskey="d" href="http://openfirst.sourceforge.net/downloads.php"><span style="text-decoration: underline;">D</span>ownloads</a>
| <a class="menu" accesskey="r" href="http://openfirst.sourceforge.net/release.php"><span style="text-decoration: underline;">R</span>elease
! Notes</a> | <a class="menu" accesskey="s" href="http://openfirst.sourceforge.net/screens.php"><span style="text-decoration: underline;">S</span>creenshots</a>
| <a class="menu" accesskey="l" href="http://openfirst.sourceforge.net/license.php"><span style="text-decoration: underline;">L</span>icense</a>
| <a class="menu" accesskey="b" href="http://openfirst.sourceforge.net/bugreports.php"><span style="text-decoration: underline;">B</span>ug
--- 57,61 ----
| <a class="menu" accesskey="d" href="http://openfirst.sourceforge.net/downloads.php"><span style="text-decoration: underline;">D</span>ownloads</a>
| <a class="menu" accesskey="r" href="http://openfirst.sourceforge.net/release.php"><span style="text-decoration: underline;">R</span>elease
! Notes</a> | <a class="menu" accesskey="m" href="http://openfirst.sourceforge.net/modules/"><span style="text-decoration: underline;">M</span>odules</a>
| <a class="menu" accesskey="l" href="http://openfirst.sourceforge.net/license.php"><span style="text-decoration: underline;">L</span>icense</a>
| <a class="menu" accesskey="b" href="http://openfirst.sourceforge.net/bugreports.php"><span style="text-decoration: underline;">B</span>ug
|