-
Postman having issues launching and goes blank or shows black screen in Windows
For Windows computers, Postman may display a blank or black window when opened, and elements in the app may not be rendering correctly. This issue may be related to a known issue where Postman does not launch. A workaround for this issue involves disabling your GPU. Disabling GPU rendering for Postman generally allows the app […]
-
MOODLE REST WEB SERVICES TUTORIAL
Follow Below Steps to setup MOODLE REST WEB SERVICES Here you will find instructions to create Web Services on Moodle.I am a Moodle expert. I have collected the information below from many different sources and I have eliminated their errors to give you an easy to follow tutorial together with a working example.This tutorial creates a web service enabled to […]
-
How to Remove ‘Enfold Theme by Kriesi’ text in footer
Please follow below steps to remove ENFOLD THEME BY KRIESI test in footer: Step 1: Login into WordPress admin Panel. Step 2: Admin menu click on Enfold. Step 3: In Enfold theme option click on Footer. Step 4: In copyright option add [nolink] at the end of copyright text. Please check below attached screenshot. If […]
-
HOW TO DEVELOP A simple WORDPRESS PLUGIN
In this article, you will understand how to develop a simple WordPress plugin Please try to understand the steps plugin code link given at end of the article STEP 1: CREATE A FOLDER IN WORDPRESS PLUGINS DIRECTORY WordPress Plugin Directory path: wp-content > plugins > basic-wordpress-plugin We have created ‘basic-wordpress-plugin’ folder in plugins directory STEP 2: CREATE […]
-
HOW TO SETUP SSL IN MOODLE
Please check below steps to setup ssl in Moodle LMS: Step: 1 Goto Moodle config.php file on moodle root. Change $CFG->wwwroot to https as shown ( $CFG->wwwroot = ‘http://example.com’;) Step: 2 Next, Set up a redirect in your .htaccess file. Place the following code to htaccess RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://example.com/$1 [R,L] […]