Terima Kasih
Telah Berkunjung, Semoga Website ini bermanfaat
installing-php-5-6-on-xenial-16-04
$ sudo apt-get install python-software-properties $ sudo add-apt-repository ppa:ondrej/php $ sudo apt-get update $ sudo apt-get install -y php5.6 Check your PHP Version php -v source : https://askubuntu.com/questions/756181/installing-php-5-6-on-xenial-16-04
Install Php7-FPM fast-cgi Ubuntu 17
Berikut cara menginstall php7-fpm mpm-event Ubuntu 17 Update source list ubuntu deb http://mirrors.digitalocean.com/ubuntu trusty main multiverse deb http://mirrors.digitalocean.com/ubuntu trusty-updates main multiverse deb http://security.ubuntu.com/ubuntu trusty-security main multiverse apt-get update apt-get install php-fpm php-cli php-common php-mbstring php-gd php-intl php-xml php-mysql php-mcrypt php-zip apt-get install libapache2-mod-fastcgi a2dismod mpm_prefork a2dismod php7.1 a2dismod mpm_prefork a2enmod…
How to Install ClamAV on CentOS 7
Introduction ClamAV is free and open-source antivirus software, which can be used on multiple platforms. In this tutorial, we will overview ClamAV installation on CentOS 7. Table of Contents What you’ll need Step 1 — Installing ClamAV on CentOS 7 Step 2 — Configuring SELinux Step 3 — Configuring ClamAV Conclusion What…
How to install SuPHP on CentOS 7.2
You shall have a server that has CentOS 7.2 or later installed, I will use this tutorial as basis for my setup. In the first chapter, I will install the Apache web server. If you have apache already installed, then start with chapter 2 right away. My server will use the hostname…
Install Linux Malware Detect (LMD) v1.5 on Linux
Malware is malicious software which is specifically designed to damage a computer system by gather sensitive information, or gain access to private computer systems. Generally, software package is considered as malware based on the activity/intent of the actual features. On real world most of the malware is generated through advertising…
How to Install the PHP Suhosin Extension
Installing Suhosin on PHP 7.2 This extension does not yet support PHP 7.2. Installing Suhosin on PHP 7.0 or 7.1 Suhosin for PHP 7 is currently in development. As of August 2016, Suhosin for PHP 7 is not compiling correctly due to a known bug. Once the bug in Suhosin for…
Linux – PHP 7.0 and MSSQL (Microsoft SQL) Ask
Install php7.1 sybase Ubuntu sudo su curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - curl https://packages.microsoft.com/config/ubuntu/16.04/prod.list > /etc/apt/sources.list.d/mssql-release.list exit sudo apt-get update sudo ACCEPT_EULA=Y apt-get install -y msodbcsql mssql-tools unixodbc-dev sudo pecl install sqlsrv sudo pecl install pdo_sqlsrv echo "extension=sqlsrv" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"` echo…
Install MySQL Server 5.7 On Ubuntu 17.04 Zesty Zapus
To install MySQL Server on Ubuntu, make your way to a Terminal window or a command prompt, and type this command: sudo apt-get install mysql-server-5.7 (As of this writing, MySQL Server version 5.7 is the latest version available in the Ubuntu repositories, though future versions of Ubuntu may receive the…
Cara install phpMyAdmin di Centos 7 Nginx PHP 7.x
Package PHP7 di Centos Ada beberapa penyedia package di centos untuk PHP7. Kenapa PHP7 sampai saat ini (Agustus 2017) belum juga masuk kedalam repo resmi? Mungkin saja masih ada beberapa kecenderungan bugs yang memang belum diketahui untuk para pemilik repo masing-masing. Sejauh ini paket PHP7 untuk Centos sendiri ada 2 yang paling…
How To Enable SFTP Without Shell Access on Ubuntu 16.04
First, create a new user who will be granted only file transfer access to the server. Here, we're using the username sammyfiles, but you can use any username you like. sudo adduser sammyfiles You'll be prompted to create a password for the account, followed by some information about the user. The…
How to Install, Configure and Secure FTP Server in CentOS 7
FTP (File Transfer Protocol) is a traditional and widely used standard tool for transferring files between a server and clients over a network, especially where no authentication is necessary (permits anonymous users to connect to a server). We must understand that FTP is unsecure by default, because it transmits user credentials and data…
How To Install and Configure Naxsi Firewall on Ubuntu Linux
Synopsis Naxsi also known as Nginx Anti XSS & SQL Injection is an open-source web application firewall module for Nginx web server and reverse-proxy. Naxsi is used to protect Nginx web server against attacks like SQL Injections, Cross Site Scripting, Cross Site Request Forgery, Local & Remote file inclusions. Naxsi…