https://www.mageplaza.com/magento-2-module-development/magento-2-how-to-add-command-line-console-cli.html In this article, we will find how to add a command line into magento 2 console CLI. Magento 2 use a command line interface to quick change some features like enable/disable cache, setup sample data… Before we start,...
Day: July 22, 2016
Running cron jobs in Magento 2
https://www.atwix.com/magento-2/setting-up-cron-jobs/ http://inchoo.net/magento-2/running-cron-jobs-in-magento-2/
Magento 2 get Core_config_data
core_config_data table config_id: 65 scope: default scope_id: 0 path: Mentel_convertprice_section/convertprice_general/convertprice_active value: 1 First you need to include the \Magento\Framework\App\Config\ScopeConfigInterface $ class in your constructor: protected $_scopeConfig; public function __construct( ... \Magento\Framework\App\Config\ScopeConfigInterface $ScopeConfigInterface, ... )...
Using vagrant to run virtual machines with desktop environment
I just got this working with basically three steps. The advice from askubuntu.com didn't quite work for me, so try this simplified version: Get a basic Ubuntu image working. You should be able to boot it and vagrant ssh. Next,...