There are some default good practice when installing/configure a server and I think is good to follow them and improve where is possible. I tend to use [ apt ] instead of [ apt-get ] as they are almost the same: apt is designed for end-users (human) and its output may be changed between versions > Means the output is…
Set Environment Variable [Developer or Production Mode] (M2)
First, will be a good idea to check the current MODE:
1 2 3 |
php bin/magento deploy:mode:show |
The main idea is to have this (environment) variable MAGE_MODE set to one of this values: Default Developer Production To change the MODE in Magento for the moment there are 3 ways: From CLI (you'll be 100% sure it changed)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# we are using the Magento deploy in order to change the mode # there are 3 possible values: # * default # * developer # * production # # BUT there is a CATCH: once you changed # the DEFAULT mode you can NOT go back to it # make it into Developer mode php bin/magento deploy:mode:set developer # for Production mode php bin/magento deploy:mode:set production |
Using the .htaccess file:
1 2 3 4 5 |
# add the following line in the main .htaccess file SetEnv MAGE_MODE developer |
Through your WEB…