EPGBill.com

From TMM Wiki
Jump to navigationJump to search
NATS 4
Members Admin
The Members Admin
View Member Details
Add Member
MySQL Auth
Mod Authn DB
Multisite Access
Member Logging
Member Password Retrieval
OpenID Connect
Mod Auth OpenIDC
ID Numbers
    Biller Instructions
NATS4 Biller List
2000Charge
2000Charge Gateway
2KCHARGE
A1Payments
Aebill
Aconti
Allopass
AltoBilling
Argus
Authorize.net
Bill1st Gateway
BillAPay Gateway
Billing Revolution
Billing United
Bit-Pay
BoaCompra
Braintree Payments
C2Bill
CardFlex
CCBill
CCBill Flexform
CCBill Web900
CashSend
CashtoCode
Centili
Centrobill
Clearcard
Clearcard IDV
Click and Buy
CoinGate
CoinPayments
CommerceGate
CurePay
DHD
DHDGateway
DIMOCO
EGatePay
ElectraCash
eMerchantPay Gateway
eMPPay.com
Epoch
Escalion
EuroBill
EPGBill.com
Ezic, Inc.
Focal Payments
FXBilling
FXBilling Native
Gateway tokens
Gigadat
Global Access
GlobalCharge
Global DPS
GoCoin
Greta 11 (G11Bill)
GTBill
GTBill GATEWAY
GXBill
ICN Ltd.
Itelebill
Jettis International
Jettis International Gateway
LocalBilling
MobiusPay
MerlinBill
NETbilling
NETbilling Native
NetCash
NetMobile
Netpay International
NoCreditCard
OrbitalPay
Password By Phone
Pay4
Pay900
Payment Network
Paygarden
Paygea
PayPal
Paysite Cash
Payspace
Payspace Gateway
Plug'n Pay
Prime Orange
Probiller
PumaPay
Rocketfuel
RocketGate
RocketGate Native
RSBilling
RSBilling Native
SafeCharge
SafeCharge Native
Secure Billing Worldwide
Secure Billing Worldwide Gateway
Secure Trading
SecurionPay
SegPay
SegPay Gateway
SOFORTdauerauftrag
Sonic Bill
StandardBill
TrustCharge
Telecom
UKash
Vendo Services
Vendo
Verotel Pro
Voxtel
VXSBill
WebBilling
Wispay
WTS
WTSeu
Zombaio
Shopping Cart Sales
Switching From Epoch to Epoch EU

Setting Up at EPGBill.com

Before you can begin configuring EPGBill.com in NATS4, you must first register an account with them. This can be done through their website at http://www.epgbill.com/contact.

While registering with EPGBill.com, make sure to take down the Merchant ID, Merchant Guid, Site URL, Email, Phone, and Content Provided By name. This information will be necessary for setting up EPGBill.com in NATS4.

Setting Up EPGBill.com in NATS

Billers Admin

To begin setting up EPGBill.com in NATS, go to the Billers Admin. Scroll down to the "Setup New Biller" drop-down menu, select EPGBill.com, and click "Add New Option."

Note: If you don't see EPGBill.com, put in a support ticket, as you may need an updated version of NATS.

Fill in the Merchant ID and Merchant Guid that were provided to you by EPGBill.com. If you were not provided with this information, please contact them.

Sites Admin

Next, go to the Sites Admin, create or edit a tour, and scroll down to the "Biller Details" section. Find the "EUROPAY" settings, and and enter your Site URL, Email, Phone, and Content Provided By name. This information will be provided to you by EPGBill.com.

Note: The shortname for EPGBill.com in NATS is "EUROPAY"

Once you have done that, scroll down to the "Join Options for this Tour" section and create or edit a join option to add EPGBill.com compatibility. Under "Biller Codes", choose the currency type that you want EPGBill.com to record your transactions under. The default setting for this is US Dollar.

Additionally, you must add rules in order for this join option to show on your join page. You can do so by using the "Rules" action icon, marked with purple arrows. For more information on adding rules in NATS, please see our NATS4 Rules wiki article.

Editing Site Templates

Before you can begin processing NATS transactions for surfers from the U.S. and Canada through EPGBill.com, you must also get their state information. Without retrieving the state that the surfer is located in, this biller transaction will fail for surfers based in the U.S. and Canada.

To avoid facing this issue, you can insert code on your join page template in order to retrieve this information. This can be done through the Sites Admin. Simply edit the site templates for the join page you wish to change, and edit the subsequent join template.

You can use the following code to retrieve state information from your surfers:

<div> 
	<label>State:</label> 
	{assign var=state value=$vars.state|default:$mdata.state|default:''}
	<select name="signup[state:1]" id="state">
		{foreach from=$states item="state_name" key="state_iso"}
			{if $state_iso == 'ACT' || $state_iso == 'NSW' || $state_iso == 'NT' || $state_iso == 'QLD' || $state_iso == 'SA' || $state_iso == 'TAS' || $state_iso == 'VIC' || $state_iso == 'WAU'}
				{* Skip over Australia states *}
			{else}
				{if $state_iso == 'XX'}
					{assign value="Outside US/Canada" var="state_name"}
				{/if}
				<option label="{$state_name}" value="{$state_iso}" {if $state == $state_iso}selected{/if} >{$state_name}</option>
			{/if}
		{/foreach}
	</select>
</div>

This will display a drop-down menu where the user will be able to select the state that they are located in.