Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

Prepaid

Go to CRM | Campaigns and edit a Campaign. Under the Billing Options section enable Block Prepaid Cards:


predebitmaster.png


Edit your landing page config.php file and add the prepaidRedirectUrl directive:

<?php

KformConfig::setConfig(array(
    "isWordpress"=>false,
    "apiLoginId"=>"",
    "apiPassword"=>"",
    "authString"=>"f193e98f598bb4e808e973d5b84e7df9",
    "autoUpdate_allowedIps"=>array("80.248.30.132"),
    "campaignId"=>1,
    "prepaidRedirectUrl"=>'https://mylander.com/checkout.php',
    "resourceDir"=>"resources/"));

Debit

Go to CRM | Campaigns and edit a Campaign. Under the Billing Options section enable Block Debit Cards:


Note: This setting will override any MID settings.

Edit your landing page config.php file and add the debitRedirectUrl directive:

<?php

KformConfig::setConfig(array(
    "isWordpress"=>false,
    "apiLoginId"=>"",
    "apiPassword"=>"",
    "authString"=>"f193e98f598bb4e808e973d5b84e7df9",
    "autoUpdate_allowedIps"=>array("80.248.30.132"),
    "campaignId"=>1,
    "debitRedirectUrl"=>'https://mylander.com/checkout.php',
    "resourceDir"=>"resources/"));

Mastercard

Go to CRM | Campaigns and edit a Campaign. Under the Billing Options section enable Block MasterCard:


Note: This setting will override any MID settings.

Edit your landing page config.php file and add the mastercardRedirectUrl directive:

<?php

KformConfig::setConfig(array(
    "isWordpress"=>false,
    "apiLoginId"=>"",
    "apiPassword"=>"",
    "authString"=>"f193e98f598bb4e808e973d5b84e7df9",
    "autoUpdate_allowedIps"=>array("80.248.30.132"),
    "campaignId"=>1,
  "mastercardRedirectUrl"=>'https://mylander.com/checkout.php',
    "resourceDir"=>"resources/"));
  • No labels