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 →

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$…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 →