How to Create Website From Scratch Building a website can be fast, cheap, and easy if you know the best way to do it. You might have heard stories of professionals doing it and think that creating a website is expensive and complicated? It can be in some cases, but don’t worry – there are ways that even a complete…
Identity Access Management (IAM) on AWS: An Overview
What exactly is IAM? IAM is a permission system that controls access to AWS resources, as the name indicates. So, as an administrator, it aids you in defining who has access to what on an AWS account. Second, IAM users enable you to provide wide or particular rights to groups or even individual individuals. Broad permissions may include things like…
Running MySQL Databases on AWS EC2 – A Tutorial for Beginners
Running databases on local computers is easy and sometimes sufficient enough at the development step. But, deploying most applications needs to run databases on a remote server. There are thousands of solutions for deploying databases remotely. This article shows you how to create a simple database on AWS EC2 services and remotely manage it. This article is written for beginners…
8 WordPress CRM Plugins to Grow Your Business
True customer relationship management (CRM) software helps you understand your customers and engage with them throughout the entire customer lifecycle. Here we are going to discuss 8 WordPress CRM Plugins that help you to grow your business. This is accomplished by collecting and analyzing lots of data. From prospecting to marketing to customer service, gathering and analyzing customer data can…
PHP 7.2 What’s new features and improvements
PHP 7.2 has released officially with new features, functions and several smaller core improvements. PHP 7.2 has come with some new security functions and language legacy clean ups. it provides a big performance boost and it is faster than PHP 7. Here I will describe about the new released features that are mentions as below. PHP 7.2 features Parameter type…
WordPress customization part 3- Changing the order of dashboard menus
This is the 3rd part of wordpress customization series. Now we are going to change the order of wordpress dashboard menus. we can change the order using menu_order filter. Before using menu_order filter, we need to activate custom_menu_order first. Go to your functions.php file and put the following code. function custom_menu_dashbaord_order($menu_order) { if (!$menu_order) return true; return array( ‘index.php’, //…
How to rename wordpress dashboard menu ?
Go to functions.php and write the following code.
WordPress customization part 2 – Renaming dashboard menus
This is the part 2 of wordpress customization series. Sometimes guys you need to rename your wordpress dashboard menus as your convenience. Like if you want to change your Posts menu to Blog posts, you can do it easily with admin_menu hook. First of all we go to functions.php and create a custom function as follow. Function rename_top_level_menus(){ global $menu;…
How to create a globally accessible helper class in Laravel 5.5
Helper class in laravel is a class that contains all those functions which are performs common tasks and can be reused in our application. Here we will create a class which contains reusable functions and these functions can be called every where in your laravel application. So let’s start to create our helper class that will globally accessible. How to…
WordPress customization part 1- removing menu from wordpress dashboard
This is the first part of wordpress customization series. In this tutorial i will discus about removing menu from wordpress dashboard. Removing a menu from dashboard doesn’t means that the menu has removed forever but it is just hide from admin screen. WordPress is a very popular cms (Content Management System) that provide us a very usual and easy back end environment.…