How to create a slideshow in Drupal 7

To create a slideshow in Drupal 7 Create a Slideshow content Log into Drupal as administrator In the top menu select Content and Add content On the Add Content page select Slideshow On the Create Slideshow page enter the title of the page, and populate the fields for the images. Click the Choose File to upload the …

How to install a Drupal module

To install a Drupal module Download the Drupal module from the www.drupal.org website, Unzip the module, With an FTP client upload the module directory to sites/all/modules/contrib Log into the Drupal site as administrator, In the menu select Modules, Click the switch next to the module name to turn it ON. The orange switch label reminds you to …

How to create a Docker repository in Artifactory

Artifactory supports multiple repository types, Docker is one of them. To create a new Docker repository in Artifactory Set the Custom Base URL of the Artifactory server From the Artifactory documentation at https://www.jfrog.com/confluence/display/RTF/Configuring+NGINX “When using an HTTP proxy, the links produced by Artifactory, as well as certain redirects contain the wrong port and use the http instead …

How to transfer an Atlassian Confluence wiki space to another server

Confluence is one of the most popular Wikis with a great user interface. To export and transfer an Atlassian Confluence wiki to another server Log into the Atlassian Confluence wiki as an administrator, In the lower left corner click the gear icon and select Content Tools, On the Export tab select the XML radio button …

Atom text editor configuration

Configure Atom Turn off auto-indent on paste to stop Atom reformatting your code. In the Atom menu select Preferences On the left side select Editor Uncheck Auto Indent On Paste Check Show Indent Guide Set Tab Type to soft to place 2 spaces when you press the tab key Atom language packs Atom language packs help you with code completion. Install language packs In the Atom …

Deploy a WAR file of a Java web application on the Apache Tomcat web server

There are two ways to deploy a WAR file of a Java web application on the Apache Tomcat web server Using the command line Copy the WAR file into the webapps folder of the Tomcat installation directory, Make sure the CATALINA_HOME environment variable points to the Tomcat directory (not the bin subdirectry) Open a Terminal window or …

Create a WAR file for a Java web application in NetBeans

Configure the web application Add the web.xml file The wb.xml file contains the web application configuration values for the webserver. I has to be in the WEB-INF directory of the web applicaion. To add the web.xml file to your NetBeans Java web application Right-click the Netbeans project, and select New -> Other… In the New File window select …

Tomcat web server configuration

When you install the Apache Tomcat web server there are some configuration settings you need to make to be able to administer and use it. Administrator user accounts When you install the Apache Tomcat web server there is no admin user account specified, so nobody can log into the admin web user interface. To add …

Enable PowerShell execution in Windows

The default settings of Windows disable the PowerShell script execution. This protects your computer in case a malicious PowerShell script would try to make changes on your machine. The same settings prevent you from executing your own automation scripts too. When we try to execute a PowerShell script we get the error message File ….ps1 …

The specified Security Group and Parameter Group are not set in the RDS instance

If the Terraform apply execution times out during the RDS instance creation, the specified Security Group and Parameter Group is not set in the RDS instance. The solution is to set the timeout in the aws_db_instance resource. When a multi-az RDS instance is launched from a snapshot, the process can take more than 55 minutes. The default …