| 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/usafundingapplications.org/ |
Upload File : |
<?php
include($_SERVER['DOCUMENT_ROOT']."/vx/lib/inc.php");
if(!empty($user) && $user > 0)
{
header('location: /vx/usa/members/');
}
if(isset($_REQUEST['user']) && isset($_REQUEST['pass']))
{
$loginSource = $_REQUEST['login_source'];
if(empty($loginSource))
{
$loginSource = "login_page";
}
if($_REQUEST['goto'] == 'alerts')
{
header('location: /vx/usa/alerts/?user='.$_REQUEST['user'].'&pass='.$_REQUEST['pass'].'&login_source='.$loginSource);
}
else
{
header('location: /vx/usa/members/?user='.$_REQUEST['user'].'&pass='.$_REQUEST['pass'].'&login_source='.$loginSource);
}
}
else if (isset($_GET['logout']) && $_GET['logout'] == 1) {
//User Authentication Object
$_SESSION = array();
$message = "You have successfully logged out.";
} else {
header("Location: /vx/usa/members");
}