Drupal 8 Comment module - How to configure comments module from ugly to beautiful - Theming comments module
Introduction Drupal provides a powerful comment module, which comes as a part of…
March 10, 2018
You have drupal 7 image from docker hub, and want to connect tomongo db via php code.
The Dockerfile for this is:
FROM drupal:7.57-apache
RUN apt-get update; \
apt-get install openssl libssl-dev libcurl4-openssl-dev -y; \
pecl install mongodb; \
echo "extension=mongodb.so" > /usr/local/etc/php/conf.d/mongodb.ini \
You can mount volume, if you want.
Enjoy!
Introduction Drupal provides a powerful comment module, which comes as a part of…
Introduction In this post, we will see Python 3.7.9 patch for FIPS enabled…
Introduction I have an automation script, that I want to run on different…
Lets implement a command shell by using a command dispatcher. The objective is…
Suppose you have two lists, and you want Union and Intersection of those two…
Thanks for reading.
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…