I had a erro when a made a payment the rederect link was with a dubbel slash it was somting like this
www.youtdomain.com//index.php?..........
I have found the code to reduce the dubbel slach to one slash its in the helper.p2dxt.php file on line 43
change
| Code: |
$returnurl = htmlentities($uri->root()."/index.php?option=com_p2dxt&task=confirm"«»);
$cancelurl = htmlentities($uri->root()."/index.php?option=com_p2dxt&task=init&p2did=".$id);
|
in to
| Code: |
$returnurl = htmlentities($uri->root()."index.php?option=com_p2dxt&task=confirm"«»);
$cancelurl = htmlentities($uri->root()."index.php?option=com_p2dxt&task=init&p2did=".$id);
|
but stil i get a blank page when a made a payment and no download page??????