To customize look and feel of a WordPress website is easy. You may know that almost every WordPress website uses a ready-made theme or a custom theme. Most the times it is a ready-made theme which is free or paid.…
Author: Arvind Kumar
How to Check Memory Usage of Processes on Linux
One of the basic task you can do on your computer or server is to check how much memory or RAM (Random Access Memory) each of the process is using. RAM or memory of your computer or server is limited…
How to Extract (Unzip) Tar Gz File
Gzip is the most popular algorithm for compressing tar files. By convention, the name of a tar archive compressed with gzip ends with either .tar.gz or .tgz.
How to install a WordPress theme
You can create your own working website or blog in 30 minutes using WordPress. All you had to do is to buy a domain, buy an hosting and install WordPress CMS. This post expect you to already have a working…
How to install free SSL Certificate in Cpanel
SSL certificates are used to secure websites from hackers and data interceptors. An SSL certificate acts as a security layer over the data transferred between transactions or requests on your website. It helps you to prevent stealing of important information…
How to Clear cache in Laravel 10/9/8/7
In this simple tutorial I will show you how to clear cache in Laravel application easily. I will also show you the artisan commands to run and I will also show you how you can create a simple function to…
Install SSL certificate on Linux server
SSL certificate is used to protect data shared by websites and applications to make it secured. Secured Socket Layer(SSL works on an algorithm to encrypt data exchanged between browser and server. An SSL makes data between request unreadable and unbreakable…
Linux commands to list folders with their corresponding sizes
Simple du command lists all folders with their corresponding size of disk plus to start with. DU – Disk Usage
Dropzone Child elements are not clickable for upload
When attaching the .dropzone() object via jQuery, generally it does not allow you to click child elements and open the upload dialog.
Using global constants and arrays in Laravel 5
Most of the time developers need to create common and global set of constants, variables and arrays which could be used anywhere in your application. There is a handy way to do it in Laravel 5.