By editor, 16 November, 2015 Helpful git commands Tags Git Code #Download / Get git repositorygit clone http://url-of-your-git/project.git #Show remore urlgit remote -v
By editor, 16 November, 2015 Add "Comment" Field Tags Drupal 8 Settings Comments are set as a field, so by default it is not present. To add comment field Goto: Admin -> Structure -> Content types ->"YOUR CONTENT"  ->Manage fields->Add field  ->Select 'Comments' on 'Re-use an existing field' and Save.
By editor, 16 November, 2015 Install Drupal 8 with Virtualmin - Error 500 Tags Drupal 8 Server Error Reson 1 : FollowSymLinks By default, virtualmin does not support Options +FollowSymLinks (on .htaccess). Solution 1 : Recommended
By editor, 16 November, 2015 Linux Shell - Process bulk Images Tags Linux Shell Images Inlinux debian / ubuntu / mint ... 1. Install imagemagick tools (if not installed)# sudo apt-get install imagemagick 2. Process images like : (here resize images to 50%)$ for i in $( ls *.jpg); do convert -resize 50% $i re_$i; done
By editor, 15 November, 2015 Create a simple module for Drupal 8 - Step 3 - Create Dynamic Page/ Block Tags Drupal 8 Module Cache In addition to the Step 2, Just add   $form['#cache']['disabled'] = TRUE;    $form['#cache']['max_age'] = 0; Â