Getting all the right tools to work together is no easy task. Even harder to get them to work automatically. Pressing refresh for every one of your changes, be it for CSS or a blog edit, is also a hassle.…
I recently ran into an issue where I needed to access a server remotely via ssh terminal command. I was surprised to find out that the syntax I have always used to perform such a task was not working. The…
To say that eCommerce has grown tremendously over the past five years would be an understatement. Just as with the ever-evolving tech industry, the Internet has grown in leaps and bounds in recent years. It has become the desired medium…
What is a Directive? From time to time, in Magento, you may run across code snippets with two squiggly opening and closing brackets. What are those “squiggly bracketed” snippets of code officially called? They are called directives. These are very similar…
While working on a module to integrate Magento with Foxy Cart’s awesome checkout service, I came across the need to use Guzzle in my Magento module. Because I am building the initial version of this module using Magento 1.x, I…
Just add the following to the .htaccess file in the correct directory of the pages you would like to redirect. RewriteEngine On Redirect 301 /shop/oldFILE.html http://mywebsite.com/shop/new-subfolder-if-needed/newFILE.html Lather, Rinse, Wash, Repeat….as needed. -Will