2000-11-30 22:25:14 +01:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - Setup *
|
|
|
|
* 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$ */
|
2000-12-27 10:05:13 +01:00
|
|
|
|
|
|
|
/* ######## Start security check ########## */
|
2000-12-23 10:43:04 +01:00
|
|
|
$d1 = strtolower(substr($phpgw_info["server"]["api_inc"],0,3));
|
|
|
|
$d2 = strtolower(substr($phpgw_info["server"]["server_root"],0,3));
|
|
|
|
$d3 = strtolower(substr($phpgw_info["server"]["app_inc"],0,3));
|
|
|
|
if($d1 == "htt" || $d1 == "ftp" || $d2 == "htt" || $d2 == "ftp" || $d3 == "htt" || $d3 == "ftp") {
|
|
|
|
echo "Failed attempt to break in via an old Security Hole!<br>\n";
|
|
|
|
exit;
|
|
|
|
} unset($d1);unset($d2);unset($d3);
|
2000-12-27 10:05:13 +01:00
|
|
|
/* ######## End security check ########## */
|
2000-11-30 22:25:14 +01:00
|
|
|
|
|
|
|
// Include to check user authorization against the
|
|
|
|
// password in ../header.inc.php to protect all of the setup
|
|
|
|
// pages from unauthorized use.
|
|
|
|
|
2000-12-31 10:50:16 +01:00
|
|
|
if(file_exists("../version.inc.php")) {
|
2000-11-30 22:25:14 +01:00
|
|
|
include("../version.inc.php"); // To set the current core version
|
|
|
|
}else{
|
2000-12-21 21:43:26 +01:00
|
|
|
$phpgw_info["server"]["versions"]["phpgwapi"] = "Undetected";
|
2000-11-30 22:25:14 +01:00
|
|
|
}
|
|
|
|
|
2000-12-19 23:40:54 +01:00
|
|
|
$phpgw_info["server"]["app_images"] = "templates/default/images";
|
|
|
|
|
2001-01-02 09:15:12 +01:00
|
|
|
if(file_exists("../header.inc.php")) { include("../header.inc.php"); }
|
2001-01-02 09:11:00 +01:00
|
|
|
|
2000-12-27 10:05:13 +01:00
|
|
|
include("./inc/phpgw_setup.inc.php");
|
2001-01-04 21:32:09 +01:00
|
|
|
// include("./inc/phpgw_schema_proc.inc.php");
|
2000-12-27 10:05:13 +01:00
|
|
|
$phpgw_setup = new phpgw_setup;
|
|
|
|
?>
|