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 →

Angular ngSanitize Not Working

This is to Solve the Embarrassing Issue of ngSanitize Not Working. You have simply to Add to the App both: angular-sanitize.js and textAngular-sanitize.js! Something like that: <script src="/lib/angular-sanitize.min.js"></script> <script src="/lib/textAngular-sanitize.js"></script>continue reading →