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;
By editor, 14 November, 2015 Create a simple module for Drupal 8 - Step 2 - Create Simple Page Tags Drupal 8 Module 1. Create a info.yml file Here : test.info.yml name: 'Test Module' description: 'Test module for Drupal8.ovh' type: module core: 8.x varsion: 0.1-dev package: Test
By editor, 14 November, 2015 Create a user account programmatically in Drupal 8 Tags Drupal 8 Code User Here an example for create a user account programmatically in Drupal 8 $language = \Drupal::languageManager()->getCurrentLanguage()->getId(); $user = \Drupal\user\Entity\User::create();