By nuwantha, 29 April, 2018 Setup PPTP VPN Server on Debian/Ubuntu Linux Tags Server Linux Setup PPTP Server First we need to install pptp server using apt-get # sudo apt-get install pptpd Then we need to configure the pptpd. # sudo nano /etc/pptpd.conf
By editor, 26 April, 2018 Install Solr 7 - Solr Search API Tags Linux Server Drupal 8 1. Install java Install Java 8 on Ubuntu sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer Verify Java Inatallation sudo apt-get install oracle-java8-set-default java -version
By editor, 4 April, 2018 Remove - Uninstall a deleted module from drupal registry Tags Drupal 8 Drush Module When you remove a module manually or re import a database, some times you have a message like "The following module is missing from the file system...". this is due to deleted modules.
By editor, 28 March, 2018 Increment or Decrement number of Fields Dynamically using Form API and Ajax Tags Drupal 8 Code Form JavaScript In this example, we will use a field to get tags list, the number of tags dynamic.
By editor, 26 March, 2018 Taxonomy form autocomplete, Create taxonomy term field with FAPI Tags Drupal 8 Code Taxonomy Form Simple taxonomy autocomplete field. Example:$form['tagtest'] = [ Â '#type' => 'entity_autocomplete', Â '#target_type' => 'taxonomy_term', Â '#title' => 'Taxonomy Term', ];