• Hi πŸ™‚

    I have a problem with my installation when trying to checkout with Worldpay. I’m using Dukapress 2.3.3.

    I spoke to a guy at worldpay who told me what the error was, I’m just not sure where to fix it. The problem is with the test and live modes. They have tried to do a test purchase before activating the payment system, but Dukapress is sending the wrong information. Where it should be sending ‘100’ for test mode it is sending ‘test’ and where it should be sending ‘0’ for live mode, it’s sending ‘live’ He also told me it would be a hidden value (not sure if that helps any?)

    I would really appreciate some help with getting this fixed, and I’m a total newbie, so as simply as possible please πŸ™‚

    Thanks in advance,

    Cal

Viewing 3 replies - 1 through 3 (of 3 total)
  • I hope you are well. Please try the following:

    Line 234 in dp-payment.php
    if ($dp_shopping_cart_settings[‘worldpay_testmode’] === ‘100’) {
    that ‘100’ needs to be ‘test’.

    Line 277
    <input type=”hidden” name=”testMode” value=”‘ . $dp_shopping_cart_settings[‘worldpay_testmode’] . ‘” />

    the value should be $testModeVal.

    Once done, it should look like:

    Line 234 in dp-payment.php
    if ($dp_shopping_cart_settings[‘worldpay_testmode’] === ‘test’) {

    Line 277
    <input type=”hidden” name=”testMode” value=”‘ . $testModeVal . ‘” />

    I hope this helps.

    We’ll release an official BugFix release soon.

    Thread Starter Caroline D

    (@caroline-d)

    Thanks very much for the help πŸ™‚

    Caroline

    Did you get it working Caroline? What settings did you use on the Worldpay page?

    Many thanks.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Dukapress Worldpay test mode invalid’ is closed to new replies.