Both “WordPress Click to Deploy” and “WordPress Certified by Bitnami” are two different options for deploying a WordPress website, each with its own advantages. Let’s take a closer look at both: WordPress Click to Deploy: This option typically refers to a one-click installation of WordPress provided by a hosting provider or cloud platform. It offers… Continue reading Which is better ‘wordpress click to deploy’ or wordpress certified by Bitmani’?
Category: Wordpress
How to create a new WordPress project in Google Cloud Platform (GCP) using Bitnami
To create a new WordPress project in Google Cloud Platform (GCP) using Bitnami, follow these steps: Sign in to the Google Cloud Console: Go to the Google Cloud Console and sign in with your GCP account. Create a new project: If you haven’t already created a project, click on the project dropdown at the top… Continue reading How to create a new WordPress project in Google Cloud Platform (GCP) using Bitnami
Post views Counter plugin in wordpress
post views counter plugin allows you to display how many times a post, page or custom post type had been viewed in your site. Features include: Option to select post types for which post views will be counted and displayed. 3 methods of collecting post views data: PHP, Javascript and REST API for greater flexibility… Continue reading Post views Counter plugin in wordpress
How to set a template as the front page of wordpress website.
From settings: Visit your site’s dashboard Go to Settings → Reading in the left sidebar: 3.Locate the dropdown option Your homepage displays at the top of the screen: Choose from the following options: Select the — Default — option to use the homepage design from your site’s theme. You can edit the design of this homepage by going to Appearance → Editor. To… Continue reading How to set a template as the front page of wordpress website.
Steps to follow in GCP on WordPress PHP updates.
Log into google cloud console and go to your project. Go to compute engine section and locate the virtual machine. Instance associated with WordPress website. Click on the SSH button next to the VM instance to open a secure shell connection to the server Then use the required commands to install the latest version of… Continue reading Steps to follow in GCP on WordPress PHP updates.
Critical Error handling while updating plugins
Sometimes in the process of PHP updation or plugin updation in wordpress,we may get into critical error in our site and our admin dashboard may not be accessed. Sometimes it may be necessary to deactivate all plugins, but you can’t access the Administration Screens to do so. In this case,we can deactivate plugins in two… Continue reading Critical Error handling while updating plugins
Updraft Plus – Plugin to take back up in wordpress
UpdraftPlus – Backup/Restore By UpdraftPlus.Com, DavidAnderson simplifies backups and restoration of wordpress website.In a single click,webite can be backed up ito google cloud. UpdraftPlus: Restores, as well as backing up Backs up to more cloud options than any others Allows you to set up automatic backup schedules, for the ultimate in convenience Is faster, using up… Continue reading Updraft Plus – Plugin to take back up in wordpress
Before PHP Updation in wordpress
PHP is one of the programming languages that WordPress is built on.So for a faster and secure website,latest PHP version is as important as updated themes and plugins. There are two main benefits to keeping PHP up-to-date: Website may be faster because PHP becomes more efficient with each new version. Updating to WordPress’s recommended version (currently… Continue reading Before PHP Updation in wordpress
How to find httpd.conf file in wordpress
In a typical WordPress installation, the httpd.conf file is not directly accessible or editable from within the WordPress dashboard. The httpd.c To find the httpd.conf file in Google Cloud Platform (GCP), you need to access your virtual machine instance and navigate to the appropriate directory. To find the httpd.conf file in GCP: Log in to… Continue reading How to find httpd.conf file in wordpress
Downloading a file on clicking on a link
HTML <a> download Attribute is used to download a file when clicking on the link (instead of navigating to the file). Example: <a href=”./completefile.pdf” download class=”download-btn”>Download eBook </a> The download attribute specifies that the target (the file specified in the href attribute) will be downloaded when a user clicks on the hyperlink. Can be used with or without a filename value: Without… Continue reading Downloading a file on clicking on a link