PDF rausgenommen
This commit is contained in:
51
msd2/msd/index.php
Normal file
51
msd2/msd/index.php
Normal file
@ -0,0 +1,51 @@
|
||||
<?php
|
||||
/* ----------------------------------------------------------------------
|
||||
|
||||
MyOOS [Dumper]
|
||||
http://www.oos-shop.de/
|
||||
|
||||
Copyright (c) 2016 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();
|
||||
die();
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<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">
|
||||
</frameset>
|
||||
</html>
|
||||
<?php
|
||||
ob_end_flush();
|
Reference in New Issue
Block a user