52 lines
1.4 KiB
PHP
52 lines
1.4 KiB
PHP
<?php
|
|
/* ----------------------------------------------------------------------
|
|
|
|
MyOOS [Dumper]
|
|
http://www.oos-shop.de/
|
|
|
|
Copyright (c) 2013 - 2022 by the MyOOS Development Team.
|
|
----------------------------------------------------------------------
|
|
Based on:
|
|
|
|
MySqlDumper
|
|
http://www.mysqldumper.de
|
|
|
|
Copyright (C)2004-2011 Daniel Schlichtholz (admin@mysqldumper.de)
|
|
----------------------------------------------------------------------
|
|
Released under the GNU General Public License
|
|
---------------------------------------------------------------------- */
|
|
|
|
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();
|
|
exit();
|
|
}
|
|
?>
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="robots" content="noindex,nofollow" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
|
<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">
|
|
</frameset>
|
|
</html>
|
|
<?php
|
|
|
|
ob_end_flush();
|
|
exit();
|