Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
php /
templates /
bce /
Delete
Unzip
Name
Size
Permission
Date
Action
feedbackformsreport.php
3.94
KB
-rw-r--r--
2026-08-24 10:15
feedbackformsreportexport.php
1.93
KB
-rw-r--r--
2026-08-24 10:15
guideline-view.php
1.23
KB
-rw-r--r--
2026-02-13 11:49
guideline.php
4.36
KB
-rw-r--r--
2026-02-13 11:49
memorandum.php
3.7
KB
-rw-r--r--
2026-08-24 10:15
Save
Rename
<?php /** * BCE Guideline single post content template. * Expects: $post (array or false), $baseUrl (e.g. '/cesanet', '/cceconvenors', '/cceadmin') */ if (!isset($baseUrl)) { $baseUrl = '/cesanet'; } if (!function_exists('bce_guideline_wpautop')) { function bce_guideline_wpautop($content) { $content = str_replace("\r\n", "\n", $content); $content = str_replace("\r", "\n", $content); $paragraphs = explode("\n\n", $content); $formatted = ''; foreach ($paragraphs as $paragraph) { $paragraph = trim($paragraph); if (!empty($paragraph)) { $formatted .= '<p>' . $paragraph . '</p>'; } } return $formatted; } } ?> <div class="text-end"> <a href="<?php echo htmlspecialchars($baseUrl); ?>/guideline.php" class="btn">Back to Introduction</a> </div> <?php if (is_array($post) && count($post) > 0) { ?> <div class="content-block"> <h1><?php echo htmlspecialchars($post['post_title']); ?></h1> <div class="post-content"> <?php echo bce_guideline_wpautop($post['post_content']); ?> </div> </div> <?php } else { echo '<div class="content-block"><p>Post not found or not published.</p></div>'; }