The ionCube loader is the library used to load ionCube encoded files on the server. It is required to installed on the webserver to decode any ionCube encoded files before running. The ionCube provides a feature to encrypt your PHP script to keep them secure. It also keeps them secure from unauthorized uses. This tutorial will help you to configure the ionCube loader with PHP on CentOS 8. How to Install Ioncube Loader in WHM/cPanel Prerequsities Shell access to the CentOS 8 system with sudo privileges account. Complete initial server setup for newly installed systems. Install PHP and Apache on…
Author: Rahul
Magento is the best enterprise-class eCommerce software and solution. It is powered by open, flexible, and next-gen architecture. The application developed with Magento will provide the best and engaging shopping experience for users. Its performance is best than other eCommerce applications available. The Magento 2 is the latest release available. This version has a number of improvement changes and optimizations over the previous Magento version. This tutorial will help you to configure the Magento application on your Fedora system. Step 1 – Install LAMP First of all, you need to set up a LAMP environment on the Fedora system. You…
Gradle is an open-source build tool for the automation of applications. The Gradle helps developers team to build, automate and deliver software easier and faster. This is the step by step tutorial to install and configure Gradle on Debian 10 Buster Linux system. You may like: How to Install Apache Maven on Debian 10 Step 1 – Install Java Java JDK 8 or JRE 8 or higher version is required to run Gradle build tool. Make sure you have proper java version installed on your Debian 10 system. To install Java run the following command: sudo apt install openjdk-11-jdk Verify…
Angular is a versatile open-source web application framework developed by Google, used for building efficient and scalable single-page applications. This tutorial will guide you through setting up Angular on a Fedora system. Before we begin, it’s important to note that Angular requires Node.js and npm (Node Package Manager) to be installed on your system. We’ll also cover these installations. Step 1: Update Your System Firstly, ensure your Fedora system is up to date by running the following commands: sudo dnf update Step 2: Install Node.js and npm Node.js is a JavaScript runtime that is required for Angular to function. npm…
This tutorial will help you to automate the Magento2 codebase and database backup process using a shell script. The script will perform automatic backups on a scheduled interval. The script also has the ability to remove older backups as per configuration. Setup Magerun2 You need to download and configure the Magerun2 script on your system. wget https://files.magerun.net/n98-magerun2.phar mv n98-magerun2.phar /usr/local/bin/n98-magerun2 chmod +x /usr/local/bin/n98-magerun2 Download Shell Script You can download Magento2 backup script from here. Alternativly, use below command to download script using wget command. wget https://tecadmin.net/wp-content/downloads/scripts/magento2-backup.sh You can also copy the script below and paste it in a file on…
Redis is an in-memory data structure store. It is used as database store, cache server. You can also use redis as message broker to configure Publish/Subscribe (PUB/SUB) messaging system. Redis is capable to store Strings, Hashes, Lists, Sets, sorted sets, HyperLogLogs, bitmaps, streams, and spatial indexes etc. It also provides a PHP module for communication between PHP script with the Redis server. Redis is written in C programming language. This tutorial will help to install the Redis cache server along with PHP Redis extensions on a CentOS 8 Linux machine. Prerequisites CentOS 8 Linux system with shell access Newly installed…
Internet Information Service (IIS) is the popular web server developed by Microsoft Corporation. It runs on Windows servers and serve websites to users. The PowerShell is the configuration and management application for the Microsoft systems. In this tutorial you will learn how to enable (start) or disable (stop) all sites in single command with PowerShell. Useful links: How to create website in IIS using command line How To Redirect HTTP to HTTPS in IIS Launch PowerShell Type PowerShell in application search option. Then right click on PowerShell application and select “Run as administrator”. This will provide you administrative privileges to…
ownCloud is a software application provide self hosted file hosting services. You can install owncloud application on your server and use it as your own file server. Where you can easily upload/sync files from the client machine. It also provides options to sync and share across devices—all under your control. This tutorial will help you to set up your own file hosting server with the ownCloud on Debian 10 Buster Linux system. Prerequsites Shell access to Debian 10 Linux system Sudo privilege account access Step 1 – Install LAMP The first of all, to set up ownCloud you must have…
Magento is the best eCommerce software and solution for online services. Magento 2 is the latest version Recently the Magento team has released its new version Magento 2.0 with lots of improvements changes and optimizations over Magento 1. This tutorial will help you to install the Magento2 application on Ubuntu 18.04 system. Recommended: Magento2 codebase and database backup automation script Step 1 – Install LAMP You can use the following commands to install all requirements from default repositories. sudo apt update sudo apt install apache2 wget unzip Then install PHP and other required PHP modules. sudo apt install php libapache2-mod-php…
The Mono project is sponsored by the Microsoft. Mono is a software platform designed to allow developers to easily create cross platform applications. Mono supports most the modern operating systems with 32-bit and 64-bit architecture. This tutorial will help you to install Mono on CentOS 8 Linux systems. Useful tutorial: How to Install Visual Studio Code on CentOS 8 Prerequisites Login to the CentOS 8 system with sudo privileged account. Install Mono on CentOS 8 First of all, install some required packages and import GPG key to your system. rpmkeys –import “http://pool.sks-keyservers.net/pks/lookup?op=get&search=0x3fa7e0328081bff6a14da29aa6a19b38d3d831ef” You need to add yumrepository provide by the…