Create a group called foo and add user tom to a secondary group called foo: $ sudo groupadd foo $ sudo useradd -G foo tom OR # groupadd foo # useradd -G foo tom Verify new settings: id tom groups...
Author: wang
Introduction to Magento 2 modes
Display the current mode Command usage: magento deploy:mode:show A message similar to the following displays: Current application mode: developer. Change modes Command usage: magento deploy:mode:set {mode} where {mode} is required; it can be either developer or production --skip-compilation is an...
Move WP to Subdirectroy
Also in wp-config.php, make sure to set your WP_HOME and WP_SITEURL variables to the correct URL (subdirectory) you are using It should look like this: $host = 'http://' . $_SERVER . '/blog/'; define('WP_HOME',$host); define('WP_SITEURL',$host);
git ignore already tracking file
1 add file path in .gitignore file 2 in console -> git update-index --assume-unchanged app/etc/local.xml 3 you will found in souce tree have not this file exit
MAMP import big size DB BY CLI
Export / Import Large Database from MAMP using Terminal January 29, 2010 | Posted in Utilities, Website | 30 Comments. MAMP is a great tool for running servers locally, however, when you must export that site you have been developing...
cronjob not working problem
My client Magento not working for cronjob from someday, all configuration is good , excuter cron job in liunx cli is good but AOE sechule not found cronjob is working .after long time checki , I found one issus article...
Magento notification system
Utilizing Magento notification system Building your own Magento modules (extensions) can be a tedious task. We always strive to develop everything ‘the Magento way’, which is why we frequently dig into the core to see how Magento’s Core team does...
google adwords
ppt : http://fr.slideshare.net/SushenJamwal/google-adwords-ppt-by-sushen-jamwal 1. Ads at the top of a page generally have the following qualities: High relevance: The ad text and landing page are relevant to a person seeing your ad. Good performance over time: The ad consistently generates...
The Magento Config: Loading System Variables
The Magento Config: Loading System Variables This article is part of a longer series exploring the Magento global configuration object. While this article contains useful stand-alone information, you’ll want to read part 1 and part 2 of the series to...