By editor, 29 June, 2016 Use multiple / external databases in Drupal 8 Tags Drupal 8 Code Database The database settings (and connection) has 3 levels. 1. KEY 2. TARGET 3. DATA Example: $databases[KEY][TARGET] = array ( DATA ); Like:
By editor, 28 June, 2016 Access control with Apache .htaccess Tags Server Linux 1. Access control by IP : (Example) order deny,allow deny from all allow from [YOUR_IP_ADDRESS]
By editor, 27 June, 2016 MySQL Recover / Change root Password Tags Server Shell Database 1. Stop the MySQL service of started sudo /etc/init.d/mysql stop #On Debian based linux systems (Ubuntu, Mint ...) sudo /etc/init.d/mysqld stop #On Red Hat Enterprise based Linux systems (CentOS, Fedora, Suse ...)
By editor, 21 June, 2016 SASS SCSS LESS compile Tags CSS Code Settings Theming Compilers 1. COMPASS Compass is a powerfull command line compiler Install (Linux debian) : sudo apt-get install ruby-compass Link : http://compass-style.org/help/documentation/command-line/ 2. Koala
By editor, 20 June, 2016 CSS Word Wrapping and Text Overflow Propertys Tags Theming CSS Word Wrap ( word-wrap ) Available values of word-wrap property: normal, break-word, initial, inherit Example : Disable HTML word wrapping using CSS .your-class{white-space:nowrap;}