[go: up one dir, main page]

Menu

[r1]: / www / helpa.php  Maximize  Restore  History

Download this file

90 lines (76 with data), 4.0 kB

 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
VMLMAT: VM Linux Management and Archival Tool.
Copyright (c) 2007, Ronnie Michael, BMC Software Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name of the BMC Software Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-->
<html><head><title>VMLMAT VM Linux Management and Archival Tool</title>
<link rel="stylesheet" type="text/css" href="/templates/astyle.css" title="standard"/>
</head><body>
<div id="banner"><h1><a href="index.php">VMLMAT</a></h1><h2>Linux Management System</h2></div>
<div id="leftcontent">
</div>
<div id="centercontent">
<p><b> HELP PAGE</b></p>
<p>
The page allows Users and Support Platform Administrators to perform maintenance functions on this website.
</p>
<p> Current functions </p>
<p>
<b>Admin Machines:</b> Machines html form is added to the directory<br /><br />
<b>Admin Images:</b> Standard image html form is added to the directory <br /><br />
<b>My Profile:</b> Users can update their own profile <br />
Also they may turn off "Notification to Owners" regarding other co-owner activity. <br /><br />
<b>Admin AutoBackups:</b> Users can update the machines they own for automatic backups by cron.<br />
Allows user to specify the number of generations of backups to keep. Refer to crontab docs for help.<br />
Basic cron rules are a logical "and" of the values: min(0-59) hr(0-23) day(1-31) mth(1-12) wkday(0-6) where 0 <br />
is Sunday. So "30 02 * * * would mean at 30 mins and 02 hours and every day of the month and every month <br />
of the year and every day of the week. Basically at 2:30 am every day it would run.<br /><br />
<b>Admin Users:</b> Users can Add/Update or Delete others as co-owners of the hostname. You must supply their <br />
userid and function to give them access to the hostname. This feature is only for Admins of the Hostname. <br />
You can specify * for the userid and this will allow everyone. <br /><br />
The Profile Admin may use the hostname of "profile" and specify the userid and email of the user. <br />
</p>
</div>
<div id="rightcontent">
<?
/* if they bookmark this throw them out if not already validated through auth.php */
session_start();
$user=$_SESSION['user'];
if (empty($user)){
#issue error message
$_SESSION['errmsg']="autherr";
session_write_close();
header("Location: http://".$_SERVER['HTTP_HOST']."/errmsg.php");
exit;
}
print "<p><b>Support links</b><br />";
$rfile = "rlinks.txt";
$fh = fopen($rfile, 'r');
if ($fh) {
while (!feof($fh)) {
$strdata = fgets($fh);
print "$strdata";
}
fclose($fh);
}
print "</p>";
?>
</div>
</body>
</html>