Skip to content

Commit e643fa1

Browse files
first commit
0 parents  commit e643fa1

File tree

302 files changed

+11964
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

302 files changed

+11964
-0
lines changed

.github/workflows/hugo.yaml

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
# Sample workflow for building and deploying a Hugo site to GitHub Pages
2+
# Shamelessly copied from https://gohugo.io/hosting-and-deployment/hosting-on-github/
3+
name: Deploy Hugo site to Pages
4+
5+
on:
6+
# Runs on pushes targeting the default branch
7+
push:
8+
branches:
9+
- main
10+
11+
# Allows you to run this workflow manually from the Actions tab
12+
workflow_dispatch:
13+
14+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
15+
permissions:
16+
contents: read
17+
pages: write
18+
id-token: write
19+
20+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
21+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
22+
concurrency:
23+
group: "pages"
24+
cancel-in-progress: false
25+
26+
# Default to bash
27+
defaults:
28+
run:
29+
shell: bash
30+
31+
jobs:
32+
# Build job
33+
build:
34+
runs-on: ubuntu-latest
35+
env:
36+
HUGO_VERSION: 0.136.5
37+
steps:
38+
- name: Install Hugo CLI
39+
run: |
40+
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
41+
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
42+
- name: Install Dart Sass
43+
run: sudo snap install dart-sass
44+
- name: Checkout
45+
uses: actions/checkout@v4
46+
with:
47+
submodules: recursive
48+
fetch-depth: 0
49+
- name: Setup Pages
50+
id: pages
51+
uses: actions/configure-pages@v5
52+
- name: Install Node.js dependencies
53+
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
54+
- name: Build with Hugo
55+
env:
56+
HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache
57+
HUGO_ENVIRONMENT: production
58+
TZ: America/Los_Angeles
59+
run: |
60+
hugo \
61+
--gc \
62+
--minify \
63+
--baseURL "${{ steps.pages.outputs.base_url }}/"
64+
- name: Upload artifact
65+
uses: actions/upload-pages-artifact@v3
66+
with:
67+
path: ./public
68+
69+
# Deployment job
70+
deploy:
71+
environment:
72+
name: github-pages
73+
url: ${{ steps.deployment.outputs.page_url }}
74+
runs-on: ubuntu-latest
75+
needs: build
76+
steps:
77+
- name: Deploy to GitHub Pages
78+
id: deployment
79+
uses: actions/deploy-pages@v4

.gitignore.swp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.swp
2+
public/
3+
.hugo_build.lock
4+
resources/

.hugo_build.lock

Whitespace-only changes.

archetypes/default.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
---
6+

config.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
baseURL: 'https://www.rocketgate.com/'
2+
languageCode: 'en-us'
3+
title: 'RocketGate®'
4+
5+
# Allow HTML in MarkDown files
6+
markup:
7+
goldmark:
8+
renderer:
9+
unsafe: true
10+
11+
Params:
12+
13+
testimonials:
14+
- author: Brad Mitchell, CEO MojoHost
15+
content: |-
16+
I have been using Rocketgate as MojoHost's merchant gateway since 2007 and been tremendously happy. They are fully integrated with a large number of banks. RocketGate also has incredible merchant customer service that I have experienced first hand. Rocketgate functions as the gateway processor for many large companies in a variety of business sectors from tangible goods, live entertainment, VOD, membership sites and now, with MojoHost, web hosting.
17+
18+
They have been extremely accommodating and have written custom enhancements to their interface to accomodate our unique needs as we have grown over time. We've been so pleased with the high level of service and interaction that when we made a recent bank change, I insisted to our new bank that we would not transition to them unless they worked with RocketGate. As it turned out all parties were compatible already. Thank you very much and I look forward to many more years of great business between our companies.
19+
20+
- author: Marc Saulino, Billing Revolution
21+
content: |-
22+
I feel that the term “Life Saver” is cliché and often overused but feel this is the best way for me to describe Jason Burns and RocketGate. I have had an opportunity to work with RocketGate on multiple mobile projects that required responsiveness, creative thinking, persistence, project management and some technical integration. Needless to say, RocketGate met all challenges and more. Overall, RocketGate's team has a firm understanding of mobile marketing trends and Interactive technology. If anyone has a need to monetize commerce through the Web or Mobile, I strongly recommend RocketGate.
23+
24+
- author: Ray Anderson, Bango
25+
content: |-
26+
RocketGate came to us offering a solution to a problem with credit card processing which we were experiencing with two other suppliers. At first we were sceptical of RocketGate’s ability to do more than the two big providers we worked with. RocketGate rapidly proved its mettle by identifying the problems we were encountering and overcoming them quickly, one by one. By dedication and round the clock working, RocketGate built up a great working relationship with our team.
27+
28+
- author: Ken Musante, President, Humboldt Merchant Services
29+
content: |-
30+
Jason Burns of RocketGate is an honest and ethical business partner. He is an industry resource and I rely on his guidance. RocketGate’s services are fairly priced and they deliver on commitments.

content/_index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
title: Home
3+
---

content/about-us/_index.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: About Us
3+
layout: about-us
4+
---
5+
6+
# About Us
7+
8+
![](/images/about-rocketgate.jpg)
9+
10+
Behind RocketGate, stands a solid engineering team comprised of individuals with experience developing mission critical applications, including the communications infrastructure for NASA's Deep Space Network. Members of our team have developed aircraft and cargo tracking systems for the Military Airlift Command, live internet broadcasts such as the 2008 and 2010 Olympic Games, and have received numerous patents.
11+
12+
The RocketGate team has applied their experience and knowledge to the creation of RocketGate's secure, fault-tolerant and reliable payment processing platform, from initial development to continual responsiveness and support. Yes, it is rocket science!

content/about-us/testimonials.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: Testimonials
3+
layout: testimonials
4+
---
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: Advanced Processing
3+
4+
params:
5+
tagline: So easy to use, you'll be up and running in minutes.
6+
7+
right_content1:
8+
title: Fault-Tolerant Architecture
9+
content: Use of multiple active-active, geographically-diverse datacenters with load balancing and auto-cascading means you don't lose transactions, <b>ever</b>.
10+
11+
right_content2:
12+
title: Choose a Solution
13+
content: RocketGate offers many processing options, so you can choose the one that best fits your needs.
14+
---
15+
16+
# Advanced Processing
17+
18+
Choose RocketGate’s responsive technology to avoid loss from datacenter outages.
19+
20+
Many processors use a single datacenter with a “disaster recovery” model for so-called high availability. In this model, if one datacenter fails, then technicians are alerted who then try to address the problems with this datacenter. If they are unable to do so expediently, they begin the process of bringing their “disaster recovery” datacenter online. Outages, even partial outages, are obviously very costly.
21+
22+
A 2011 research study called “Calculating the Cost of Data Center Outages” by the independent Ponemon Institute indicates that the costs range from a low of $38,969 to a high of $1,017,746 with an overall average cost of $505,502 per incident (with an “average” datacenter outage of 134 minutes, the cost is more than $11,000 per minute). These costs factor in lost business, destruction of mission critical data, impact of downtime on organizational productivity, cost to remediate systems and core business processes, legal and regulatory impact, lost confidence and trust among key customers, not to mention brand and reputation damage.
23+
24+
In stark contrast, RocketGate’s fault-tolerant architecture uses multiple active/active datacenters, with load balancing and auto-cascading across the datacenters with no single point of failure. Harness the power of this technology for your business. RocketGate offers the following transaction processing options that leverage its multi-datacenter architecture:
25+
26+
27+
1. [Gateway API](/payment-processing-services/gateway)
28+
1. [Hosted Form](/payment-processing-services/hosted-form)
29+
1. [Hosted Page](/payment-processing-services/hosted-page)
30+
1. [VPOS](/payment-processing-services/vpos-virtual-point-of-sale)
31+
1. [Shopping Cart](/payment-processing-services/shopping-carts)
32+
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
title: Advanced Reporting
3+
4+
params:
5+
tagline: Real time reports offer up-to-the-minute sales data.
6+
7+
right_content1:
8+
title: Data at Your Fingertips
9+
content: Highly illustrative reports with graphs and projections mean you always know how your business is growing.
10+
11+
right_content2:
12+
title: Pull Data Programmatically
13+
content: Merchants who want to integrate data into in-house reporting applications can retrieve report data automatically.
14+
---
15+
16+
# Advanced Reporting
17+
18+
RocketGate's advanced reporting system, “Mission Control” gives you the information necessary to make well-informed business decisions. Real-time reports are available online so you can view data anytime, anywhere. Mission Control allows you to view reports in a variety of formats such as HTML, CSV, PDF and XML. Merchants wishing to integrate data into in-house reporting applications can utilize an API to retrieve any of the reports programmatically.
19+
20+
<br />
21+
22+
## Mission Control answers key business questions like:
23+
* How many members do I have and what is my recurring success rate?
24+
* Which of my merchant accounts performs the best?
25+
* Do I have a bad affiliate?
26+
* What is my pricing “sweet spot”?
27+
* What are the best days of the week for sales & marketing initiatives?
28+
* How can I configure my load balancing to take advantage of the bank with the best authorization rates?
29+
30+
<br />
31+
32+
## Features:
33+
* Detailed dashboards, reports and graphs
34+
* Printer-friendly PDF and graphical views of data
35+
* Export to CSV/Excel
36+
37+
<br />
38+
39+
## A small sampling of reports in Mission Control:
40+
* Real time sales with daily $ and transaction total projections
41+
* Sales by hour comparing today’s sales with prior sales for that day of the week (ex: Monday’s sales versus past 8 Mondays)
42+
* Batch report
43+
* Decline report with the ability to track decline reasons over time
44+
* Chargeback with cross referencing of many different factors
45+
* Membership/Recurring
46+
* Approval Ratio
47+
* Hosted Page traffic to sales conversion
48+
49+
![](/images/missioncontrol2.jpg)
50+
51+
Reports can be cross-referenced by affiliate, country, website, product, price, merchant account, and more. Approval ratios and decline reasons can be cross-referenced by affiliate, country, site, product, price, account, and more.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: Automated Chargeback Processing
3+
4+
params:
5+
tagline: RocketGate's proactive approach improves your bottom line.
6+
7+
right_content1:
8+
title: Protect Your Business
9+
content: Daily feeds of chargeback and retrieval info lower your exposure to additional chargebacks from the same customer.
10+
11+
right_content2:
12+
title: Chargeback Queue
13+
content: Chargeback data is combined with sophisticated reporting to identify fraudulent activity before chargebacks occur.
14+
---
15+
16+
# Automated Chargeback Processing
17+
18+
Protect your business with RocketGate’s automated chargeback processing service. When a chargeback, retrieval or reversal is received (via a daily digital feed),RocketGate will automatically mark the transaction as a chargeback, cancel a subscription (if applicable), block the customer from making future purchases, add the credit card number to a negative database and then send the data to the merchant via postback.
19+
20+
The tool suite also includes a Chargeback Queue tool that lists retrieval and chargeback data for review with built-in workflow management. In addition, RocketGate’s sophisticated reporting helps to identify fraudulent activity from affiliates, consumers and issuing banks **before** chargebacks occur. This proactive approach improves your bottom line. Retrieval requests and chargebacks can be responded to efficiently and easily in order to get reversals as quickly as possible.
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
title: Merchant Support Tools
3+
4+
params:
5+
tagline: Increase the average customer lifetime value by retrying "soft" declines with customizable, automated retries.
6+
7+
right_content1:
8+
title: Full Suite of Tools
9+
content: Customer support tools include transaction lookups, recurring billing info, refunds and many more.
10+
11+
right_content2:
12+
title: Manage Chargebacks
13+
content: RocketGate receives direct data feeds of chargeback and retrieval data from many banks.
14+
---
15+
16+
# Merchant Support Tools
17+
18+
Manage customer accounts with RocketGate’s full suite of merchant support tools including tools for transaction lookups, subscription/recurring membership information updates and refunds, both full and partial. You have the ability to respond to retrieval requests and chargebacks quickly and easily. RocketGate’s Customer Support Tool Suite features:
19+
20+
* Real time Transaction and Membership Management dashboards
21+
* Customer and transaction lookup tools - locate customers and/or transactions efficiently using one or multiple search parameters
22+
* Refund tool - issue a single credit or a batch of refunds
23+
* Full and partial refunds
24+
* PCI compliant manual and scheduled re-bill transaction processing
25+
* Virtual Point of Sale tool - process phone or fax orders easily
26+
* Membership management - cancel memberships and modify renewal and cancel dates
27+
* Chargeback Queue Tool - list retrieval and chargeback data for review with built-in workflow management
28+
* Risk Management tools - search for, monitor and/or block risky transactions or customers based on your own and/or Rocketgate’s Fraud Prevention Policies
29+
30+
<br />
31+
32+
## Customer Retention
33+
34+
For merchants with subscription-based business models, customer retention is a key indicator of performance. Even a seemingly small increase in customer retention will significantly improve the bottom line over the long run. RocketGate provides many sophisticated tools that help merchants make well-informed business decisions regarding customer retention. In addition, RocketGate’s sophisticated fault-tolerant gateway helps maximize customer retention.
35+
36+
<br />
37+
38+
## Customizable Retry Payment Failures to Increase ACLV
39+
40+
With the cost of customer acquisition on the rise, customer retention is all the more important. RocketGate’s intelligent gateway helps increase the Average Customer Lifetime Value (ACLV) in a variety of ways including automatic retries of “soft” credit card declines (such as “card over limit”) ensuring that you don’t lose a good customer. In addition, RocketGate’s Gateway API has full support for programmatically updating customer billing information.
41+
42+
<br />
43+
44+
## Managing Retrievals and Chargebacks
45+
46+
Chargeback management is one of many important ways that RocketGate’s merchants minimize current and future risk and increase profits at the same time. RocketGate receives direct data feeds of chargebacks and retrieval requests from selected partner banks, enabling you to make business decisions with the most up-to-date information. Based on this information, RocketGate can immediately take steps on your behalf such as canceling the customer that is charging back and preventing him or her from making any future purchases. RocketGate’s Chargeback Queue tool allows single or multiple merchant representatives to process a pool of chargeback data and auto-populates fields in required financial paperwork with customer and transaction data for processing or contesting chargebacks with ease and efficiency. In addition, RocketGate offers automated reports that display chargeback data in a statistically meaningful way, making trends easy to see.

0 commit comments

Comments
 (0)