| 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/pcisecureform.com/lcapi/ |
Upload File : |
<?
require_once("{$_SERVER["DOCUMENT_ROOT"]}/lcapi/inc/BumpUser.php");
require_once("{$_SERVER["DOCUMENT_ROOT"]}/lcapi/inc/Logger.php");
SendDebug("BumpSale.php");
$user = new BumpUser();
$result = $user->LoadUser();
if (!$result)
{
SendError("BumpSale.php::LoadUser()",$user->lasterror);
die("Failure: " . $user->lasterror);
}
$result = $user->DoBump();
#$result = true;
if (!$result)
{
SendError("BumpSale.php::DoBump()",$user->lasterror);
die("Failure: " . $user->lasterror);
}
$user->SaveBillingResult();
die("Success: " . $user->userid);
/*
$result = $user->SaveBillingResult();
if (!$result)
{
// OK, not a HUGE deal, but a slight problem nonetheless.
// We were able to create an account for the user but we weren't able
// to save their billing information. This is not a fatal error
// the function SaveBillingResult takes care of sending us some debug info
}
// If we got here then everything is good!
// Send them their welcome email!
// if sendemail is set to 'no', then don't send the welcome email
$sendemail = ($_POST['sendemail'] == 'no') ? 'no' : 'yes';
$sendemail = ($_GET['sendemail'] == 'no') ? 'no' : $sendemail;
if ($sendemail == 'yes')
{
$user->SendWelcomeEmail();
}
die("Success: " . $user->userid);
*/
?>