Skip to main content

Limited Budget To Start Your Online Shop In 2018: Web Hosting + E-commerce + SSL + Chatbot


Wanted to start your online store business in a more modern, cheaper, stable, and secure way? This blog is a step by step guide to do:


 Element Function Cost
 GoDaddy Web-hosting Host your website  US$1/month
 WooCommerce E-commerce platform Store management (products, orders) free
 ZeroSSL SSL certificate Secure the transactions free
 Braintree Payment gateway Accept credit card payment free
 Chatbot CMS WcBot 24/7 answer your customer questions US$29, one-off

Blog Disclaimer Notice
This is not a GoDaddy Ad.
I’m the chatbot author

1. Monthly US$1 web hosting

Below is the slide shows you how to buy US$1 web-hosting from GoDaddy:
(Click or left/right arrow keys to view next/prev slide)

2. Install WooCommerce

GoDaddy web-hosting is ready, below is the slide shows how to install WordPress and WooCommerce:
(Click or left/right arrow keys to view next/prev slide)

3. Generate a free SSL certificate

The below slide shows how to obtain a free SSL certificate from ZeroSSL (many steps):
(Click or left/right arrow keys to view next/prev slide)

4. Credit card payment gateway from Braintree

Some famous online business such as Uber, Airbnb has incorporated Braintree as a payment provider. The main reasons are the feature, price, and ease of use. This article mentioned that Braintree is the lowest currency conversion rate when compared with other providers. Although transaction fees of all providers are almost the same (2.9% + $0.3), Braintree charges only 1% on currency conversion fee per transaction. This is the “real killer” to save income for international and large amounts of sales volume business owners.

Easily incorporates Braintree in WooCommerce to accept credit card

Firstly sign up a business account in Braintree portal. Fill the signup form with your business info such as name, address, contact, industry, and banker. Braintree soon to contact you and help you complete the account opening processes.

When your Braintree account is ready to go, the below slide shows how to incorporate Braintree into the WooCommerce:
(Click or left/right arrow keys to view next/prev slide)

5. WooCommerce chatbot plugin

I am the author of WcBot. WcBot is a chatbot running on Facebook Messenger. It is a WooCommerce plugin costs US$29 (now free during beta period). WcBot has a built-in shopping cart. Your customer can buy the products and pay with their credit card directly inside the chatbot (not WooCommerce checkout). WcBot can also be integrated into WooCommerce site. Let’s take a look at the quick demo video:

(This user manual describes how to integrate WcBot into a website)

6. Conclusion

The sum of costs is $12.18 + $29.00 = $41.18 for first year. It includes:
  1. A year of GoDaddy web-hosting
  2. WooCommerce e-commerce platform
  3. SSL certificate
  4. Credit payment gateway
  5. WooCommerce chatbot plugin
Is it worth paying for your sideline?

Notices:
  1. The SSL requires renew every 90 days
  2. Chatbot CMS WooCommerce (WcBot) now in beta stage until Jan 2018. Beta version is free


Comments

  1. This comment has been removed by the author.

    ReplyDelete
  2. I think before starting a blog we need to find the best web hosting that support our website example: best WordPress hosting like Bluehost

    ReplyDelete

Post a Comment

Popular posts from this blog

Build A Simple Sales System using Google Drive

Google Drive is a free-to-use cloud service with a 15 GB limit storage. 15 GB is large enough to store documents, and "program" too. Yes, it's correct. We can program Google Drive. This blog is a step-by-step tutorial to show you how to build a simple P.O.S. system on Google Drive. Create a Google Sheets to define the products 1. Login to Google Drive using your Gmail account and create a Google Sheets: 2. Input the products in the Google Sheets Create a Google Forms for sale input 1. Create a new Google Form 2. Edit the form and the first field Note that leave the option field unchanged. We'll assign it programmatically in below 3. Add a quantity field 4.  Add a last field for the price input How to copy data from Google Sheets to Google Forms? We need to add a script to do that. Google developed Google App Script (GAS) for us to achieve that. Now go back to the Google Sheet we just created above. Then enter to the script editor You'll see the below screen. Then ...

How I make a web-components based dynamic Javascript page at the top of Google Search

Introduction Everybody wants their website shown at the first position of Google search. SEO (Search Engine Optimization) is a big topic. I just helped my client's website shows the database records at the top search rankings (at least several Chinese generic keywords). See the three example questions all are listed at top ranking: Website background: My client's website  popa.qa  is a traditional Chinese Q&A site that lets members ask and answer questions. All answers and questions are storing in the database server. Step 1: Create The Project This blog illustrates the problems and the steps to fix that with project source codes. Below is the description of the basic project: NodeJS backend (server.js) Develop an API ( /get-database-records ) to simulate getting database records Web-components frontend (index.html) An example component IndexPage  make use of  LitElement to render database records To start the server type: npm start Then I check the webpag...

Develop an intelligent Slack bot using Block UI for website administration

In conventional web site administration, web developers build an admin site to perform daily tasks such as query how many members register daily and block a user. The admin site development includes frontend and backend codes. The slack developer can do the same thing without any frontend code. Starting from Feb 2019, Slack provides a very powerful and beautiful UI component (Block UI): In this blog, we will develop a Slack bot to tell you how many users register today, or block a user. Take a look to below video: What is Slack? Slack is a collaboration hub where you and your team can work together. Like Whatsapp group, our team 50% of workers are working remotely and all communicate in Slack workspace. Why Slack? Slack provides SDK for developers to develop applications. Below sections will show you how to develop a Slack Bot (Chatbot application). It works like a colleague to perform backend tasks. The bot can recognize below messages: How many users registered today? Block user NNN ...