• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Integration plesk eShop with jroxJAM

D

DrazenM

Guest
Hi,

I have a big problem. I'm on Hostgator and using plesk sitebuilder for my website. I want to integrate plesk eShop with jrox JAM for affiliate selling. I don't know how!

So on jrox forums I got this answer:

"you'll have to find out if your eShop can post the sale and transaction data to a thank you page, and what page that is in."

So where I can find thank you page (last page when buying is finished) and other datas.

Please help
 
If you still don't understand - this is copy of integration instruction for jrox JAM and VirtueMart. Maybe this could show how to integrate eShop and jrox JAM



Open up the file /virtuemart/administrator/components/com_virtuemart/html/checkout.result.php.

Scroll down to the end of the file, and paste your integration code right before the ending ?> tag:

############################################
## START JAM INTEGRATION WITH VIRTUE MART ##
############################################

$jam = $db->query("SELECT * FROM #__{vm}_orders WHERE order_id='$order_id'");
$TotalAmount_pre = $db->f('order_subtotal');
$TotalAmount_dis = $db->f('coupon_discount');
$TotalAmount = ($TotalAmount_pre - $TotalAmount_dis);
$TransID = $order_id;
echo '<img border="0" src="http://www.YOURWEBSITE.com/sale.php?amount='.$TotalAmount.'&trans_id='.$TransID.'" width="1" height="1">';

#########################################
## END JAM INTEGRATION WITH VIRTUEMART ##
#########################################

?>

Go ahead and Save the File.

Open up the file /virtuemart/administrator/components/com_virtuemart/html/checkout.thankyou.php and add the same code above.

You now have JAM integrated into your Virtue Mart Shopping Cart.



This is intruction so again please help
 
Back
Top