forked from DSB/MySQLDumper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
52 lines (43 loc) · 1.35 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/**
* ---------------------------------------------------------------------
MyOOS [Dumper]
https://www.oos-shop.de/
Copyright (c) 2013 - 2024 by the MyOOS Development Team.
----------------------------------------------------------------------
Based on:
MySqlDumper
https://www.mysqldumper.de
Copyright (C)2004-2011 Daniel Schlichtholz ([email protected])
----------------------------------------------------------------------
Released under the GNU General Public License
----------------------------------------------------------------------
*/
define('OOS_VALID_MOD', true);
if (!@ob_start('ob_gzhandler')) {
@ob_start();
}
require './inc/functions.php';
$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" />
<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();