MV_PAYMENT_HOST —
Interchange 5.9.0:
Source: lib/Vend/Payment/Protx2.pm
Line 601 (context shows lines 591-605 in protx():525)
}
}
# wrap around everything to bottom
else {
my %actual = map_actual();
$actual = \%actual;
$opt = {};
#::logDebug("actual map result: " . ::uneval($actual));
$vendor = $opt->{id} || charge_param('id') || $::Variable->{MV_PAYMENT_ID};
$opt->{host} = charge_param('host') || $::Variable->{MV_PAYMENT_HOST} \
\
|| 'ukvpstest.protx.com';
$opt->{use_wget} = charge_param('use_wget') || '1';
$opt->{port} = '443';
if ($txtype =~ /DEFERRED|PAYMENT|AUTHENTICATE|PREAUTH/i) {
Source: lib/Vend/Payment/SagePay.pm
Line 631 (context shows lines 621-635 in sagepay():576)
my $deliveryState;
my %result;
my %query;
my (%actual) = map_actual();
$actual = \%actual;
$opt = {};
$vendor = $opt->{id} || charge_param('id') || $::Variable->{MV_PAYMENT_ID};
$opt->{host} = charge_param('host') || $::Variable->{MV_PAYMENT_HOST} || 'live.sagepay.com';
$sagepayrequest = $opt->{sagepayrequest} = charge_param('sagepayrequest') || 'post';
$opt->{use_wget} = charge_param('use_wget') || '1';
$opt->{port} = '443';
#::logDebug("SP"..": host=$opt->{host}; spreq=$sagepayrequest");