How to schedule an email in Gmail? Gmail has introduced a new feature this year (2019) which enables us to schedule an email. This feature ...

How to schedule emails in Gmail?

How to schedule emails in Gmail?

How to schedule an email in Gmail?

Gmail has introduced a new feature this year (2019) which enables us to schedule an email. This feature was very much needed. Email scheduling feature allows us to send emails later such as if you are composing an email on a Sunday evening because you would forget but want to send only during business hours on Monday.

In this post, we'll see how to schedule an email in Gmail.
Read more »

0 coment�rios:

How to enable dark theme on Android One Phone? In this post, we will see how to enable dark theme on Android One Phone . In this example, I ...

How to enable dark theme on Android One Phone?

How to enable dark theme on Android One Phone?

How to enable dark theme on Android One Phone?

In this post, we will see how to enable dark theme on Android One Phone. In this example, I am using Nokia 6.1 Plus which is running Android One version 9.
Read more »

0 coment�rios:

There are several ways to migrate a WordPress site from Development server to a live / production server. The traditional way is to manually...

How to use "Duplicator – WordPress Migration Plugin" to migrate development site to live site?


There are several ways to migrate a WordPress site from Development server to a live / production server. The traditional way is to manually move the files to the live server via FTP or Host's File Manager and import the database. But that requires some manual editing in the database - updating the URL etc. While it is not so difficult if done meticulously, it may be easier if we use a GUI based tool to assist us in the process. In this post we shall see How to use "Duplicator – WordPress Migration Plugin" to migrate development site to live site? The same process can be used for migrating a WordPress site from one host to another if required.

Read more »

0 coment�rios:

Some time ago, Bluetooth was be the most common method for transferring files wirelessly from one supported device to another. But nowadays,...

How to connect Android Device to Computer using Mi Drop app for file transfer?

How to connect Android Device to Computer using Mi Drop app for file transfer

Some time ago, Bluetooth was be the most common method for transferring files wirelessly from one supported device to another. But nowadays, there are many apps for transferring files wirelessly such as SHAREit, Xender, Zapya, Mi Drop etc. And for transferring files from the phone to the computer, the USB cable is and may still be the most common method among many users. But thankfully, for those who are familiar with, there are various ways to transfer files between the Android Phone and computer wirelessly . There are apps available which allows connecting your phone to the computer using FTP. This allows file transfer and also browsing the Android Device File Storage from the computer.

In this post, we shall see how to use Mi Drop to transfer files between an Android Phone and a Windows Computer.
Read more »

0 coment�rios:

Sometimes when opening images in Adobe Photoshop, we may get an error - Could not complete your request because a SOFn, DQT or DHT JPEG mark...

Unable to open images in Adobe Photoshop:Could not complete your request because a SOFn, DQT or DHT JPEG marker is missing

Could not complete your request because a SOFn, DQT or DHT JPEG marker is missing

Sometimes when opening images in Adobe Photoshop, we may get an error - Could not complete your request because a SOFn, DQT or DHT JPEG marker is missing before a JPEG SOS marker. In this post, we shall discuss how to resolve this issue if it occurs.
Read more »

0 coment�rios:

In this post, we shall see how to resolve the WordPress Error: “The Site Is Experiencing Technical Difficulties”. This kind of error is also...

Resolved - WordPress Error “The Site Is Experiencing Technical Difficulties”

resolved-wordpress-error-wsod-the-site-is-experiencing-technical-difficulties


In this post, we shall see how to resolve the WordPress Error: “The Site Is Experiencing Technical Difficulties”. This kind of error is also called the "White Screen of Death" in WordPress, similar to the "Blue Screen of Death" in Windows.
Read more »

0 coment�rios:

Windows 10 has the feature to enable dark mode, which some may like to enable. In this post we shall see How to enable dark theme mode in Wi...

How to enable dark theme mode in Windows 10 including Windows File Explorer

how-to-enable-dark-theme-windows-10

Windows 10 has the feature to enable dark mode, which some may like to enable. In this post we shall see How to enable dark theme mode in Windows 10 including Windows File Explorer.

Watch this demo video how to enable dark theme mode in Windows 10:
Read more »

0 coment�rios:

Sitemaps are important from SEO perspective. If you have installed the WordPress plugin Google XML Sitemaps , and you have submitted a link ...

Google Search Consile Error - Submitted URL marked ‘noindex’

google-search-console-submitted-url-noindex-validate-fix-email-from

Sitemaps are important from SEO perspective. If you have installed the WordPress plugin Google XML Sitemaps, and you have submitted a link to Google via the Google Search Console, you might receive an email from "Google Search Console Team " saying that "your site is affected by 1 new Coverage related issue - Submitted URL marked ‘noindex’". Here is how to resolve it.
Read more »

0 coment�rios:

If you are familiar with WordPress CMS, you might have observed that WordPress autsaves every edit by default. Post revisions is a good feat...

How to disable, limit and delete WordPress post revisions?

how-to-disable-limit-delete-wordpress-post-revisions

If you are familiar with WordPress CMS, you might have observed that WordPress autsaves every edit by default. Post revisions is a good feature in WordPress to review and track changes. However, for some it may not be necessary as it is not required or due to database size concerns.

In this post, we shall see how to disable WordPress post revisions, set WordPress post revision to a certain number, deleted previous WordPress post revisions. 

So, I have a WordPress website too and I saw that the revision of a particular post is 229 already! I am not sure if there is a limit in WordPress up to how many latest revisions are saved. I guess there is none by default. It would be awesome if there is a setting for admins to set the revisions in WordPress.

wordpress-post-revisions-1


Anyway, I decided I do not need that many post revisions in my database. I also do not want to disable post revisions completely. You may want to completely disable revisions as per your need. Follow the steps below as per you need.

1) Disable WordPress post revisions
As discussed WordPress keeps post revisions by default. There is no UI to disable it. However, it can be defined in wp-config.php file.

Add the following line of code at the bottom of the wp-config.php file just above (require_once( ABSPATH . 'wp-settings.php' );) to disable WordPRess post revisions.

define('AUTOSAVE_INTERVAL', 300 ); // seconds
define('WP_POST_REVISIONS', false ); 

Place the code above the line: require_once( ABSPATH . 'wp-settings.php' ); 

This code will disable all future revisions to be saved and it will also increase the autosave interval from 60 seconds to 300 seconds. The post will be auto-saving every 5 minute instead of every minute.

2) Set WordPress post revision to a certain number
In my case, I did not disable the post revisions. I wanted to reduce the number of post revisions to keep.  To limit the number of WordPress post revisions, add the following line of code at the bottom of the wp-config.php file.

/** No. of revisions to keep */
define( 'WP_POST_REVISIONS', 2 );
Place the code above the line: require_once( ABSPATH . 'wp-settings.php' );

This will keep only two post revisions in the database.

3) Delete previous WordPress post revisions

As discussed above, we can disable and limit the post revisions. However, doing the above changes does not remove the previous post revisions already saved in the database, which are occupying unnecessary space.

To delete the previous post revisions from WordPress database, do the following:
  • Login to your host Control Panel
  • Launch phpMyAdmin
See the post revisions in WordPress database:

Launch phpMyAdmin > Click on SQL tab and run the query:

SELECT ID,post_title,post_type FROM `wp_posts` where post_type="revision";

Note: If table prefix (wp) has been changed, use appropriate table prefix in your case.

This query will show you all the posts which are of type - post revisions.

wordpress-post-revisions-phymyadmin





Find out how many post revisions are there in the WordPress database:

Launch phpMyAdmin > Click on SQL tab and run the query:

SELECT count(*) FROM `wp_posts` where post_type="revision";

Note: If table prefix (wp) has been changed, use appropriate table prefix in your case.

This query will display the number of post revisions in the database.

Delete the post revisions from database:

To delete the post revisions, run the following query from phpMyAdmin:

DELETE FROM wp_posts WHERE post_type = "revision";

Note: If table prefix (wp) has been changed, use appropriate table prefix in your case.

The steps in this post should disable Post revisions, set a limit to the number of post revisions to keep and delete all previously saved post revisions stored in the WordPress database.

Post revisions may be a useful feature but if it is not necessary for you, you may following the steps above to disable or limit the post revisions as discussed.


0 coment�rios:

P anoramic photos are wide angle photos.  Most smartphone cameras and even digital cameras have Panorama mode, where the user have to pan to...

How to create a panoramic photo from multiple images in Adobe Photoshop?

create-panoramic-photo-adobe-photoshop

Panoramic photos are wide angle photos.  Most smartphone cameras and even digital cameras have Panorama mode, where the user have to pan to create a panoramic photo. But if you need to create a panoramic photo from normal photos, we can do so easily using Photoshop. In this post, we shall see how to create a panoramic photo from multiple images in Adobe Photoshop? It is super easy.
Read more »

0 coment�rios:

Google Drive is a cloud storage available to all Google Users. If you have a Gmail address, you have Google Drive access too. Every user g...

How to resolve Google Drive file sync issues - red cross mark?

google-drive-dile-sync-issues-red-cross
Google Drive is a cloud storage available to all Google Users. If you have a Gmail address, you have Google Drive access too. Every user gets a basic 15GB storage, which is quite sufficient to store your personal files. If you are already using Google Drive, you may already know that it is accessible at https://drive.google.com. Google Drive also has a "Backup and Sync from Google" which can be installed on computers to store and sync files to and from Google Drive. It is recommended to install the "Backup and Sync from Google" if you need to frequently manage files from the computer. Google Drive is also available for Android and other platforms too.

In this post, we shall discuss ways to resolve Google Drive sync issues.
Read more »

0 coment�rios:

I n WordPress, there is a widget called "Tag Cloud" which displays the Tags used in posts. This is useful when we want to display ...

WordPress: How to display only limited number of most popular tags in WordPress Tag Cloud and keep same font size?

wordpress-tag-cloud

In WordPress, there is a widget called "Tag Cloud" which displays the Tags used in posts. This is useful when we want to display a list of Tags in widget areas so that visitors can quickly find related posts by Tag. In this post, we shall see -
  • How to limit the number of most popular tags to display in the Tag Cloud widget?
  • How to keep the same font size of the Tags in the display?
Read more »

0 coment�rios:

M i Music is the official music player app on Xiaomi phones which comes preinstalled on all Xiaomi phones. Mi Music Player allows streaming ...

How to convert songs downloaded from Mi Music Player to Mp3?

how to convert downloaded songs from mi music player app to mp3

Mi Music is the official music player app on Xiaomi phones which comes preinstalled on all Xiaomi phones. Mi Music Player allows streaming music online. And starting from Mi Music version v3.4.08i, Xiaomi introduced 20 Free song downloads using the Mi Music App. However, the songs downloaded using the Mi Music Player are in .XOHT format. So the files cannot be played on other conventional music players.

In this post we shall discuss how to download and convert the songs downloaded from Mi Music Player to MP3. You can then copy the songs, and play them on various music players.
Read more »

0 coment�rios:

L ike many small time YouTube creators, I also got an email in January 2018 about changes to the YouTube Partner Program (YPP)  regarding ch...

YouTube Monetization disabled and re-enabled!

youtube-monetization-disabled-re-enabled-1

Like many small time YouTube creators, I also got an email in January 2018 about changes to the YouTube Partner Program (YPP)  regarding changes new threshold of 4,000 hours of watchtime within the past 12 months and 1,000 subscribers. The revenue wasn't much but it was good to get some revenue from the little effort made in creating some videos. Unfortunately, my channel did not meet the subscriber threshold though watch time was alright. So, as per the new rules, monetization was set to be disabled.
Read more »

0 coment�rios:

T his post is intended for those who are trying to submit or upload images on websites that ask for certain dimension - both in size and pix...

How to resize photograph and signature to certain width and height in pixels and file size in KB?


This post is intended for those who are trying to submit or upload images on websites that ask for certain dimension - both in size and pixels. How to resize photograph and signature to certain width and height in pixels and file size in KB? Most online applications for government exams in India asks for scanned photograph and signature in specific pixel size and image size such as -

 Upload Scanned Images of Photograph and Signature:

    The scanned images of photograph and Signature should be in jpg/jpeg format only.
    Size of the photo image must be between 20 KB to 40 KB
    Size of the signature image must be
between 20 KB to 40 KB
    Dimension of photograph image should be 3.5 cm(width) x 4.5 cm(Height) only.
    Dimension of signature image should be 3.5 cm(length) x 1.5 cm(Height) only.

Read more »

0 coment�rios:

There are numerous TV channels today but only a few selected channels are watched by most subscribers depending on various factors such as a...

How to select your own channels on Airtel Dish TV as per TRAI rules?

airtel-dish-tv-select-own-channels-plan-trai-3

There are numerous TV channels today but only a few selected channels are watched by most subscribers depending on various factors such as age, interest, gender etc. Kids would like to watch cartoons, youth may want to watch music, movies and sports. Elderly people may want to watch news, religious channels etc. With so many channels of the same kind, as subscribers we are paying even for channels we don't watch. 
Read more »

0 coment�rios: