Update of /cvsroot/openfirst/base/config
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19654
Modified Files:
first.php
Log Message:
Add encryption selection option to setup, show database statistics if they are supported by the database server type which is selected (currently supports mysql and mssql); this functionality is based loosely on the phpBB statistics
Index: first.php
===================================================================
RCS file: /cvsroot/openfirst/base/config/first.php,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** first.php 27 Dec 2003 00:15:00 -0000 1.28
--- first.php 5 Apr 2004 10:26:40 -0000 1.29
***************
*** 70,73 ****
--- 70,76 ----
include('dbase.php');
}
+
+ \$encryption = '" . $_POST["encryption"] . "';
+
\$title = '" . $_POST["title"] . "';
\$version = '" . $_POST["version"] . "';
***************
*** 296,299 ****
--- 299,314 ----
</tr>
<tr>
+ <td>Type of encryption to use on database passwords?<br>
+ <font size="1">If you are migrating from an existing system, this should be the same encryption
+ style that system uses, otherwise all users will have to reset their password; otherwise, in
+ most cases the default option is fine.</font></td>
+ <td>
+ <select name="encryption">
+ <option value='md5' selected='selected'>MD5 Message-Digest Algorithm</option>
+ <option value='crypt'>Standard Unix DES-based encryption algorthm</option>
+ <option value='crc32'>crc32 Polynomial</option>
+ <option value='sha1'>US Secure Hash Algorithm 1 (sha1)</option>
+ </select>
+ </td></tr>
<td>Allow openFIRST users to save their passwords?<br> <font size="1">This feature uses cookies to
automatically log in users into the openFIRST portal.</font></td>
|