ftp_ansicht repariert und neues msd

This commit is contained in:
aschwarz
2023-02-11 15:24:36 +01:00
parent f104df7f3b
commit 3dcc93a65d
681 changed files with 96753 additions and 24555 deletions

View File

@ -4,7 +4,7 @@
MyOOS [Dumper]
http://www.oos-shop.de/
Copyright (c) 2016 by the MyOOS Development Team.
Copyright (c) 2013 - 2022 by the MyOOS Development Team.
----------------------------------------------------------------------
Based on:
@ -18,14 +18,16 @@
define('OOS_VALID_MOD', true);
if (!@ob_start("ob_gzhandler")) @ob_start();
include ('./inc/functions.php');
$page=(isset($_GET['page'])) ? $_GET['page'] : 'main.php';
if (!file_exists("./work/config/myoosdumper.php"))
{
header("location: install.php");
ob_end_flush();
die();
if (!@ob_start('ob_gzhandler')) {
@ob_start();
}
include './inc/functions.php';
$page = (isset($_GET['page'])) ? $_GET['page'] : 'main.php';
if (!file_exists('./work/config/myoosdumper.php')) {
header('location: install.php');
ob_end_flush();
exit();
}
?>
<!DOCTYPE HTML>
@ -34,18 +36,16 @@ if (!file_exists("./work/config/myoosdumper.php"))
<meta charset="utf-8" />
<meta name="robots" content="noindex,nofollow" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>MyOOS [Dumper]</title>
</head>
<frameset border=0 cols="190,*">
<frame name="MyOOS_Dumper_menu" src="menu.php" scrolling="no" noresize
frameborder="0" marginwidth="0" marginheight="0">
<frame name="MyOOS_Dumper_content" src="<?php
echo $page;
?>"
scrolling="auto" frameborder="0" marginwidth="0" marginheight="0">
<frame name="MyOOS_Dumper_content" src="<?php echo $page; ?>" scrolling="auto" frameborder="0" marginwidth="0" marginheight="0">
</frameset>
</html>
<?php
ob_end_flush();
exit();