How to Generate a Google App Authentication Password

Making Google App Password Guide You Are Welcome! This Tip Shows You How to Generate a Google App Authentication Password. And this process is needed for All the Apps that Not Supports the Google Two-Steps Authentication. First Choose Manage Google Account From the Top-Right Corner Drop-Down. Then Search for ‘App Passwords Then Create App Password This is an One Time Pass and so you Don’t Need to Store it: Finally, Use it as the Authentication Password on Apps like GMail.

Continue Reading

Angularjs 1 ngMaterial $injector:modulerr Not Working

angular-material $injector:modulerr Issue For me this Issue was derived from Angularjs 1.7.2+. So I solved it by Downgrading the Libraries to 1.7.1 like here below: <!– AngularJS Material Dependencies –> <script src=”https://ajax.googleapis.com/ajax/libs/angularjs/1.7.1/angular-animate.min.js”></script> <script src=”https://ajax.googleapis.com/ajax/libs/angularjs/1.7.1/angular-aria.min.js”></script> <script src=”https://ajax.googleapis.com/ajax/libs/angularjs/1.7.1/angular-messages.min.js”></script> <!– AngularJS Material Javascript –> <script src=”https://ajax.googleapis.com/ajax/libs/angular_material/1.1.10/angular-material.min.js”></script>

Continue Reading

Angularjs 1 How to Initialize Form Input Field Example

Angularjs Initializing Form Input Field You are Welcome! Here below you find detailed instructions on How to Initialize Form Input Field on Angular.js 1.x. The Solution include an Example of a View with an associated Controller. Especially relevant: the default Angular Binding by the “{{ }}” is Not Suited for Passing Data to Initialize the Forms Fields. View like: <form id=”editLocation” name=”editLocation” role=”form” ng-submit=”vm.onSubmit()”> <div class=”form-group”> <input id=”name” name=”name” ng-model=”vm.formData.name”/> <input id=”address” name=”address” ng-model=”vm.formData.address” /> </div> <button type=”submit”>Submit location</button> </form> Controller as: angular .module(‘myApp’) .controller(‘editLocationCtrl’, function editLocationCtrl($scope) { var vm = this; $scope.vm.formData = { name: “Zoc Hardy”, address: “1600 …

Continue Reading

WordPress Plugin Fastest Cache wp-content/cache/all/*/index Issue

Fastest Cache wp-content/cache/all/*/index Issue If the URL Redirection terminate with an ‘index‘ then the Problem should be caused from a .html Redirection Rule Like here Below. RewriteCond %{REQUEST_URI} \.html$ RewriteRule ^(.*)\.html$ $1 [R=301,L] You have just to Implement the Rewrite Rule in this Way: RewriteCond %{REQUEST_URI} !cache/all RewriteCond %{REQUEST_URI} \.html$ RewriteRule ^(.*)\.html$ $1 [R=301,L] Whit this URLs Containing ‘cache/all’ are Not be Modified!

Continue Reading

Angularjs 1 Html5 Mode Refresh Not Working How to Solve Issue

Express.js Angular.js 1 Html5 Mode Not Working First Remove the: app.use(‘/’, index); Or Equivalents directives. Then Edit Main app.js File and Append: app.use(function(req, res) { res.sendFile(path.join(__dirname, ‘app_client’, ‘index.html’)); }); In this Case the index.html File is Inside to the app_client Directory…

Continue Reading

Angularjs 1 Html5 Mode Refresh 404 Not Found How to Solve Issue

Node Angular.js 1 Html5 Mode 404 Not Found First Remove the: app.use(‘/’, index); Or Equivalents directives. Then Edit Main app.js File and Append: app.use(function(req, res) { res.sendFile(path.join(__dirname, ‘app_client’, ‘index.html’)); }); In this Case the index.html File is Inside to the app_client Directory…

Continue Reading

Node AngularJs How to Mirror index.html File

Node Angular.js Mirror index.html First Remove the: app.use(‘/’, index); Or Equivalents directives. Then Edit Main app.js File and Append: app.all(‘/*’, function(req, res) { res.sendfile(‘app_client/index.html’); }); Reference: stackoverflow

Continue Reading

Angular.js UI-Bootstrap Failed to Load Template

Angular UI Fail to Load Template On the Firefox Javascript Web Console you may find Trace of this message: uib%2Ftemplate%2Fmodal%2Fwindow.html&p1=404&p2=Not%20Found Solution: You have to Include Only the ‘-tpls-‘ Javascript File. So This Setup is Right: <script src=”/lib/ui-bootstrap-custom-tpls-2.5.0.min.js”></script> But instead this one is Not: <script src=”/lib/ui-bootstrap-custom-tpls-2.5.0.min.js”></script> <script src=”/lib/ui-bootstrap-custom-2.5.0.min.js”></script>

Continue Reading