
Setup drupal 11 CMS Prerequisite Php 8.3 Apache Mysql 8 Create a Drupal CMS site cd /var/www composer create-project drupal/cms drupal11-cms-site-template As the above composer commands completes you should see as follow. Create a new database with user name & pass mysql >CREATE DATABASE drupal11cms; mysql > CREATE USER ‘drupal11cms’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘drupal11cms’;…

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 CentOS 9/8 sudo dnf install awscli aws…

Docker-php5.6 setup on ubuntu Ref: 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: – ./html:/var/www/html restart: always db: image: mysql:5.6 container_name:…

Drupal11 create Subtheme using 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 & files from bootstrap_subtheme to yourname: /web/themes/custom/bootstrap_subtheme directory to /web/themes/custom/yourname bootstrap_subtheme.theme to yourname.theme —- (missing in drupal 11…

Advance Custom Fields (ACF) In WordPress 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 allows developers and content editors to add custom fields to posts How to add Advanced Custom Fields…

Custom Fields In WordPress 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 post, page, or custom post type. It is additional data stored…