Magento 2 New CMS Pages Not Loading

Anytime I add a new CMS page from the admin dashboard, it Magento generates a no-route 404 page not found error. After days of meticulous troubleshooting across multiple installs and versions of Magento 2.x.x, I’ve discovered a one way to … Continued

Install Magento PHP7.0 Extensions

Here’s a list off all the Magento 2 extensions required for running PHP7.0 on Ubuntu / Debian (not including mysql or php7). sudo apt-get install php7.0-curl php7.0-gd php7.0-intl php7.0-mcrypt php7.0-soap php7.0-xml php7.0-zip php7.0-json php7.0-xsl php7.0-ImageMagick php7.0-mbstring openssl Assumptions: PHP 7.0 … Continued

Changing Old WordPress permalink structure on Nginx

How to change WordPress permalink structure from /%year%/%monthnum%/%day%/%postname%/ to /%postname%/ with Nginx. rewrite “^/[0-9]{4}/[0-9]{2}/[0-9]{2}/([a-z0-9\-/]+)” http://www.example.com.com/$1; This would be included in your sites-available conf or which ever conf files handling this. My approach is to maintain a conf file strictly for … Continued

Remote MySQL Connection on Ubuntu

Enable Remote Connection Edit /etc/mysql/my.cnf Basic Editing Options: 1. Less secure, most accessible: Comment out bind-address 2. More secure, less accessible: change bind to your server’s IP address Save and exit. $ sudo service mysql restart Grant Access to your … Continued

Magento 2 CLI Install Ubuntu 14.04

Stuck on the first steps of the CLI install for your Magento 2 project?   This is the terrible documentation provided by Magento. http://devdocs.magento.com/guides/v2.0/install-gde/install/cli/install-cli.html   Here’s how you quickly setup Magento CLI so you can use the command magento instead of … Continued