
AWS CLI Installation & Configuration AWS CLI Installation & Configuration Installation:- To play with AWS with command line, you need to install aws cli on your machine so following are the steps/commands to install on linux (ubuntu) Installing AWS CLI at Ubuntu:- sudo apt-get update sudo apt-get install awscli Installing AWS CLI at…

Docker-php5.6 setup on ubuntu Docker – php5.6 setup on ubuntu: https://hub.docker.com/r/gotechnies/php-5.6-alpine $: mkdir php56-lamp $: cd php56-lamp $: touch docker-compose.yml (copy the file content from url https://hub.docker.com/r/gotechnies/php-5.6-alpine ) OR copy paste following lines version: “2.0” services: web: container_name: php5.6 image: gotechnies/php-5.6-alpine ports: – “80:80” – “443:443” links: – db – phpmyadmin volumes: –…

Drupal11 create Subtheme using Bootstrap Very precise explanation about adding Advance Custom Fields (ACF) in wordpress Create a Subtheme of Bootstrap:- First need to download bootstrap theme to drupal with following command composer require ‘drupal/bootstrap:^5.0’ Create a new directory “custom” in /web/themes. Then copy “bootstrap_subtheme” from /web/themes/contrib/bootstrap/subthemes/bootstrap_subtheme to /web/themes/custom Rename the following directory…

Advance Custom Fields (ACF) In WordPress Very precise explanation about adding Advance Custom Fields (ACF) in wordpress Table of content:- Table of content:- What is Advanced Custom Fields (ACF) in WordPress How to add Advanced Custom Fields (ACF) What is Advanced Custom Fields (ACF) in WordPress:-Advanced Custom Fields (ACF) is a popular WordPress plugin that…

Custom Fields In WordPress Very precise explanation about adding custom field in wordpress Table of content:- What is meta or custom field in WordPressHow to add meta or custom fields What is meta or custom field in WordPress:-In WordPress, a meta field (also called post meta or custom field) is extra information attached to a…