Newalan wrote:The instructions in WIKI says to use the TEST transaction you need to change
FROM:
$olpform = array('url' => 'https://select.worldpay.com/wcc/purchase'
TO:
$olpform = array('url' => 'https://select-test.worldpay.com/wcc/purchase'
But the script has different URL, I suspect the script was written before WorldPay became a part of RBS but the software shows script below. So how do I need to modify the code below to activate TEST mode?
$olpform = array('url' => 'https://secure.wp3.rbsworldpay.com/wcc/purchase',
Alan
Reference my last post I had a good nosey around the Worldpay knowledgebase for testing and they suggest:
$olpform = array('url' =>
'https://select-test.wp3.rbsworldpay.com/wcc/purchase',
'button' => 'Continue',
'fields' => array());
Of course their's is an HTML version but the https link is what I was after.
The above seems to work ok accept I am getting callback failure (I suspect it so because I am still using IP adress to acces the site).
Once I have my domain name transfered from the last place and I have changed the name server and run installer.php again, I will test again to see if I have cured the callback error.
Alan