Linux Tutorials on the topic “web server”
-
Install Apache2, PHP5 And MySQL Support On CentOS 6.5 (LAMP)
Author: Till Brehm • Tags: apache, centos, mysql, php, web server • Comments: 22
LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache2 webserver on a CentOS 6.4 server with PHP5 support (mod_php) and MySQL support.
-
How To Build PHP 5.6-beta3 (PHP-FPM & FastCGI) With ionCube Loader, Zend OPcache And APCu For ISPConfig 3 (Debian Wheezy)
Author: howtoforge • Tags: apache, php, debian, web server, nginx • Comments: 4
How To Build PHP 5.6-beta3 (PHP-FPM & FastCGI) With ionCube Loader, Zend OPcache And APCu For ISPConfig 3 (Debian Wheezy) Since ISPConfig 3.0.5, it is possible to use multiple PHP versions on one server and select the optimal PHP version for a website. This feature works with PHP-FPM (starting with PHP 5.3) and FastCGI (all PHP 5.x versions). This tutorial shows how to build PHP 5.5 as a PHP-FPM and a FastCGI version on a Debian Wheezy server. These PHP 5.6 builds include the ionCube Loader, Zend OPcache, and APCu.
-
How to Install Wordpress on CentOS
Author: howtoforge • Tags: linux, centos, web server • Comments: 10
How to Install Wordpress on CentOS Wordpress is a fairly popular free open source website and blogging tool that works by using PHP and MySQL. In this tutorial, we shall learn the process of installing Wordpress on CentOS
-
-
How To Install Nginx With PHP5 (And PHP-FPM) And MySQL Support On CentOS 6.5
Author: howtoforge • Tags: centos, linux, mysql, nginx, php, web server • Comments: 1
How To Install Nginx With PHP5 (And PHP-FPM) And MySQL Support On CentOS 6.5 Nginx(pronounced "engine x") is a free, open-source, high-performance HTTP server. Nginx is known for its stability, rich feature set, simple configuration, and low resource consumption. This tutorial shows how you can install Nginx on a CentOS 6.5 server with PHP5 support (through PHP-FPM) and MySQL support.
-
Using mount --bind To Move The Website And Email Directory Of a ISPConfig 3 Server To a New Directory
Author: till • Tags: linux, debian, fedora, suse, ubuntu, centos, email, ispconfig, web server • Comments: 19
Use mount --bind To Move The Website And Email Directory Of a ISPConfig 3 Server To a New Directory In the following guide, I will explain the procedure on how to move the email and website directory of a ISPConfig 3 installation to a new partition. This might become handy when your current partition runs out of space.
-
Installing Apache2 With PHP5 And MySQL Support On Ubuntu 14.04LTS (LAMP)
Author: Falko Timme • Tags: apache, linux, mysql, php, ubuntu, web server • Comments: 22
LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache2 webserver on anUbuntu 13.04 server with PHP5 support (mod_php) and MySQL support.
-
Install Ioncube Loader For All PHP Modes (CLI, CGI, FCGI And FPM) On Debian Wheezy
Author: Till Brehm • Tags: apache, cherokee, debian, lighttpd, linux, nginx, php, web server • Comments: 1
Install Ioncube Loader For All PHP Modes (CLI, CGI, FCGI And FPM) On Debian Wheezy In this tutorial I will explain the installation of Ioncube Loader on Debian Wheezy so that it can be used in all PHP Modes. If one of the php.ini files does not exist on your server, then this php mode is not installed and you can skip that php.ini file.
-
Installing Apache2 With PHP5 And MySQL Support On OpenSUSE 13.1 (LAMP)
Author: Srijan Kishore • Tags: apache, linux, mysql, php, suse, web server • Comments: 7
LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache2 webserver on an OpenSUSE 13.1 server with PHP5 support (mod_php) and MySQL support.
-
Running TYPO3 6.2 On Nginx (LEMP) On Debian Wheezy/Ubuntu 13.10
Author: Falko Timme • Tags: debian, nginx, php, ubuntu, web server • Comments: 1
Running TYPO3 6.2 On Nginx (LEMP) On Debian Wheezy/Ubuntu 13.10 This tutorial shows how you can install and run a TYPO3 (version 6.2) web site on a Debian Wheezy or Ubuntu 13.10 system that has nginx installed instead of Apache (LEMP = Linux + nginx (pronounced "engine x") + MySQL + PHP). nginx is a HTTP server that uses much less resources than Apache and delivers pages a lot of faster, especially static files.
-
Rounding numbers to special values in PHP - e. g. "nice prices"
Author: Croydon • Tags: php, web server • Comments: 0
Rounding numbers to special values in PHP - e. g. "nice prices" Sometimes you need to round numbers to special values. Maybe you have a shop and want to calculate your selling prices automatically, but you don't like prices like 12.52 USD. Here's a small PHP function that can be used in many different ways to solve this problem.