| Server IP : 208.122.213.31 / Your IP : 216.73.216.185 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/httpd/html/store.tiacyrusxxx.com/public_html/ |
Upload File : |
<?php
@file_put_contents("array.json",json_encode($_POST));
if (isset($_POST['amount'])) {
include ('site.config.php');
$posData = trim($_POST['posData']); $Ecom_Ezic_Misc_Information = $posData;
$action = trim($_POST['action']);
$amount = trim($_POST['amount']);
$invoice_id = trim($_POST['invoice_id']);
$status = trim($_POST['status']);
$invoice_url = "https://bitpay.com/invoice/" . $invoice_id;
$btcPaid = trim($_POST['btcPaid']);
$btcRate = trim($_POST['rate']);
$Ecom_Ezic_TransactionId = $invoice_id;
$consumer_id = explode("," , $posData);
$consumer_id = $consumer_id[0];
//Get from ecomz_bitpay
$query1 = @mysql_query("SELECT * FROM ecomz_bitpay WHERE consumerID = '" . $consumer_id . "' LIMIT 1") or die(mysql_error());
if (@mysql_num_rows($query1) == 1) {
$result = mysql_fetch_object($query1);
}
//Then delete the value
$query2 = @mysql_query("DELETE FROM ecomz_bitpay WHERE consumerID = '" . $consumer_id . "'");
//Store in bitpay_log table
$bitpay_log = @mysql_query("INSERT INTO bitpay_log (consumerID, cost_Total, receipt_description, misc_Information,
billTo_Online_Email, action, invoice_id, amount, status, bitpay_invoice_id, btcPaid, btcRate, invoice_url
)
VALUES
(
'". $consumer_id ."',
'". $amount ."',
'". $result->receipt_description ."',
'". $result->misc_Information ."',
'". $result->billTo_Online_Email ."',
'". $action ."',
'". $invoice_id ."',
'". $amount ."',
'". $status ."',
'". $invoice_id ."',
'". $btcPaid ."',
'". $btcRate ."',
'". $invoice_url ."'
)
") or die(mysql_error());
$amount_remaining = $amount;
$items = explode(";", $Ecom_Ezic_Misc_Information);
foreach ($items as $item) {
$itemInfo = explode(",", $item);
if(isset($itemInfo[1])) {
$t_memberID = $itemInfo[0];
$t_cartID = $itemInfo[1];
$t_itemType = $itemInfo[2];
$t_itemID = $itemInfo[3];
$t_itemPrice = $itemInfo[4];
$t_relatedID = $itemInfo[5];
if($amount_remaining > 0)
{
$amount_remaining = $amount_remaining - $t_itemPrice;
}
else
{
break;
}
if($t_itemType < 3) {
$setStatus = 1;
} else {
$setStatus = 0;
}
$purchaseAdd = @mysql_query("INSERT INTO cms_billing_purchases SET
purchaseDate = '".$timestamp ."',
memberID = '" . $t_memberID . "',
transactionID = '".$Ecom_Ezic_TransactionId."',
itemType = '" . $t_itemType . "',
itemID = '" . $t_itemID . "',
status = '" . $setStatus . "',
itemPrice = '" . $t_itemPrice . "',
relatedID = '" . $t_relatedID . "'");
if($t_itemType == 3) { // Custom
$customUpdate = @mysql_query("UPDATE cms_billing_custom SET status = '1' WHERE customID = '".$t_relatedID."'");
$customDetails = cartCustomDetails($t_memberID, $t_relatedID);
notificationEmail(1,$customDetails->modelID,"customOrder");
} elseif ($t_itemType == 4) { // Private
$customUpdate = @mysql_query("UPDATE cms_billing_custom SET status = '1' WHERE customID = '".$t_relatedID."'");
$customDetails = cartCustomDetails($t_memberID, $t_relatedID);
notificationEmail(1,$customDetails->modelID,"customOrder");
} elseif ($t_itemType == 6) { // Private
$privateUpdate = @mysql_query("UPDATE cms_billing_private SET status = '1' WHERE privateID = '".$t_relatedID."'");
$privateDetails = cartPrivateDetails($t_memberID, $t_relatedID);
notificationEmail(1,$customDetails->modelID,"privateOrder");
}
$cartClear = @mysql_query("DELETE FROM cms_billing_cart WHERE cartID = '" . $t_cartID . "' AND memberID = '" . $t_memberID . "'");
}
}
}
?>