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 →