1
|
<?php
|
2
|
/* $Id$ */
|
3
|
/*
|
4
|
Copyright (C) 2005 Bill Marquette <bill.marquette@gmail.com>.
|
5
|
All rights reserved.
|
6
|
|
7
|
Redistribution and use in source and binary forms, with or without
|
8
|
modification, are permitted provided that the following conditions are met:
|
9
|
|
10
|
1. Redistributions of source code must retain the above copyright notice,
|
11
|
this list of conditions and the following disclaimer.
|
12
|
|
13
|
2. Redistributions in binary form must reproduce the above copyright
|
14
|
notice, this list of conditions and the following disclaimer in the
|
15
|
documentation and/or other materials provided with the distribution.
|
16
|
|
17
|
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
18
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
19
|
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
20
|
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
21
|
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
22
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
23
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
24
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
25
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
26
|
POSSIBILITY OF SUCH DAMAGE.
|
27
|
*/
|
28
|
|
29
|
require_once("guiconfig.inc");
|
30
|
require_once("system.inc");
|
31
|
$pgtitle = "Restarting mini_httpd";
|
32
|
include("head.inc");
|
33
|
?>
|
34
|
|
35
|
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
|
36
|
<form>
|
37
|
<?php include("fbegin.inc"); ?>
|
38
|
|
39
|
<p class="pgtitle"><?php echo $pgtitle; ?></p>
|
40
|
|
41
|
Mounting file systems read/write...
|
42
|
<?php flush(); sleep(1); conf_mount_rw(); ?>
|
43
|
Done.<br>
|
44
|
Forcing all PHP file permissions to 0755...
|
45
|
<?php flush(); sleep(1); system('chmod -R 0755 /usr/local/www/*.php'); ?>
|
46
|
Done.<br>
|
47
|
Mounting file systems read only...
|
48
|
<?php flush(); sleep(1); conf_mount_ro(); ?>
|
49
|
Done.<br>
|
50
|
Restarting mini_httpd...
|
51
|
<?php flush(); sleep(1); system_webgui_start(); ?>
|
52
|
Done.<br>
|
53
|
|
54
|
<?php
|
55
|
include("fend.inc");
|
56
|
?>
|