2000-09-28 16:28:34 +02:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
2000-11-05 07:47:24 +01:00
|
|
|
* phpGroupWare - Setup *
|
2000-09-28 16:28:34 +02:00
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU General Public License as published by the *
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
|
|
* option) any later version. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
// Include to check user authorization against the
|
|
|
|
// password in ../header.inc.php to protect all of the setup
|
|
|
|
// pages from unauthorized use.
|
2000-11-17 16:04:04 +01:00
|
|
|
|
2000-11-17 16:49:03 +01:00
|
|
|
function setup_header($title = "")
|
2000-11-17 16:04:04 +01:00
|
|
|
{
|
|
|
|
global $phpgw_info;
|
|
|
|
|
2000-11-17 16:49:03 +01:00
|
|
|
echo '<title>phpGroupWare setup ' . $title . '</title><BODY BGCOLOR="FFFFFF" margintop="0" marginleft="0" '
|
2000-11-17 16:04:04 +01:00
|
|
|
. 'marginright="0" marginbottom="0"><table border="0" width="100%"><tr>'
|
|
|
|
. '<td align="left" bgcolor="486591"> <font color="fefefe">phpGroupWare version '
|
|
|
|
. $phpgw_info["server"]["version"] . ' setup</font></td></tr></table>';
|
|
|
|
}
|
2000-09-28 16:28:34 +02:00
|
|
|
|
2000-11-17 16:49:03 +01:00
|
|
|
function loginForm($err="")
|
|
|
|
{
|
|
|
|
global $PHP_SELF;
|
|
|
|
|
|
|
|
setup_header("Please login");
|
|
|
|
|
|
|
|
echo "<p><body bgcolor='#ffffff'>\n";
|
|
|
|
echo "<table border=\"0\" align=\"center\">\n";
|
|
|
|
echo " <tr bgcolor=\"486591\">\n";
|
|
|
|
echo " <td colspan=\"2\"><font color=\"fefefe\"> <b>Setup Login</b></font></td>\n";
|
|
|
|
echo " </tr>\n";
|
|
|
|
if ($err != "") {
|
|
|
|
echo " <tr bgcolor='#e6e6e6'><td colspan='2'><font color='#ff0000'>".$err."</font></td></tr>\n";
|
|
|
|
}
|
|
|
|
echo " <tr bgcolor=\"e6e6e6\">\n";
|
|
|
|
echo " <td><form action='".$PHP_SELF."' method='POST'>\n";
|
|
|
|
echo " <input type='password' name='FormPW' value=''>\n";
|
|
|
|
echo " <input type='submit' name='Login' value='Login'>\n";
|
|
|
|
echo " </form></td>\n";
|
|
|
|
echo " </tr>\n";
|
|
|
|
echo "</table>\n";
|
|
|
|
echo "</body></html>\n";
|
|
|
|
}
|
2000-09-28 16:28:34 +02:00
|
|
|
|
2000-11-17 16:49:03 +01:00
|
|
|
if (isset($FormPW)) {
|
|
|
|
if ($FormPW != $phpgw_info["server"]["config_passwd"]) {
|
|
|
|
loginForm("Invalid password.");
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
// Valid login, fall through and set the cookie
|
|
|
|
$SetupCookie = $FormPW;
|
|
|
|
} else if (isset($SetupCookie)) {
|
|
|
|
if ($SetupCookie != $phpgw_info["server"]["config_passwd"]) {
|
|
|
|
setcookie("SetupCookie",""); // scrub the old one
|
|
|
|
loginForm("Invalid session cookie (cookies must be enabled)");
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
loginForm();
|
|
|
|
exit;
|
2000-09-28 16:28:34 +02:00
|
|
|
}
|
2000-11-17 16:49:03 +01:00
|
|
|
|
|
|
|
// Auth ok.
|
|
|
|
setcookie("SetupCookie","$SetupCookie");
|
|
|
|
?>
|