Sandbox (Test) of Productie (Live) Omgeving en
2023-04-18 13:49:15
Payment Providers

In het Configuration-bestand in de map../idealcheckout/configuration/ tref je de volgende informatie aan:

In de configuration treft u de volgende informatie aan:
 
// Use TEST/LIVE mode; true=TEST, false=LIVE
 
$aSettings['TEST_MODE'] = false;
 
 
false=LIVE
Dit is de Productie, oftewel de Live omgeving
 
true=TEST
Dit is de Sandbox, oftewel de Test omgev

// Use TEST/LIVE mode; true=TEST, false=LIVE
$aSettings['TEST_MODE'] = false;

Deze code geeft aan of de TEST MODE aan of uit staat. In de configuration file wordt namelijk uitgegaan of er gebruik wordt gemaakt van de Sandbox (TEST) Omgeving. Oftwel staat, TEST MODE AAN of UIT ?

Om te weten welke omgeving je aanroept, hebben wij hieronder de twee omgevingen benoemt.

Productie Omgeving/Live Omgeving
false=LIVE

Als bij
--------------------------------------------------------------
$aSettings['TEST_MODE'] = false;
--------------------------------------------------------------
staat, betekent dit dat de TEST_MODE op False oftewel UIT staat.
Op dat moment comuniceer je met de Productie-omgeving (LIVE)


Sandbox omgeving/test omgeving

true=TEST

Als bij
--------------------------------------------------------------
$aSettings['TEST_MODE'] = true;
--------------------------------------------------------------
staat, betekent dit dat de TEST_MODE op True oftewel AAN staat. 
Dit houdt in dat je communiceert met de Sandbox omgeving (TEST)


Is this article useful?
0 visitor(s) found this article useful