[Openfirst-cvscommit] base/config first.php,1.22,1.23
Brought to you by:
xtimg
From: <dav...@us...> - 2003-09-13 15:31:49
|
Update of /cvsroot/openfirst/base/config In directory sc8-pr-cvs1:/tmp/cvs-serv19230 Modified Files: first.php Log Message: Made some text changes and directions for configurations. Index: first.php =================================================================== RCS file: /cvsroot/openfirst/base/config/first.php,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** first.php 24 Aug 2003 18:51:04 -0000 1.22 --- first.php 13 Sep 2003 15:31:45 -0000 1.23 *************** *** 34,38 **** if(isset($_POST["login"])) { // User is attempting to login for the first time. ! die("You have successfully logged in. <a href='index.php'>Access Administrative Configuration Options</a> (you will be prompted for your password again)"); } --- 34,38 ---- if(isset($_POST["login"])) { // User is attempting to login for the first time. ! die("<br><br><br>You have successfully logged in. <a href='index.php'>Access Administrative Configuration Options</a> (you will be prompted for your password again)</center>"); } *************** *** 208,218 **** <option value="odbc">ODBC</option> </select> ! <tr><td>Title of Software</td><td><input type="text" name="title" value="openFIRST" /></td></tr> ! <tr><td>Version of Software</td><td><input type="text" name="version" value="CVS" /></td></tr> <tr><td>Database Server Address</td><td><input type="text" name="sqlserver" value="localhost" /></td></tr> <tr><td>Database User Name</td><td><input type="text" name="sqluser" value="sqluser" /></td></tr> <tr><td>Database User Password</td><td><input type="password" name="sqlpassword" /></td></tr> <tr><td>Database Name (this database must already exist, it will not be automatically created)</td><td><input type="text" name="sqldatabase" value="openfirst" /></td></tr> ! <tr><td>Home site (the address scripts will use for linking to your main page)</td><td> <input type="text" name="home" value="http://openfirst.sourceforge.net"></td></tr> <tr><td>Header file (this should be a full system path)</td><td><input type="text" name="header" value="<?php echo(getcwd()); ?>/headers.php" /></td></tr> --- 208,225 ---- <option value="odbc">ODBC</option> </select> ! <tr> ! <td>Title of Website</td> ! <td><input type="text" name="title" value="openFIRST" /></td></tr> ! <tr> ! <td>Version of Website</td> ! <td><input type="text" name="version" value="CVS" /></td></tr> <tr><td>Database Server Address</td><td><input type="text" name="sqlserver" value="localhost" /></td></tr> <tr><td>Database User Name</td><td><input type="text" name="sqluser" value="sqluser" /></td></tr> <tr><td>Database User Password</td><td><input type="password" name="sqlpassword" /></td></tr> <tr><td>Database Name (this database must already exist, it will not be automatically created)</td><td><input type="text" name="sqldatabase" value="openfirst" /></td></tr> ! <tr> ! <td>Home Site (the address scripts will use for linking to your main page) ! <em>Note:</em> No backslash is required after the link</td> ! <td> <input type="text" name="home" value="http://openfirst.sourceforge.net"></td></tr> <tr><td>Header file (this should be a full system path)</td><td><input type="text" name="header" value="<?php echo(getcwd()); ?>/headers.php" /></td></tr> *************** *** 222,234 **** <tr><td>Mail From (the e-mail address that mail from the openFIRST site should appear to be from</td><td><input type="text" name="mailfrom" value="no...@op..."></td></tr> ! <tr><td>The base path to the OpenFIRST software ! (example: http://openfirst.sourceforge.net<strong>/openfirst</strong>) this should not have a ! trailing slash. ! </td><td><input type="text" name="basepath" value="/openfirst"></td></tr> ! <tr><td>The file system path to the basepath ! (example: <strong>/home/openfirst/htdocs/openfirst</strong>) this should have a ! trailing slash. ! </td><td><input type="text" name="fbasepath" value="<?php chdir(".."); echo getcwd(); ?>"></td></tr> <tr><td></td><td><input type="submit" value="Set up OpenFIRST"></td></tr> </table> --- 229,241 ---- <tr><td>Mail From (the e-mail address that mail from the openFIRST site should appear to be from</td><td><input type="text" name="mailfrom" value="no...@op..."></td></tr> ! <tr> ! <td>The base path to the openFIRST software (example: http://openfirst.sourceforge.net<strong>/openfirst</strong>) ! this should always have a beginning slash but no ending slash.</td> ! <td><input type="text" name="basepath" value="/openfirst"></td></tr> ! <tr> ! <td>The file system path to the basepath (example: <strong>/home/openfirst/htdocs/openfirst</strong>) ! this should not have a trailing slash.</td> ! <td><input type="text" name="fbasepath" value="<?php chdir(".."); echo getcwd(); ?>"></td></tr> <tr><td></td><td><input type="submit" value="Set up OpenFIRST"></td></tr> </table> |