mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 09:09:04 +01:00
code clean up, hopefully this should help clean up the problems jengo is having with php 3.0.16
This commit is contained in:
parent
f4a7860474
commit
4089a9a2e2
@ -17,23 +17,21 @@
|
|||||||
|
|
||||||
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True, "currentapp" => "home", "noapi" => True);
|
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True, "currentapp" => "home", "noapi" => True);
|
||||||
include("./inc/functions.inc.php");
|
include("./inc/functions.inc.php");
|
||||||
/* processing and discovery phase */
|
|
||||||
|
/* Check header and authentication */
|
||||||
$phpgw_info["setup"]["stage"]["header"] = $phpgw_setup->check_header();
|
$phpgw_info["setup"]["stage"]["header"] = $phpgw_setup->check_header();
|
||||||
if ($phpgw_info["setup"]["stage"]["header"] != 10){
|
if ($phpgw_info["setup"]["stage"]["header"] != 10){
|
||||||
Header("Location: manageheader.php");
|
Header("Location: manageheader.php");
|
||||||
exit;
|
exit;
|
||||||
}else{
|
}elseif (!$phpgw_setup->auth("Config")){
|
||||||
if (!$phpgw_setup->auth("Config")){
|
|
||||||
$phpgw_setup->show_header("Please login",True);
|
$phpgw_setup->show_header("Please login",True);
|
||||||
$phpgw_setup->login_form();
|
$phpgw_setup->login_form();
|
||||||
exit;
|
exit;
|
||||||
}else{ /* authentication settled. Moving to the database portion. */
|
}else{ /* If authentication is sucessful, we load the database. */
|
||||||
$phpgw_setup->loaddb();
|
$phpgw_setup->loaddb();
|
||||||
$phpgw_info["setup"]["stage"]["db"] = $phpgw_setup->check_db();
|
|
||||||
$phpgw_info["setup"]["stage"]["config"] = $phpgw_setup->check_config();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Database actions */
|
||||||
switch($action){
|
switch($action){
|
||||||
case "Delete all my tables and data":
|
case "Delete all my tables and data":
|
||||||
$subtitle = "Deleting Tables";
|
$subtitle = "Deleting Tables";
|
||||||
@ -71,6 +69,7 @@
|
|||||||
|
|
||||||
echo "<table border=\"1\" width=\"100%\" cellspacing=\"0\" cellpadding=\"2\">";
|
echo "<table border=\"1\" width=\"100%\" cellspacing=\"0\" cellpadding=\"2\">";
|
||||||
echo ' <tr><td align="left" bgcolor="486591"><font color="fefefe">Step 1 - database management</td><td align="right" bgcolor="486591"> </td></tr>';
|
echo ' <tr><td align="left" bgcolor="486591"><font color="fefefe">Step 1 - database management</td><td align="right" bgcolor="486591"> </td></tr>';
|
||||||
|
$phpgw_info["setup"]["stage"]["db"] = $phpgw_setup->check_db();
|
||||||
switch($phpgw_info["setup"]["stage"]["db"]){
|
switch($phpgw_info["setup"]["stage"]["db"]){
|
||||||
case 1:
|
case 1:
|
||||||
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td><form action="index.php" method=post>Your database does not exist.<br> <input type=submit value="Create one now"></form></td></tr>';
|
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td><form action="index.php" method=post>Your database does not exist.<br> <input type=submit value="Create one now"></form></td></tr>';
|
||||||
@ -175,6 +174,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
echo ' <tr><td align="left" bgcolor="486591"><font color="fefefe">Step 2 - Configuration</td><td align="right" bgcolor="486591"> </td></tr>';
|
echo ' <tr><td align="left" bgcolor="486591"><font color="fefefe">Step 2 - Configuration</td><td align="right" bgcolor="486591"> </td></tr>';
|
||||||
|
$phpgw_info["setup"]["stage"]["config"] = $phpgw_setup->check_config();
|
||||||
switch($phpgw_info["setup"]["stage"]["config"]){
|
switch($phpgw_info["setup"]["stage"]["config"]){
|
||||||
case 1:
|
case 1:
|
||||||
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td>Please configure phpGroupWare for your environment.';
|
echo '<tr><td align="center"><img src="'.$phpgw_info["server"]["app_images"].'/incomplete.gif" alt="O" border="0"></td><td>Please configure phpGroupWare for your environment.';
|
||||||
|
Loading…
Reference in New Issue
Block a user