Recently I have got a free SSL certificate and install on my shared hosting server so today I am going to show you how to get your free SSL certificate and install on your shared hosting server so let follow these steps. Step 1: Get your free SSL certificate from SSL For Free and enter your domain…
Author: admin
Manage Cronjobs In Laravel
Laravel provides a feature to run specific jobs through only one cron on the server. It automatically manages all the jobs through the artisan command you don’t need to set multiple jobs on the server to execute in the specific time and specific interval. We can manage a task on the server that executes scripts…
How To Remove The WordPress Version Number
By default WordPress, the version number is enabled and show in the code of WordPress site installation. Generally, there is no need to remove the version number. Maybe someone doesn’t want to reveal the version number of the WP site. It is generally needed when you don’t update WordPress when the update available. Using the…
WordPress Asking For FTP Credentials When Installing Plugins Or Themes
Most web hosting is configured to automate installing themes or plugins. On some hosting WordPress ask for FTP details either to update or install a theme or Plugin. To fix this issue we can enter our FTP credentials in the wp-config.php file so that we don’t have to enter it every time we update a…
WordPress Permalinks Not Working On Ubuntu 14.04
Today I have installed Ubuntu 14.04 for web development and installed fresh WordPress but after clicking on any pages, it takes me to the apache 404 page so how to fix this issue? First, open your terminal and follow these steps: Step 1: Activate the mod_rewrite module sudo a2enmod rewrite Step 2: Restart the apache…
Change Table Columns With Migration In Laravel 5 Or Above
Recently I have started working on a Laravel project and playing with migration for the first time and realized that managing the database with migration, it very easy to handle. In this tutorial, I will explain how to create the migration and how to change columns type. Let’s create a games table with the migration,…
How To Change Pre-Installed PHP Version To MAMP In Mac/osx
If you are using Mac OSX for the first time and switched from the windows environment and want to develop some cool web-based application then you need to install MAMP which is absolutely free. After installing MAMP on your local environment you need to add the MAMP version of PHP to the PATH variable. Instructions…
WordPress Custom Post Type Pagination
The last couple of days have been very hectic for me for finding a solution regarding how to write code for multiple meta queries for custom fields, and as I am a great fan of ACF(Advanced Custom Fields) I prefer using ACF because it’s very easy to create fields and display values on front-end side….
How To Use wp_mail With WordPress
WordPress has its own email functionality, which calls wp_mail for sending emails. WordPress wp_mail function is allowing you the same functionality as PHP is giving to you so let’s try and use it. Usage: <?php wp_mail( $to, $subject, $message, $headers, $attachments ); ?> $to: (string or array) (required) The intended recipient(s). Multiple recipients may be…