• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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