SlideShare uma empresa Scribd logo
1 de 32
Baixar para ler offline
DrupalACT April 2012




Let's go shopping with Drupal!




    Ubercart & Recurring Payments
                   Justin Freeman
                             DrupalACT April 2012
About Agileware
Canberra company
●



Drupal web developers
●


●Our clients include: Federal Government,
Agencies, Non-profits, Associations, Department
of Defence, SMEs, International organisations
Your friendly, local Drupal dudes
●



http://agileware.com.au
●




                            agileware.com.au * DrupalACT April 2012
What we'll cover
How to build an Australian, Drupal shopping cart
●



Essential Drupal modules
●



Recommended third party services
●



Recommended payment options
●



Australian considerations
●



Subscriptions and recurring payments
●



Security
●



Costs
●




                            agileware.com.au * DrupalACT April 2012
Shopping cart, WTF?
●   Sell stuff on the Internet
●   Accept payment, deliver something in return
●   Sell things like: products, services, goods,
    information, access, downloads, events, tickets,
    auction sites
●   Catalog → product → price → payment →
    delivery




                                 agileware.com.au * DrupalACT April 2012
Examples
●   Standard sites:
       ●   http://postertext.com
       ●   http://audreyblue.com
●   Customised sites:
       ●   http://pawsforlife.com.au
       ●   http://agilemail.com.au
The competition!
●Good selection of open source shopping cart
software is available
Lot of it is “not so good” – OSCOMMERCE
●



Some of it is good – Magneto Commerce
●



But mostly they're “not so good”:
●


      ●   Poorly documented, no API
      ●   Customisations, difficult
      ●   Updates are PAINFUL
      ●   Fragmented community
      ●   No formal issue queue, standards etc.
                               agileware.com.au * DrupalACT April 2012
Why use Drupal?
Drupal has solved many of these project
●


management issues and QA is good.
(Don't take my word for it – try the competition!)
●



Highly customisable, extensible
●



Drupal does have good shopping cart modules:
●


    ●   Ubercart (Drupal 6 & 7)
         http://drupal.org/project/ubercart
          ●


    ● Commerce (Drupal 7 only)


          ●   http://drupal.org/project/commerce

                               agileware.com.au * DrupalACT April 2012
Build your website
Do the usual Drupal build steps:
●


    ●   Install Drupal and required modules
    ●   Design or select required theme
    ●   Customise installation, as required
    ●   Test, test and test some more
Common areas for customisation:
●


    ●   Catalog (less clicks)
    ●   Product display (make it sexy!)
    ●   Pricing options (making choice easier)
    ●   Checkout process (reduce steps)

                                  agileware.com.au * DrupalACT April 2012
Demos
1.Default Drupal, Ubercart site
2.Standard shopping cart workflow
3.Customised user experience and workflow




                                  agileware.com.au * DrupalACT April 2012
Essential modules
Ubercart, http://drupal.org/project/ubercart
●


    ●   Available for Drupal 6 or 7
Ubercart VAT, http://drupal.org/project/uc_vat
●


    ●   Required for Ubercart, Drupal 6 only
Ubercart SSL, http://drupal.org/project/uc_ssl
●


    ●   Force SSL connection on Ubercart pages
    ●   Secure Pages is another option




                                      agileware.com.au * DrupalACT April 2012
Recommended modules
Ubercart EWAY, http://drupal.org/project/uc_eway
●


    ●   For EWAY integration to process credit card
         transactions
●Google Analytics,
http://drupal.org/project/google_analytics
    ●   Track conversions from Google Adwords
Ubercart Views, http://drupal.org/project/uc_views
●


    ●   Views integration, custom reports




                                 agileware.com.au * DrupalACT April 2012
For Australian carts
●Import “Australia” into Country data and disable
America & Canada (unless selling o/s).
     ●   admin/store/settings/countries/edit
Change US currency, measurements
●


     ●   admin/store/settings/store/edit/format
Configure UC_VAT, set up GST +10% tax.
●


     ●   Required to display price as: $9.95 GST inc
     ●   All prices should be stored ex-GST
     ●   Apply only to orders for Australian customers
            ●   admin/store/settings/taxes/vat

                                    agileware.com.au * DrupalACT April 2012
For Australian carts
 Change default Invoice template
 ●


     ●   Need to add information: Tax Invoice & ABN
 Copy and modify these files:
 ●


     ●   ubercart/uc_order/templates/
            uc_order-customer.tpl.php
            ●


          ● uc_order.tpl.php (make blank)


     ● active admin theme eg. sites/all/themes/rubik


     ●   active site theme eg.
          sites/default/themes/agilemail
     ●   Symlink admin theme files to active theme
 Acquia Prosper theme has /invoice set up correctly
 ●


                                agileware.com.au * DrupalACT April 2012
Demo
 GST tax rules
 ●



 GST inclusive, /admin/store/settings/taxes/vat
 ●



 Tax Invoice
 ●




                            agileware.com.au * DrupalACT April 2012
Recommended services
EWAY, http://eway.com.au
●


    ●   More on these guys shortly
SSL certificate, http://rapidssl.com
●


    ●   Decent price, quick to deliver, good compatibility
Paypal, http://paypal.com.au
●


    ●   Your customers may not trust you, but
         (unfortunately) they will trust Paypal
Mailchimp, http://mailchimp.com
●


    ●   Stay in touch with your customers, send
          newsletters


                                  agileware.com.au * DrupalACT April 2012
Why EWAY?




            agileware.com.au * DrupalACT April 2012
Why EWAY?
API agnostic:
●


    ●   Banks can have different credit card APIs
    ●   Drupal modules exist for specific Banks
    ●   General one which covers multiple Banks, see
         http://drupal.org/project/uc_migs
    ●   EWAY is a credit card processor, talks to all Banks
    ●   Provides independence from any single Bank




                                  agileware.com.au * DrupalACT April 2012
Why EWAY?
Security:
●


    ●   Storing credit cart details is a very bad idea
    ●   You become a target and are liable for breaches.
    ●   Security is your problem.
    ●   This is not a nice problem to have.
    ●   So let someone else have this stress, EWAY!
    ●   All credit card details are sent to EWAY over the
          wire, processed in real-time and never stored.
    ●   Great anti-scam, anti-fraud features



                                    agileware.com.au * DrupalACT April 2012
Why EWAY?
Features:
●


    ●   Have rich XML post-response based API,
         http://www.eway.com.au/Developer/eway-api/
    ●   Support token-based recurring transactions
    ●   SMS transaction report
    ●   Web control panel: reports, refunds, manual
         transactions
    ●   Based in Canberra, Phillip
    ●   Great phone and developer support (they listen!)
    ●   Affordable


                                     agileware.com.au * DrupalACT April 2012
New contender - FatZebra
New Canberra startup
●



Payment processor
●



Cheaper than EWAY
●



Similar API and features
●



JSON based API
●



Young and energetic team
●



https://fatzebra.com.au
●




                           agileware.com.au * DrupalACT April 2012
Recommended payment options
Don't force customers to pay using credit card
●



Provide payment options, make the sale!
●


    ●   EFT (direct deposit)
    ●   Cheque
    ●   Paypal
    ●   Credit card




                               agileware.com.au * DrupalACT April 2012
Recurring payments
Drupal module, http://drupal.org/uc_recurring
●



Maintained by this guy, Chris Hood (thanks Chris!)
●


    ●   chris@univate.com.au, http://univate.com.au




                                agileware.com.au * DrupalACT April 2012
Recurring payments
●   Ability to set up recurring billing schedules:
        ●   For individual products
        ●   Entire orders (bunch of products)
●   Can notify customer when payment due
●   Or even better - bill the customer automatically
    if credit card details are stored (eek!)
●   EWAY integration utilises tokenised payments,
    100% secure
●   Token used to bill customer, not CC stored
    (YAY!)

                                      agileware.com.au * DrupalACT April 2012
Recurring payments
●   Workflow overview (recurring & EWAY):
       1.Customer submits order and credit card details
       2.Customer details and credit card sent to EWAY
       3.EWAY returns token
       4.Drupal stores token with order
       5.Each billing cycle, token sent to EWAY with bill
          amount
       6.EWAY uses token to bill customer
       7.EWAY returns success / fail to Drupal



                                 agileware.com.au * DrupalACT April 2012
Recurring payments
●   Watch for expiring credit cards, notify the
    customer to update their details
●   This modules was developed to solve this
    problem,
    http://drupal.org/project/uc_recurring_cc_notify
●   Automatically notifies customer




                               agileware.com.au * DrupalACT April 2012
Demo
●   Recurring payments configuration, products
    and order




                             agileware.com.au * DrupalACT April 2012
Security
Keep software up to date
●



Disable modules not being used
●



Complex passwords
●



Do not store credit card details, at all
●



Dodgy hosting
●



Backups
●



SSL
●



Check logs and investigate errors
●




                              agileware.com.au * DrupalACT April 2012
Scams and fraud
Merchant beware
●



Stolen credit cards
●



Dodgy orders
●



EWAY helps protect against fraud
●



Merchant diligence
●




                          agileware.com.au * DrupalACT April 2012
Startup and running costs
Paypal reduces startup costs
●


●Not recommended for large transactions, best to
use EFT for those (protect the margin!)
Banks will charge:
●


      ●   2% to 3% per transaction
      ●   plus annual fee
      ●   plus account keeping fee
      ●   Plus plus plus...



                              agileware.com.au * DrupalACT April 2012
Startup and running costs
EWAY will charge
●



    ●
        Annual fee (free in 1st year)
    ●   0.50c per transaction
SSL certificate $75 to $150 per year
●


●Your time to process orders and update website
(this does not happen automagically!)




                                agileware.com.au * DrupalACT April 2012
Final thoughts
Website performance matters, a lot
●



Customers do not tolerate mistakes
●



Your competitor is one click away
●



Process refunds quickly
●



Verify each transaction is legitimate
●



Treat security seriously
●



Optimising the user experience does work
●



Automate and monitor what you can
●




                            agileware.com.au * DrupalACT April 2012
Questions?




     agileware.com.au * DrupalACT April 2012

Mais conteúdo relacionado

Semelhante a Let's go shopping with Drupal!

AdWords API - How to build a platform
AdWords API - How to build a platformAdWords API - How to build a platform
AdWords API - How to build a platformTimoBoz
 
Is Being Agile a Good Thing?
Is Being Agile a Good Thing?Is Being Agile a Good Thing?
Is Being Agile a Good Thing?Alan Hood
 
Why use ad words api
Why use ad words apiWhy use ad words api
Why use ad words apisupergigas
 
Ecommerce as an Engine
Ecommerce as an EngineEcommerce as an Engine
Ecommerce as an Enginestephskardal
 
Pure Storage Company presentation - Ruben Wu
Pure Storage Company presentation - Ruben WuPure Storage Company presentation - Ruben Wu
Pure Storage Company presentation - Ruben WuRuben Wu
 
[Comparison] Choosing the Right eCommerce Platform
[Comparison] Choosing the Right eCommerce Platform[Comparison] Choosing the Right eCommerce Platform
[Comparison] Choosing the Right eCommerce PlatformRichard James McGirr
 
How to make Headless Commerce Strategy.
How to make Headless Commerce Strategy.How to make Headless Commerce Strategy.
How to make Headless Commerce Strategy.Aureate Labs
 
Promoting your organisation online with drupal
Promoting your organisation online with drupalPromoting your organisation online with drupal
Promoting your organisation online with drupalTroodon
 
Odoo Experience 2018 - Tutorial: How to Create an Awesome eCommerce Website?
Odoo Experience 2018 - Tutorial: How to Create an Awesome eCommerce Website? Odoo Experience 2018 - Tutorial: How to Create an Awesome eCommerce Website?
Odoo Experience 2018 - Tutorial: How to Create an Awesome eCommerce Website? ElínAnna Jónasdóttir
 
Building Enterprise Applications on Google Cloud Platform Cloud Computing Exp...
Building Enterprise Applications on Google Cloud Platform Cloud Computing Exp...Building Enterprise Applications on Google Cloud Platform Cloud Computing Exp...
Building Enterprise Applications on Google Cloud Platform Cloud Computing Exp...Chris Schalk
 
How to build a platform
How to build a platformHow to build a platform
How to build a platformsupergigas
 
Complete Oracle Procure to Pay Cycle
Complete Oracle Procure to Pay Cycle Complete Oracle Procure to Pay Cycle
Complete Oracle Procure to Pay Cycle mgarg82
 
Drupal Commerce in Drupal 7
Drupal Commerce in Drupal 7Drupal Commerce in Drupal 7
Drupal Commerce in Drupal 7infowonders
 
Drupal 8, tricks and tips learned from the first 6 months
Drupal 8, tricks and tips learned from the first 6 monthsDrupal 8, tricks and tips learned from the first 6 months
Drupal 8, tricks and tips learned from the first 6 monthsIztok Smolic
 
Case study - Google's Polymer web components let us develop tomorrow's digita...
Case study - Google's Polymer web components let us develop tomorrow's digita...Case study - Google's Polymer web components let us develop tomorrow's digita...
Case study - Google's Polymer web components let us develop tomorrow's digita...Henry D Amm
 

Semelhante a Let's go shopping with Drupal! (20)

AdWords API - How to build a platform
AdWords API - How to build a platformAdWords API - How to build a platform
AdWords API - How to build a platform
 
Is Being Agile a Good Thing?
Is Being Agile a Good Thing?Is Being Agile a Good Thing?
Is Being Agile a Good Thing?
 
Why use ad words api
Why use ad words apiWhy use ad words api
Why use ad words api
 
Ecommerce as an Engine
Ecommerce as an EngineEcommerce as an Engine
Ecommerce as an Engine
 
Pure Storage Company presentation - Ruben Wu
Pure Storage Company presentation - Ruben WuPure Storage Company presentation - Ruben Wu
Pure Storage Company presentation - Ruben Wu
 
[Comparison] Choosing the Right eCommerce Platform
[Comparison] Choosing the Right eCommerce Platform[Comparison] Choosing the Right eCommerce Platform
[Comparison] Choosing the Right eCommerce Platform
 
Odoo Akeneo Connector
Odoo Akeneo ConnectorOdoo Akeneo Connector
Odoo Akeneo Connector
 
How to make Headless Commerce Strategy.
How to make Headless Commerce Strategy.How to make Headless Commerce Strategy.
How to make Headless Commerce Strategy.
 
Promoting your organisation online with drupal
Promoting your organisation online with drupalPromoting your organisation online with drupal
Promoting your organisation online with drupal
 
Django Shop
Django ShopDjango Shop
Django Shop
 
Common Sense Agile
Common Sense AgileCommon Sense Agile
Common Sense Agile
 
Odoo Experience 2018 - Tutorial: How to Create an Awesome eCommerce Website?
Odoo Experience 2018 - Tutorial: How to Create an Awesome eCommerce Website? Odoo Experience 2018 - Tutorial: How to Create an Awesome eCommerce Website?
Odoo Experience 2018 - Tutorial: How to Create an Awesome eCommerce Website?
 
Building Enterprise Applications on Google Cloud Platform Cloud Computing Exp...
Building Enterprise Applications on Google Cloud Platform Cloud Computing Exp...Building Enterprise Applications on Google Cloud Platform Cloud Computing Exp...
Building Enterprise Applications on Google Cloud Platform Cloud Computing Exp...
 
How to build a platform
How to build a platformHow to build a platform
How to build a platform
 
Complete Oracle Procure to Pay Cycle
Complete Oracle Procure to Pay Cycle Complete Oracle Procure to Pay Cycle
Complete Oracle Procure to Pay Cycle
 
Drupal Commerce in Drupal 7
Drupal Commerce in Drupal 7Drupal Commerce in Drupal 7
Drupal Commerce in Drupal 7
 
Drupal 8, tricks and tips learned from the first 6 months
Drupal 8, tricks and tips learned from the first 6 monthsDrupal 8, tricks and tips learned from the first 6 months
Drupal 8, tricks and tips learned from the first 6 months
 
Case study - Google's Polymer web components let us develop tomorrow's digita...
Case study - Google's Polymer web components let us develop tomorrow's digita...Case study - Google's Polymer web components let us develop tomorrow's digita...
Case study - Google's Polymer web components let us develop tomorrow's digita...
 
PouyaKarimiv12
PouyaKarimiv12PouyaKarimiv12
PouyaKarimiv12
 
How to sell drupal 8
How to sell drupal 8How to sell drupal 8
How to sell drupal 8
 

Mais de agileware

Budget May 2016
Budget May 2016Budget May 2016
Budget May 2016agileware
 
Open . Social . Now
Open . Social . NowOpen . Social . Now
Open . Social . Nowagileware
 
How To Build And Launch A Successful Globalized App From Day One Or All The ...
How To Build And Launch A Successful Globalized App From Day One  Or All The ...How To Build And Launch A Successful Globalized App From Day One  Or All The ...
How To Build And Launch A Successful Globalized App From Day One Or All The ...agileware
 
Zimbra Collaboration Suite Vs Microsoft Exchange 2008
Zimbra Collaboration Suite Vs Microsoft Exchange 2008Zimbra Collaboration Suite Vs Microsoft Exchange 2008
Zimbra Collaboration Suite Vs Microsoft Exchange 2008agileware
 
Zimbra Collaboration Suite Vs Microsoft Exchange 2007
Zimbra Collaboration Suite Vs Microsoft Exchange 2007Zimbra Collaboration Suite Vs Microsoft Exchange 2007
Zimbra Collaboration Suite Vs Microsoft Exchange 2007agileware
 
Zimbra Collaboration Suite And Google Apps
Zimbra Collaboration Suite And Google AppsZimbra Collaboration Suite And Google Apps
Zimbra Collaboration Suite And Google Appsagileware
 

Mais de agileware (6)

Budget May 2016
Budget May 2016Budget May 2016
Budget May 2016
 
Open . Social . Now
Open . Social . NowOpen . Social . Now
Open . Social . Now
 
How To Build And Launch A Successful Globalized App From Day One Or All The ...
How To Build And Launch A Successful Globalized App From Day One  Or All The ...How To Build And Launch A Successful Globalized App From Day One  Or All The ...
How To Build And Launch A Successful Globalized App From Day One Or All The ...
 
Zimbra Collaboration Suite Vs Microsoft Exchange 2008
Zimbra Collaboration Suite Vs Microsoft Exchange 2008Zimbra Collaboration Suite Vs Microsoft Exchange 2008
Zimbra Collaboration Suite Vs Microsoft Exchange 2008
 
Zimbra Collaboration Suite Vs Microsoft Exchange 2007
Zimbra Collaboration Suite Vs Microsoft Exchange 2007Zimbra Collaboration Suite Vs Microsoft Exchange 2007
Zimbra Collaboration Suite Vs Microsoft Exchange 2007
 
Zimbra Collaboration Suite And Google Apps
Zimbra Collaboration Suite And Google AppsZimbra Collaboration Suite And Google Apps
Zimbra Collaboration Suite And Google Apps
 

Último

What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...panagenda
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditSkynet Technologies
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 

Último (20)

What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance Audit
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 

Let's go shopping with Drupal!

  • 1. DrupalACT April 2012 Let's go shopping with Drupal! Ubercart & Recurring Payments Justin Freeman DrupalACT April 2012
  • 2. About Agileware Canberra company ● Drupal web developers ● ●Our clients include: Federal Government, Agencies, Non-profits, Associations, Department of Defence, SMEs, International organisations Your friendly, local Drupal dudes ● http://agileware.com.au ● agileware.com.au * DrupalACT April 2012
  • 3. What we'll cover How to build an Australian, Drupal shopping cart ● Essential Drupal modules ● Recommended third party services ● Recommended payment options ● Australian considerations ● Subscriptions and recurring payments ● Security ● Costs ● agileware.com.au * DrupalACT April 2012
  • 4. Shopping cart, WTF? ● Sell stuff on the Internet ● Accept payment, deliver something in return ● Sell things like: products, services, goods, information, access, downloads, events, tickets, auction sites ● Catalog → product → price → payment → delivery agileware.com.au * DrupalACT April 2012
  • 5. Examples ● Standard sites: ● http://postertext.com ● http://audreyblue.com ● Customised sites: ● http://pawsforlife.com.au ● http://agilemail.com.au
  • 6. The competition! ●Good selection of open source shopping cart software is available Lot of it is “not so good” – OSCOMMERCE ● Some of it is good – Magneto Commerce ● But mostly they're “not so good”: ● ● Poorly documented, no API ● Customisations, difficult ● Updates are PAINFUL ● Fragmented community ● No formal issue queue, standards etc. agileware.com.au * DrupalACT April 2012
  • 7. Why use Drupal? Drupal has solved many of these project ● management issues and QA is good. (Don't take my word for it – try the competition!) ● Highly customisable, extensible ● Drupal does have good shopping cart modules: ● ● Ubercart (Drupal 6 & 7) http://drupal.org/project/ubercart ● ● Commerce (Drupal 7 only) ● http://drupal.org/project/commerce agileware.com.au * DrupalACT April 2012
  • 8. Build your website Do the usual Drupal build steps: ● ● Install Drupal and required modules ● Design or select required theme ● Customise installation, as required ● Test, test and test some more Common areas for customisation: ● ● Catalog (less clicks) ● Product display (make it sexy!) ● Pricing options (making choice easier) ● Checkout process (reduce steps) agileware.com.au * DrupalACT April 2012
  • 9. Demos 1.Default Drupal, Ubercart site 2.Standard shopping cart workflow 3.Customised user experience and workflow agileware.com.au * DrupalACT April 2012
  • 10. Essential modules Ubercart, http://drupal.org/project/ubercart ● ● Available for Drupal 6 or 7 Ubercart VAT, http://drupal.org/project/uc_vat ● ● Required for Ubercart, Drupal 6 only Ubercart SSL, http://drupal.org/project/uc_ssl ● ● Force SSL connection on Ubercart pages ● Secure Pages is another option agileware.com.au * DrupalACT April 2012
  • 11. Recommended modules Ubercart EWAY, http://drupal.org/project/uc_eway ● ● For EWAY integration to process credit card transactions ●Google Analytics, http://drupal.org/project/google_analytics ● Track conversions from Google Adwords Ubercart Views, http://drupal.org/project/uc_views ● ● Views integration, custom reports agileware.com.au * DrupalACT April 2012
  • 12. For Australian carts ●Import “Australia” into Country data and disable America & Canada (unless selling o/s). ● admin/store/settings/countries/edit Change US currency, measurements ● ● admin/store/settings/store/edit/format Configure UC_VAT, set up GST +10% tax. ● ● Required to display price as: $9.95 GST inc ● All prices should be stored ex-GST ● Apply only to orders for Australian customers ● admin/store/settings/taxes/vat agileware.com.au * DrupalACT April 2012
  • 13. For Australian carts Change default Invoice template ● ● Need to add information: Tax Invoice & ABN Copy and modify these files: ● ● ubercart/uc_order/templates/ uc_order-customer.tpl.php ● ● uc_order.tpl.php (make blank) ● active admin theme eg. sites/all/themes/rubik ● active site theme eg. sites/default/themes/agilemail ● Symlink admin theme files to active theme Acquia Prosper theme has /invoice set up correctly ● agileware.com.au * DrupalACT April 2012
  • 14. Demo GST tax rules ● GST inclusive, /admin/store/settings/taxes/vat ● Tax Invoice ● agileware.com.au * DrupalACT April 2012
  • 15. Recommended services EWAY, http://eway.com.au ● ● More on these guys shortly SSL certificate, http://rapidssl.com ● ● Decent price, quick to deliver, good compatibility Paypal, http://paypal.com.au ● ● Your customers may not trust you, but (unfortunately) they will trust Paypal Mailchimp, http://mailchimp.com ● ● Stay in touch with your customers, send newsletters agileware.com.au * DrupalACT April 2012
  • 16. Why EWAY? agileware.com.au * DrupalACT April 2012
  • 17. Why EWAY? API agnostic: ● ● Banks can have different credit card APIs ● Drupal modules exist for specific Banks ● General one which covers multiple Banks, see http://drupal.org/project/uc_migs ● EWAY is a credit card processor, talks to all Banks ● Provides independence from any single Bank agileware.com.au * DrupalACT April 2012
  • 18. Why EWAY? Security: ● ● Storing credit cart details is a very bad idea ● You become a target and are liable for breaches. ● Security is your problem. ● This is not a nice problem to have. ● So let someone else have this stress, EWAY! ● All credit card details are sent to EWAY over the wire, processed in real-time and never stored. ● Great anti-scam, anti-fraud features agileware.com.au * DrupalACT April 2012
  • 19. Why EWAY? Features: ● ● Have rich XML post-response based API, http://www.eway.com.au/Developer/eway-api/ ● Support token-based recurring transactions ● SMS transaction report ● Web control panel: reports, refunds, manual transactions ● Based in Canberra, Phillip ● Great phone and developer support (they listen!) ● Affordable agileware.com.au * DrupalACT April 2012
  • 20. New contender - FatZebra New Canberra startup ● Payment processor ● Cheaper than EWAY ● Similar API and features ● JSON based API ● Young and energetic team ● https://fatzebra.com.au ● agileware.com.au * DrupalACT April 2012
  • 21. Recommended payment options Don't force customers to pay using credit card ● Provide payment options, make the sale! ● ● EFT (direct deposit) ● Cheque ● Paypal ● Credit card agileware.com.au * DrupalACT April 2012
  • 22. Recurring payments Drupal module, http://drupal.org/uc_recurring ● Maintained by this guy, Chris Hood (thanks Chris!) ● ● chris@univate.com.au, http://univate.com.au agileware.com.au * DrupalACT April 2012
  • 23. Recurring payments ● Ability to set up recurring billing schedules: ● For individual products ● Entire orders (bunch of products) ● Can notify customer when payment due ● Or even better - bill the customer automatically if credit card details are stored (eek!) ● EWAY integration utilises tokenised payments, 100% secure ● Token used to bill customer, not CC stored (YAY!) agileware.com.au * DrupalACT April 2012
  • 24. Recurring payments ● Workflow overview (recurring & EWAY): 1.Customer submits order and credit card details 2.Customer details and credit card sent to EWAY 3.EWAY returns token 4.Drupal stores token with order 5.Each billing cycle, token sent to EWAY with bill amount 6.EWAY uses token to bill customer 7.EWAY returns success / fail to Drupal agileware.com.au * DrupalACT April 2012
  • 25. Recurring payments ● Watch for expiring credit cards, notify the customer to update their details ● This modules was developed to solve this problem, http://drupal.org/project/uc_recurring_cc_notify ● Automatically notifies customer agileware.com.au * DrupalACT April 2012
  • 26. Demo ● Recurring payments configuration, products and order agileware.com.au * DrupalACT April 2012
  • 27. Security Keep software up to date ● Disable modules not being used ● Complex passwords ● Do not store credit card details, at all ● Dodgy hosting ● Backups ● SSL ● Check logs and investigate errors ● agileware.com.au * DrupalACT April 2012
  • 28. Scams and fraud Merchant beware ● Stolen credit cards ● Dodgy orders ● EWAY helps protect against fraud ● Merchant diligence ● agileware.com.au * DrupalACT April 2012
  • 29. Startup and running costs Paypal reduces startup costs ● ●Not recommended for large transactions, best to use EFT for those (protect the margin!) Banks will charge: ● ● 2% to 3% per transaction ● plus annual fee ● plus account keeping fee ● Plus plus plus... agileware.com.au * DrupalACT April 2012
  • 30. Startup and running costs EWAY will charge ● ● Annual fee (free in 1st year) ● 0.50c per transaction SSL certificate $75 to $150 per year ● ●Your time to process orders and update website (this does not happen automagically!) agileware.com.au * DrupalACT April 2012
  • 31. Final thoughts Website performance matters, a lot ● Customers do not tolerate mistakes ● Your competitor is one click away ● Process refunds quickly ● Verify each transaction is legitimate ● Treat security seriously ● Optimising the user experience does work ● Automate and monitor what you can ● agileware.com.au * DrupalACT April 2012
  • 32. Questions? agileware.com.au * DrupalACT April 2012