What is google tag manager, and conversion tracking? Google Tag Manager (GTM) is a free tool from Google that allows you to manage and deploy marketing and analytics tags (snippets of code) on your website without having to edit the website’s code. This makes it easier and faster to add tracking and marketing tools to… Continue reading How to Track Conversions in Iframe Forms with Google Tag Manager
Author: Krishnaprasad A U
Setting up Google Cloud DNS for a GoDaddy domain
This guide walks you through setting up Google Cloud DNS to serve requests for a domain name purchased via GoDaddy. Why use Google Cloud DNS? Using this service takes advantage of Google’s domain name system (DNS) infrastructure. Google Cloud DNS is production-quality, can handle high-volume DNS requests, has low latency, and is secure. It especially… Continue reading Setting up Google Cloud DNS for a GoDaddy domain
How to Install WordPress on Google Cloud
You’ll first need to sign up for a Google Cloud account. At the time of this writing, first-time users will get a $300 credit toward their hosting services. However, you’ll need to use this credit within the first 90 days, or it will expire. The one-click WordPress deployment is one of the most straightforward options… Continue reading How to Install WordPress on Google Cloud
How to Create an Email Campaign in Zoho
What is Zoho campaign? Zoho Campaigns is an email marketing software developed by Zoho Corporation, a software development company based in India. It provides businesses with a platform to create, send, and track email campaigns, as well as manage their email subscriber lists. With Zoho Campaigns, users can design and customize email templates, segment their… Continue reading How to Create an Email Campaign in Zoho
How to Implement GA4 on the Website
What is GA4 (Google Analytics 4) GA4 (Google Analytics 4) is the latest version of Google Analytics, which was introduced in October 2020. It is the next generation of the Google Analytics platform and offers a new way of tracking website and app data. The main difference between GA4 and the previous version of Google… Continue reading How to Implement GA4 on the Website
How to Implement Godaddy SSL on Apache Server?
How SSL/TLS Secures Communication Over the Internet SSL (Secure Sockets Layer) is a protocol used to secure communication between a client and a server over the Internet. Here’s how SSL works: The SSL/TLS handshake: The client and server establish a secure connection by performing a handshake. During the handshake, they agree on a protocol version,… Continue reading How to Implement Godaddy SSL on Apache Server?
How to Renew Godaddy SSL Certificate on a Google Cloud Apache Server
Log in to your GoDaddy account and navigate to your SSL certificates. Find the SSL certificate that you want to renew and click on the “Renew” button. Download the new certificate files and choose the server type as “Apache“ Connect to your Google Cloud Apache server using SSH. Upload the new certificate and replace files… Continue reading How to Renew Godaddy SSL Certificate on a Google Cloud Apache Server
Redirect HTTP to HTTPS on Apache Virtual Host
Additionally, to force all web traffic to use HTTPS, you can also configure your virtual host file. Normally, there are two important sections of a virtual host configurations if an SSL certificate is enabled; the first contains configurations for the non-secure port 80. The second is for the secure port 443. To redirect HTTP to HTTPS for all… Continue reading Redirect HTTP to HTTPS on Apache Virtual Host
How to Enable HTTP/2 in Apache2 on Google Cloud Server
Requirements A self-managed VPS or dedicated server with Ubuntu 18.04 running Apache 2.4.xx. A registered domain name with working HTTPS (TLS/SSL). HTTP/2 only works alongside HTTPS because most browsers, including Firefox and Chrome, don’t support HTTP/2 in cleartext (non-TLS) mode. Step 1: Install Apache2 Per default it will be apache2 version 2.4.29 what is enought for http2… Continue reading How to Enable HTTP/2 in Apache2 on Google Cloud Server
How to Disable Inspect Element of a Website?
1. Use of the F12 key on the browser: This can be blocked using a javascript key event listener. Use the below script to accomplish it. 2. Use of Right click You can block this using javascript or with just your HTML or 3. Use of other shortcuts involving Ctrl keys 4. By temporarily removing… Continue reading How to Disable Inspect Element of a Website?