Install and run the web app on your front-end VM

Install and run the web app on your front-end VM Enter these commands to install the todo web application. You can use the keyboard to copy and paste each command line. Click Done when you finished entering all the commands to close the SSH window. Update packages and install git, Node.js and npm. When asked …

Installing mongo db at google cloud instance compute engine as a backend

Install and run the back-end database Enter these commands to install and run MongoDB. You can use the keyboard to copy and paste each command line. Click Done when you finish entering all the commands to close the SSH window. Update packages and install MongoDB. When asked if you want to continue, type ‘Y’. sudo …

Separate tab index in gravity form while using multiple forms in one page

Very necessary to separate tab index in gravity form while using multiple forms in one page. It may cause conflicts between your two or more gravity forms used in on page that usually happens like one for header popup one for sidebar and one for footer While filling a form you can disguise to another …

htaccess redirects with parameter to without parameter

Hello friends, This is a post regarding htaccess redirects with parameter to without parameter. LIKE https://www.mattssportinggoods.com/index.php?route=product/category&path=61 to https://www.mattssportinggoods.com/fishing I was stuck with a problem where i needed to redirect the URL on the basis of string variables. While working with an OpenCart project, we enabled pretty permalinks which allows us to access the category pages with …

How to permanent 301 redirect your olddomain to a new domain?

Here few fast track to make your htaccess redirects more in easy way. How to permanent 301 redirect your olddomain to a new  www domain? RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !newdomain.com$ [NC] RewriteRule ^(.*)$ http://www.newdomain.com/$1 [L,R=301] How to permanent 301 redirect your old domain to new non-www domain? RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} …

How to install steam in Ubuntu

How to install steam in ubuntu includes few editing for 32bit and 64bit 32-bit Ubuntu 1. enable the “multiverse” repository 2. run sudo apt-get update 3. Install steam using either apt-get or the Software Center. 64-bit Ubuntu 1.add the following line to /etc/apt/sources.list: deb http://repo.steampowered.com/steam/ precise steam You must know How to edit the system …

Adding a google re-captcha into gravity form

Adding a google re-captcha into gravity form is quite simple wor any wordpress developer. Add the below js file in your site. <script src=”https://www.google.com/recaptcha/api.js?onload=myCallBack&render=explicit” async defer></script> Also create a variable in which you will be calling recaptcha. <script defer=”defer”> var recaptcha1; var myCallBack = function() { //Render the recaptcha1 on the element with ID “recaptcha1” …

showing two dimentional JSON in angularJS

Belo is the code definig about showing two dimentional JSON in angularJS. Its a beginners action of displaying records. You can learn fancy methods of manupulating logics in angularJS. /* showing two dimention JSON in angularJS */ <!DOCTYPE html> <html> <script src=”http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js”></script> <body> <div ng-app=”helloApp” ng-init=”{{companies}}”> <div ng-controller=”CompanyCtrl” > <p>Looping with ng-repeat:</p> <ul> <li ng-repeat=”x …