Author Archives: Jason

Password Protect Directories Using Htpasswd On Nginx

Nginx 1.4.3, Magento CE 1.7.0.2 Apache offers us a neat security feature using http auth. It provides a simple way of protecting files and directories which is extremely useful, albeit not high-level security. Nginx users will be happy to hear that this functionality is also available by default on Nginx 1.4.3 using the HttpAuthBasicModule. The […]

jQuery Validations In A Script File

jQuery 1.10.2 This is pretty straightforward really. I want to keep all my validations in a seperate file and call them to act on a specific form after the page has fully loaded. I keep forgetting the syntax, so this is as much for me in future as for you! 123456789101112131415(function($){     var validateInputForm […]