-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_requirements.php
More file actions
37 lines (31 loc) · 814 Bytes
/
Copy pathtest_requirements.php
File metadata and controls
37 lines (31 loc) · 814 Bytes
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
<?php
include_once 'common.inc';
PageHeader("Requirements Test");
?>
<body>
<div class="container">
<div class="row justify-content-center mt-4">
<div class="col-lg-10">
<?php
displayRequirementsCheck();
// Additional standalone htaccess test
$result = checkHtaccessSupport();
?>
<div class="card mt-4">
<div class="card-header bg-info text-white">
<h5 class="mb-0">Standalone htaccess Detection Test</h5>
</div>
<div class="card-body">
<p><strong>Status:</strong> <?php echo $result['status'] ? 'Working' : 'Not Working'; ?></p>
<p><strong>Message:</strong> <?php echo htmlspecialchars($result['message']); ?></p>
<p><strong>Fix:</strong> <?php echo htmlspecialchars($result['fix']); ?></p>
</div>
</div>
</div>
</div>
</div>
<?php
PageFooter('TippingPoint', 'test@example.com', '1.3.0');
?>
</body>
</html>