Websites have multiple layers:
Domain Registration
- When you register a domain, you pay someone ~$20/year for a .com domain. Registration means you are leasing the domain for a year or more. A domain is the “yoursite.com” or “yoururl.net” or “yourorganization.org” that people type into their browser.
- We use services like Namecheap, Dreamhost, and GoDaddy for domain registration. There are thousands of other domain registrars out there.
DNS
- In order for domains to have an email or website, they need DNS records. DNS records include things like “A”, “cname”, “mx”, “txt”, etc. Websites need “A” and/or “cName” records. If your website host and your domain registrar are the same, then you probably don’t need to edit dns for the website.
- We prefer to use Cloudflare for dns, but there are thousands of dns service providers out there.
- Changing dns records can break websites and email. Proceed with caution, but know that you can always change it back.
- The safest way to launch a site is to simply change the “@” and “www” A and/or cname records.
- If you ever change the nameservers at the domain registrar, you must copy all the dns records from the current dns provider to the new provider before changing the nameservers on the domain.
- “A Records” must be ip addresses like “12.345.67.890”.
- “cName Records” must be urls like “yoursite.com”.
Website Hosting
- Every website has a website host. You pay your hosting company to house all the files, text, images, etc. that your website uses.
- At its most-basic, hosting is a folder on a server. WordPress, additionally, requires a mysql database, provided by your web host unless you have special needs.
- There are thousands of website hosting companies and hundreds of hosting niches. For example, a WordPress site needs different hosting technology than a phone app. Most WordPress hosts these days offer “managed” WordPress hosting, which is what you want unless you understand the differences between “managed” and “unmanaged”.
- Pricing varies greatly based on brand and need.
- I once had a basic WooCommerce website with thousands of customers and very few products – we paid $5,000/mo for hosting on this site. When we switched this same site to Shopify for hosting, we paid only $2,000/mo.
- I managed a different WooCommerce site that had 80,000+ products and very few customers – that one cost only $30/mo to host.
- Usually the size of your website doesn’t affect hosting costs. Sites with lots of visitors, lots of logged in users, and/or lots of e-commerce sales will usually pay lots more for website hosting.
- Sometimes your website host will also provide email services (see below).
Email Hosting
- If you check email, you have an email host. Common email hosts are Gmail, Microsoft, Yahoo Mail, etc. There are thousands of other email hosts.
- Email is tricky business, and I recommend going with a reputable company for this. I usually recommend Google Business or Microsoft 365. We use Google at The Mighty Mo!
- Oftentimes, your web host also sells email hosting (or even throws it in for free!). This can be a great deal if it fits your needs. But best-practice is to separate your email hosting from your web hosting for the most flexibility and better support down the line.
Have further questions about Domain Registration, DNS Management, Website Hosting, or Email Hosting? Ask away, and I’ll do my best to get you an answer to your question.
More posts from themightymo.com
How to Connect a GoDaddy Site to ManageWP
GoDaddy owns ManageWP, and, strangely, they make it very difficult to add GoDaddy-managed WordPress sites to their ManageWP service. Thankfully, there’s a quick workaround: Visit https://yoursite.com/wp-admin/plugins.php?showWorker=1 — This will make the ManageWP “Worker” plugin visible. Copy the connection info from the ManageWP Worker plugin. Add the site per-normal on ManageWP. That’s it! I hope this…
How to check if your current page is the wp-login.php page
I realized this morning that my TMM Maintenance Mode WordPress plugin had a bug that was causing the wp-login.php page to be inaccessible. The solution was to write a simple function that checks whether or not we’re currently on a login page, and then add a call to that function in my code. Here’s the…
WooCommerce Product Image Gallery Not Loading with WP Rocket Active
Today I updated a WooCommerce site, and everything worked fine, except for the images on product pages – they were not displaying at all. After a lot of trial & error, I realized that WP Rocket was to blame. I’m not sure exactly what the issue was (though my hunch is that it had to…