Edit File: rocketgate.tpl
<div class="control-group"> <label class="control-label" for="login">{__("login")}:</label> <div class="controls"> <input type="text" name="payment_data[processor_params][login]" id="login" value="{$processor_params.login}" > </div> </div> <div class="control-group"> <label class="control-label" for="transaction_key">{__("transaction_key")}:</label> <div class="controls"> <input type="text" name="payment_data[processor_params][transaction_key]" id="transaction_key" value="{$processor_params.transaction_key}" > </div> </div> <div class="control-group"> <label class="control-label" for="md5_hash_value">{__("md5_hash_value")}:</label> <div class="controls"> <input type="text" name="payment_data[processor_params][md5_hash_value]" id="md5_hash_value" value="{$processor_params.md5_hash_value}" > </div> </div> <div class="control-group"> <label class="control-label" for="transaction_type">{__("transaction_type")}:</label> <div class="controls"> <select name="payment_data[processor_params][transaction_type]" id="transaction_type"> <option value="P" {if $processor_params.transaction_type == "P"}selected="selected"{/if}>{__("authorize_capture")}</option> <option value="A" {if $processor_params.transaction_type == "A"}selected="selected"{/if}>{__("authorize_only")}</option> </select> </div> </div> <div class="control-group"> <label class="control-label" for="currency">{__("currency")}:</label> <div class="controls"> <select name="payment_data[processor_params][currency]" id="currency"> <option value="USD" {if $processor_params.currency == "USD"}selected="selected"{/if}>{__("currency_code_usd")}</option> <option value="GBP" {if $processor_params.currency == "GBP"}selected="selected"{/if}>{__("currency_code_gbp")}</option> <option value="EUR" {if $processor_params.currency == "EUR"}selected="selected"{/if}>{__("currency_code_eur")}</option> <option value="AUD" {if $processor_params.currency == "AUD"}selected="selected"{/if}>{__("currency_code_aud")}</option> <option value="CAD" {if $processor_params.currency == "CAD"}selected="selected"{/if}>{__("currency_code_cad")}</option> <option value="JPY" {if $processor_params.currency == "JPY"}selected="selected"{/if}>{__("currency_code_jpy")}</option> </select> </div> </div> <div class="control-group"> <label class="control-label" for="mode">{__("test_live_mode")}:</label> <div class="controls"> <select name="payment_data[processor_params][mode]" id="mode"> <option value="test" {if $processor_params.mode == "test"}selected="selected"{/if}>{__("test")}</option> <option value="live" {if $processor_params.mode == "live"}selected="selected"{/if}>{__("live")}</option> </select> </div> </div> <div class="control-group"> <label class="control-label" for="order_prefix">{__("order_prefix")}:</label> <div class="controls"> <input type="text" name="payment_data[processor_params][order_prefix]" id="order_prefix" value="{$processor_params.order_prefix}" > </div> </div> <hr> <p> <b>Testing Info:</b> This info will return the specified responses in demo mode and will have no effect on live mode where real data is required. <br/>Refer to the Test_Values_and_Responses.pdf documentation for a complete list of scripted test values and responses. <br/><br/><b>Test Credit Card Numbers:</b> <br>Visa#: 4012 8888 8888 1881 <br>MC#: 5105 1051 0510 5100 <br>Discover#: 6011 1111 1111 1117 <br>AMEX#: 3782 822 4631 0005 <br><br> Any future date can be used for the expiration date. <br/><br/><b>Test CVV Numbers:</b> <br/>No Match: 0001 <br/>Not processed: 0002 <br/>Should have been present: 0003 <br/>Unable to process: 0004 <br/><br/>Any other 3 or 4 digit number can be used for the CVV Code. <br/><br/><b>Test Zip Codes (AVS tests):</b> <br/>Street match, Zip No Match: 00001<br/>No Match: 00008 <br>Exact Match: 00015 <br/><br/><a href="http://www.rocketgate.com/" target="_blank">RocketGate</a> </p>
Back to File Manager