-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.php
executable file
·61 lines (52 loc) · 2.1 KB
/
notes.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
53
54
55
56
57
58
59
60
61
<?php
include ('inc/header.php');
?>
<div id="navigation">
<ul>
<li><a href="index.php" ><span>home</span></a></li>
<li><a href="#" class="active"><span>notes</span></a></li>
<li><a href="credits.php"><span>credits</span></a></li>
<li><a href="contact.php"><span>contact</span></a></li>
</ul>
<div class="cl"> </div>
</div>
</div>
<!-- END Logo + Description + Navigation -->
<!-- Header -->
<div id="header">
<!-- Slider -->
<div id="slider">
<div class="top">
<div class="bot">
<div class="slide-info">
<div id="slider">
<div class="top">
<div class="bot">
<div class="slide-info">
<h2 >Important Notes:</h2>
<table align="center">
<ol >
<tr><td ><li>Before you start fixing security configuration settings, make sure that you backup original configurations for PHP, Apache and MySQL for easy recovery.</li></td></tr>
<tr><td ><li>In all the cases, PHP is assumed to be installed as Apache module.</li></td></tr>
<tr><td ><li>Make sure that other web servers (e.g. IIS) are not listening on the same port number as Apache to avoid conflicts.</li></td></tr>
<tr><td ><li>All configuration directives viewed after audit are security critical ones.</li></td></tr>
</ol>
</table>
</div>
</div>
</div>
</div>
<br />
</div>
</div>
</div>
</div>
<!-- END Slider -->
</div>
<!-- END Header -->
<!-- Main -->
<!-- END Main -->
<!-- Footer -->
<?php
include ('inc/footer.php');
?>