I'm trying to create a Thank You page hosted within my website but am having some problems. When I put the page up and tested it by using a coupon to get a free download, I received a message that the "payment processor has not yet informed us about your payment..." and no download link was provided (a fully copy of the message is provided below). The payment status for my transactions is complete according to my logs, and even though it shouldn't matter, I verified that my IPN in Paypal was enabled.
I have followed the directions included in E-Junkie's website about this matter (http://www.e-junkie.com/ej/tips.redirection.download-link.htm) and chose to use the javascript method, which I have included my script below as well.
Let me know if you have any ideas. At this point I am pretty clueless.
MESSAGE FROM CUSTOM THANK YOU PAGE
The payment processor has not yet informed us about your payment. Your order will be processed as soon as they inform us about the payment.
If required, any information related to this order will be emailed to you. If you do not see the email in your inbox, please check your spam filter or bulk email folder.
Please contact mycollegecoaches@gmail.com for any questions.
JAVASCRIPT USED IN CUSTOM THANK YOU PAGE
<script type="text/javascript">
<!--
function gup( name )
{
name = name.replace(/[[]/,"\[").replace(/[\]]/,"\]");
var regexS = "[\?&]"+name+"=([^&#]*)";
var regex = new RegExp( regexS );
var results = regex.exec( window.location.href );
if( results == null )
return "";
else
return results[1];
}
document.write("<iframe
src=http://www.e-junkie.com/ecom/rp.php?noredirect=true&clientid=134255&txn_id="
+gup('txn_id')+" style='width:100%;'></iframe>");
// -->
</script><noscript>This page requires JavaScript to display your download link. You can either enable JavaScript in your browser and reload this page, or contact the seller to get a direct link to a download page that will work without JavaScript.</noscript>