MOON
Server: Apache
System: Linux e2e-78-16.ssdcloudindia.net 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
User: imensosw (1005)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/imensosw/www/imenso.co/dev/spotilicious/sources/page.php
<?php
if (isset($_GET['p'])) {
    if (Wo_PageExists($_GET['p']) === true && Wo_PageActive($_GET['p'])) {
        $page_id            = Wo_PageIdFromPagename($_GET['p']);
        $wo['page_profile'] = Wo_PageData($page_id);
    } else {
        header("Location: " . Wo_SeoLink('index.php?link1=404'));
        exit();
    }
} else {
    header("Location: " . $wo['config']['site_url']);
    exit();
}
if (isset($_GET['boosted']) && $wo['config']['pro'] == 1 && $wo['loggedin'] == true && $wo['page_profile']['boosted'] == 0) {
	if ($wo['page_profile']['is_page_onwer'] == true) {
		if ($wo['user']['is_pro'] == 1) {
			if ($wo['user']['pro_type'] > 1) {
				$array = array('boosted' => 1);
				$update = Wo_UpdatePageData($page_id, $array);
			}
		}
	}
}
if ($wo['config']['pages'] == 0) {
    header("Location: " . Wo_SeoLink('index.php?link1=welcome'));
    exit();
}
$wo['description'] = $wo['page_profile']['page_description'];
$wo['keywords']    = '';
$wo['page']        = 'page';
$wo['title']       = $wo['page_profile']['name'];
$wo['content']     = Wo_LoadPage('page/content');