TO THE NEW Blog PAGES

Adobe

Resolving Adobe’s Cloud Manager Deployment Issue with Java Version Compatibility

Adobe’s Cloud Manager is a popular platform that provides continuous delivery capabilities for code deployments into Adobe Cloud service. However, we encountered a sudden pipeline failure during a recent deployment due to a Java version compatibility issue. In this blog post, we’ll share our experience in diagnosing and resolving this problem, ensuring a smooth deployment. […]

Drupal

How to update Drupal core with composer

It’s good practice to update the Drupal core and contribute modules to the latest released version. Let’s dive into how to update the Drupal core. There are multiple ways to update the core, but here we are discussing with the composer only. Composer is also the recommended way to manage the dependency of Drupal. First, […]

Drupal

Custom Drush Command to import all .po files

The main purpose of this blog is to create a custom command to import all .po files. In one step  Portable Object (.po) file is used for localization and content translation. Let’s start the creation of a custom drush command to import .po files: Step 1.  Create Module Create a .info.yml file name: Custom Drush […]

DevOps

ISTIO as a cluster IP in Google kuberentes Engine

By default, when running services on Google Kubernetes Engine (GKE), the preferred method for exposing these services to external traffic is using Ingress. Ingress provides a centralized entry point to the cluster and allows for the routing of external traffic to different services based on defined rules. However, as the number of services and complexity […]

AWSCloudCloud Managed Services

Boosting ECS Task Monitoring with CloudWatch Input Transformer

Introduction In the fast-paced world of application delivery, ensuring the health and reliability of our ECS tasks is crucial. Without a reliable alerting mechanism, there’s a risk of overlooking critical task failures that can have a bad impact on our production environment. Just imagine a situation where application tasks fail silently, resource constraints go unnoticed, […]

Drupal

Migrating Users & roles from Drupal 7 to Drupal 10

This blog will target the migration of users & roles from the Drupal 7 website to the Drupal 10 website. Why should you migrate from Drupal 7 to Drupal 10? November 2023 will be the end of life for Drupal 7. With the release of Drupal 10, it is essential to migrate the website from […]

Marketing Automation

Transforming Marketing Strategies Through Adobe’s Real-Time CDP

Customer Data Platforms made easy –  According to a report by Cdp Institute forecasts, the revenue of the customer data platform industry is at $2 billion for 2022, up 25 percent over 2021 which means that the exponential growth of the use cases of Customer data platform have done some wonders for the marketers.  What […]

AdobeJava/JVMReact.js

Building Custom Components in AEM SPA Editor with ReactJS: A Step-by-Step Guide

Introduction Adobe Experience Manager (AEM) is a comprehensive content management solution for building websites, mobile apps, and forms. It makes it easy to manage your marketing content and assets. One of the powerful features of AEM is the Single Page Application (SPA) Editor, which allows developers to create more fluid and responsive user experiences. In […]

Drupal

Batch Processing To Update Nodes In Drupal And Download Updated Nods In CSV Format

What is Batch Processing: In Drupal, batch processing is a mechanism that allows you to execute time-consuming operations in smaller, manageable chunks. It helps prevent PHP timeouts and allows long-running processes to be executed successfully. Batch processing is commonly used for tasks such as data migration, large-scale updates, or any operation involving a significant amount […]

Drupal

Creating forms with the help of Webform module in Drupal

Webform module is drupal’s fastest-used module whose ultimate purpose is to create forms easily. It also provides a few outstanding features of sending emails to users, multi-step forms, etc and these forms can be easily migrated from Drupal 7 to Drupal 9 using the webform: migrate module. Installation and working of Webform Module:- Install the […]

iOS

Modularise your app with Swift Package Manager (SPM)

Introduction SPM – Swift Package Manager is a tool for managing the distribution of Reusable Swift code. With the term ‘Distribution’ there comes a question of how to distribute. The answer is Package. It’s nothing new as we are already using some third-party, open-source code or writing our reusable, distributable code with the help of […]

AngularJS

Angular CLI: A Comprehensive Guide

In this blog post, we will take a comprehensive look at Angular CLI. We will cover the following topics: What is Angular CLI? How to install Angular CLI Using Angular CLI to create an Angular application Testing Angular applications with Angular CLI Deploying Angular applications with Angular CLI What is Angular CLI? The Angular CLI […]

Services