How to remove ESlLnt on Sage WordPress Theme

You need to disable eslint in the /theme-name/resources/assets/build/webpack.base.conf.js. Here’s what you file probably looks like. *This file is from a Sage 9 alpha version, so your’s might be different. Welcome to the open-source life lol. ‘use strict’; // eslint-disable-line const … 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 1.9 .gitignore Example

A boilerplate starting point for creating a .gitignore file on your Magento CE Version ~1.9 project. .htaccess.sample .modgit/ .modman/ app/code/community/Phoenix/ app/code/community/Cm/ app/code/core/ app/design/adminhtml/default/default/ app/design/frontend/base/ app/design/frontend/rwd/ app/design/frontend/default/blank/ app/design/frontend/default/default/ app/design/frontend/default/iphone/ app/design/frontend/default/modern/ app/design/frontend/enterprise/default app/design/install/ app/etc/modules/Enterprise_* app/etc/modules/Mage_All.xml app/etc/modules/Mage_Api.xml app/etc/modules/Mage_Api2.xml app/etc/modules/Mage_Authorizenet.xml app/etc/modules/Mage_Bundle.xml app/etc/modules/Mage_Captcha.xml app/etc/modules/Mage_Centinel.xml app/etc/modules/Mage_Compiler.xml … Continued