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/start_up.php
<?php
if ($wo['loggedin'] == false) {
    header("Location: " . Wo_SeoLink('index.php?link1=welcome'));
    exit();
}
if (Wo_IsUserComplete($wo['user']['user_id']) === false) {
	header("Location: " . Wo_SeoLink('index.php?link1=welcome'));
    exit();
}
if ($wo['user']['startup_image'] == 0) {
	$page = 'avatar_startup';
} else if ($wo['user']['start_up_info'] == 0) {
	$page = 'info_startup';
} else if ($wo['user']['startup_follow'] == 0) {
	$wo['users'] = Wo_GetFemusUsers();
	if ($wo['config']['connectivitySystem'] == 1 || empty($wo['users'])) {
		Wo_UpdateUserData($wo['user']['user_id'], array('start_up' => 1, 'startup_follow' => 1));
		header("Location: " . Wo_SeoLink('index.php?link1=welcome'));
        exit();
	}
	$page = 'follow_startup';
} else {
	header("Location: " . Wo_SeoLink('index.php?link1=welcome'));
    exit();
}
$wo['description'] = $wo['config']['siteDesc'];
$wo['keywords']    = $wo['config']['siteKeywords'];
$wo['page']        = 'start_up';

$wo['title']       = $wo['lang']['lets_go'];
$wo['content']     = Wo_LoadPage('start_up/' . $page);