| Server IP : 10.200.247.200 / Your IP : 216.73.217.19 Web Server : Apache System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : jeremy ( 1001) PHP Version : 8.4.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/usa_sites/fundingapplications.com/membersonly/ |
Upload File : |
<?php
if(strstr($_SERVER['REMOTE_ADDR'],'74.211.31') !== false) {
die('Unauthorized IP'); //74.211.31.213 dustin's office ip
}
require_once($_SERVER['DOCUMENT_ROOT'].'/inc/globals.php');
require_once($_SERVER['DOCUMENT_ROOT'].'/inc/AuthLCAPI.php');
//Member Authentication Object
$auth = new AuthLCAPI;
if(!$auth->isLoggedIn()) {
ob_clean();
header('location: '.$auth->loginPageUrl);
exit();
}
$body_id = 'member_side';
require_once($_SERVER['DOCUMENT_ROOT']."/assets/globals.php");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php include 'header_daniel.php'; ?>
</head>
<body id="<?=($body_id) ? $body_id : '';?>" class="text-center">
<div class='logo'>
<div class='container'>
<a href='/index.php'>
<img src='/images/logo.png'>
</a>
</div>
</div>
<div id="bg_container">
<div id="main" class='container text-left'>
<div class='in'>
<div class='content-wrap'>
<div class='col-md-3'>
<?php include 'nav_daniel.php'; ?>
</div>
<div class='col-md-9'>
<?php
if(empty($dont_show_get_some_grants)) {
echo '<div id="site_feedback" class="hidden-xs" style="clear:right; margin: 20px 0 0 15px; float: right;" >';
if(!empty($_SESSION['user_subscriptions']['id_2'])) {
echo file_get_contents("http://thegrantresearchdatabase.com/get_some_grants.php?pass=LemmeIN&site=fa&client_id=".$_SESSION['user_subscriptions']['id_2']['user_id']);
} else {
echo file_get_contents("http://thegrantresearchdatabase.com/get_some_grants.php?upsell=1&pass=LemmeIN&site=fa&client_id=".$_SESSION['user_subscriptions']['id_1']['user_id']);
}
echo '</div>';
}
?>
<?php echo $pageHtml; ?>
</div>
<div class='clearfix'></div>
</div>
</div>
</div>
<?php include 'footer_daniel.php'; ?>
</div>
</body>
</html>