We have been analyzing the NCR Retail Online (NRO) business and our NCR Industry Solutions Board, an internal team that helps set strategy, has decided to set the NRO product to End of Life on March 31, 2018 . The CPOnline Product was also recently announced with an end of life date of September 30th, 2017 . The End of Life terms indicate that all current customers will need to be transitioned off their respective product and the servers turned off by 9/30/17 (CPO) & 3/31/18 (NRO) . Your NCR Counterpoint business partner has been notified of this decision in advance and has started taking steps to help you transition your eCommerce solution.

Next Steps

As of today, we are encouraging all customers to reach out to your current NCR Counterpoint Partner to begin the transition to a new eCommerce platform. Your partner will be your best resource in planning and transitioning to a new eCommerce solution.

NCR has worked with several partners to create options for your new eCommerce solution. Please refer to the below chart for information about these options. Your partner can provide you with further documentation about these solutions to assist you with the decision process. You can also view a list of FAQ’s about moving from NRO to one of the below options by clicking here .

We will be discussing this transition directly with the users that attend our Synergy User Conference at the end of June. We will be offering a presentation on eCommerce and we will have representatives at the exhibit booth to handle your questions. In the meantime, please reach out to your partner to help determine your next steps.

We appreciate your business and look forward to taking this next, innovative step together.

Recommended eCommerce Solutions

Solution Cost Platform Additional Notes
Commerce5
  • Upfront: Starts at $2500**
  • Monthly: Starts at $495.00 plus hosting
Magento Most tightly integrated with Counterpoint and offers the most advanced features
CP Magento
  • Upfront: Starts at $2,500**
  • Monthly: Starts at $200.00 including hosting
Magento Integrated with Counterpoint and offers features similar to NRO
CP Shop
  • Upfront: Starts at $999**
  • Monthly: Starts at $125.00 plus hosting
Woo Commerce Catalog, Inventory, and Orders are integrated with Counterpoint

Keeping Payment Data Secure After Migrating to an Open-Source Platform

When NCR Retail Online was retired, thousands of Australian retailers were nudged toward open-source platforms such as Magento and WooCommerce. The flexibility is appealing, but so is the responsibility that comes with managing sensitive cardholder data on infrastructure you largely own. From a small boutique in Newtown to a growing chain in Fortitude Valley, the shift means security is no longer something a vendor guarantees out of the box.

The Australian context makes the stakes particularly sharp. Tap-and-go is now the default at most cafes in Melbourne, Afterpay splits have become routine at suburban checkout counters, and the Notifiable Data Breaches scheme under the Privacy Act 1988 means a leak doesn't stay quiet for long. A single overlooked vulnerability can trigger mandatory disclosure, fines, and a reputational hit that's hard to undo.

This guide walks through the practical steps to keep customer payment data safe once you've migrated. It covers compliance, gateway selection, encryption, platform hardening, day-to-day monitoring, and the local safeguards that apply when you operate from Sydney to Broome.

Map your compliance obligations under the Privacy Act and PCI DSS

Before touching a single plugin, audit what data you actually hold and where it lives. Under the Notifiable Data Breaches scheme, an organisation must report any unauthorised access to personal information that's likely to result in serious harm. Payment card data, paired with a name and email, definitely qualifies.

Layer this with the Payment Card Industry Data Security Standard. PCI DSS applies the moment you store, process, or transmit a primary account number, whether that's on a Magento database in Hobart or a WooCommerce order queue in Adelaide. The four merchant levels depend on annual transaction volume, but even Level 4 businesses with under 20,000 annual e-commerce transactions must complete a self-assessment questionnaire and a quarterly network scan by an Approved Scanning Vendor.

Document your cardholder data environment in plain language. Sketch which systems store card numbers, which tokenise them, and which merely pass them through. This map becomes invaluable when an auditor, insurer, or your acquirer asks tough questions after a suspected incident.

Compare payment gateways built for open-source retail

The single biggest security decision after migration is the gateway. Most Australian merchants now lean on providers that handle tokenisation on their own servers, meaning sensitive data never touches the Magento or WooCommerce install in the first place.

Gateway PCI burden on merchant Tokenisation Local currencies Notes for Aussie retailers
Stripe SAQ A or SAQ A-EP Yes, vault-based AUD, NZD, SGD Strong Apple Pay and Afterpay support
Square SAQ A Yes AUD Tied to Square hardware for in-person
eWAY SAQ A Yes, with Beagle AUD Local support, now part of Global Payments
PayPal Checkout SAQ A Yes AUD, NZD Buyer protection familiar to customers
NAB Transact SAQ A-EP Optional AUD Direct bank settlement, fewer chargebacks

Choosing a gateway that qualifies for SAQ A — meaning card data never touches your server — shrinks your compliance footprint dramatically. Pair it with hosted fields or redirect flows so the iframe or popup is owned by the gateway, not your theme files.

Implement strong encryption and tokenisation in transit and at rest

Even with a tokenising gateway, your store still handles order metadata, billing addresses, and the last four digits of cards. TLS 1.2 is now the floor; disable TLS 1.0 and 1.1 entirely, and audit your hosting provider to confirm TLS 1.3 is available for visitors landing from a Google search in Sydney or a Pinterest pin in Perth.

Inside the database, encrypt sensitive columns using AES-256, with keys managed outside the web root. Rotate those keys on a documented schedule, and store backups in a separate region, ideally within Australia to satisfy data sovereignty concerns raised by some enterprise buyers.

Tokenisation deserves its own paragraph because it does the heavy lifting. When a gateway returns a token like tok_1Q..., your open-source platform stores that string instead of the PAN. Refunds, captures, and recurring billing all run against the token. If an attacker exfiltrates your orders table tomorrow, they walk away with useless strings rather than live data.

Keep the open-source core, plugins, and theme tightly patched

Open-source doesn't mean insecure, but it does mean actively maintained. Magento releases security patches on a quarterly cadence, with emergency releases for critical issues such as Shoplift or PRODSEC bug disclosures. Subscribe to the relevant security mailing lists and apply patches within a defined service-level window — many Australian retailers now target 72 hours for critical items.

Audit every plugin in use. A surprising number of breaches trace back to an abandoned extension from a developer who's long since moved on. Remove anything unused, and check the change log of every paid module for recent security fixes. Even a high-traffic category page such as a men's jeans collection can become an attack vector if its plugin dependencies aren't kept current.

Lock down the admin panel with two-factor authentication, IP allow-listing for known store networks, and a webhook secret that rotates automatically. Brute-force attempts against /wp-login.php and /admin are constant across Australian ecommerce sites, so rate-limiting and fail2ban equivalents should be standard.

Train staff and monitor transactions continuously

Technology alone won't save you if a casual team member clicks a phishing link from an address pretending to be AusPost. Run quarterly training that uses real-world Australian examples: fake MyGov messages, fake courier redelivery notices, and invoice fraud targeting finance staff.

Layer human vigilance with monitoring tools that flag unusual behaviour. Velocity checks that stop ten orders from the same IP in three minutes, geolocation mismatches between billing and shipping, and AVS/CVC failures all feed into a daily review queue. Many merchants now use managed services that plug straight into WooCommerce or Magento webhooks and escalate only the genuinely suspicious activity.

If you're transitioning from NCR Retail Online to an open-source stack while keeping legacy registers in regional locations, you also need to connect your new storefront in a way that doesn't re-introduce the old vulnerabilities. The bridge between systems should use signed API keys, mutual TLS where possible, and a clear audit trail.

Prepare backups, audit trails, and an incident response plan

Backups are the underrated pillar of payment security. Store daily snapshots in a region isolated from production, encrypted with a key that no application server holds in plaintext. Test the restore process quarterly against a staging environment — many Australian businesses discovered their backups were corrupt only when they actually needed them.

Audit logs should capture who changed what, when, and from where. Forward them to a separate logging service so an attacker who gains shell access can't quietly delete the evidence. PCI DSS Requirement 10 is explicit on this point, and the Notifiable Data Breaches scheme expects you to know the timeline of an incident within 72 hours of discovery.

Write the incident response plan before you need it. Name the people, the lawyers, the forensic firm, and the communications contact. Include the script for notifying affected customers, the regulator, and your acquiring institution. Practise it once a year with a tabletop exercise — even a 90-minute walkthrough surfaces gaps.

Lean on local tools and community for Australian context

Australia offers a few underrated advantages. The Australian Signals Directorate publishes the Essential Eight maturity model, which gives small online retailers a clear roadmap beyond PCI DSS. The Council of Small Business Organisations Australia also runs practical cybersecurity programs tailored to retailers with fewer than 20 staff.

Local hosting providers in Sydney, Melbourne, and Brisbane offer data centres with ISO 27001 certification, which keeps latency low for customers and satisfies procurement teams at enterprise buyers. Pair this with a domestic payment partner that settles in AUD, and you avoid foreign exchange volatility that can make fraud scoring harder to interpret.

Finally, lean on the open-source community itself. Magento and WooCommerce both have active Australian user groups, Slack channels, and Discord servers where merchants share post-mortems after incidents. Reading a peer's painful experience is the cheapest education you'll ever get.

The strongest posture after migrating off NCR Retail Online isn't a single product you buy — it's the layered combination of compliant gateways, patched software, trained staff, and a rehearsed incident plan. Start with the PCI scope reduction a hosted gateway gives you, then build outward into monitoring, backups, and community learning. Australian retailers who treat payment security as a continuous discipline rather than a checkbox will find the open-source world just as safe as any proprietary platform they left behind.

After you have completed your move to a new eCommerce platform, don’t forget to submit the Store Closure Request form to close your NRO site and cancel your billing subscription.