Just to clarify the code for secure and non-secure callback.
For non-secure callback in the WorldPay control panel set the callback url to:
Code:
http://<wpdisplay item="MC_callback">
and in includes/modules/payment/worldpay.php at lines 128 and 129 the code should be:
Code:
$callback_url = zen_href_link(FILENAME_WPCALLBACK, $zenId);
$worldpay_callback = explode('http://', $callback_url);
For secure callback in the WorldPay control panel set the callback url to:
Code:
https://<wpdisplay item="MC_callback">
and in includes/modules/payment/worldpay.php at lines 128 and 129 the code should be:
Code:
$callback_url = zen_href_link(FILENAME_WPCALLBACK, $zenId, 'SSL');
$worldpay_callback = explode('https://', $callback_url);
Sorry for any confusion my previous post on this may have caused.
Alan
Bookmarks