Linux Tutorials on the topic “php”
-
Installing Lighttpd With PHP5 (PHP-FPM) And MySQL Support On Ubuntu 14.04LTS
Author: Falko Timme • Tags: lighttpd, linux, mysql, php, ubuntu • Comments: 0
Installing Lighttpd With PHP5 (PHP-FPM) And MySQL Support On Ubuntu 14.04LTS Lighttpd is a secure, fast, standards-compliant web server designed for speed-critical environments. This tutorial shows how you can install Lighttpd on an Ubuntu 14.04 server with PHP5 support (through PHP-FPM) and MySQL support. PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size, especially busier sites. I use PHP-FPM in this tutorial instead of Lighttpd's spawn-fcgi.
-
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.
-
Installing Nginx With PHP5 (And PHP-FPM) And MySQL Support (LEMP) On Ubuntu 14.04 LTS
Author: Falko Timme • Tags: linux, mysql, nginx, php, ubuntu • Comments: 4
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 an Ubuntu 14.04 server with PHP5 support (through PHP-FPM) and MySQL support (LEMP = Linux + nginx (pronounced "engine x") + MySQL + PHP) .
-
-
Installing Apache2 With PHP5 And MySQL Support On Ubuntu 13.10 (LAMP)
Author: Srijan Kishore • Tags: apache, mysql, php, ubuntu • Comments: 2
Installing Apache2 With PHP5 And MySQL Support On Ubuntu 13.10 (LAMP) 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.
-
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.
-
Installing Apache2 With PHP5 And MySQL Support On Fedora 20 (LAMP)
Author: Srijan Kishore • Tags: apache, fedora, mysql, php • Comments: 3
Installing Apache2 With PHP5 And MySQL Support On Fedora 20 (LAMP) LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache2 webserver on a Fedora 20 server with PHP5 support (mod_php) and MySQL support.
-
PHP number_format() and a problem with negative values rounded to zero
Author: Croydon • Tags: php • Comments: 1
PHP number_format() and a problem with negative values rounded to Zero As is known, the PHP function number_format() rounds the given value to the needed amount of decimal places.
-
PHP session data is not deleted when using custom session management on debian (and ubuntu)
Author: Croydon • Tags: apache, php • Comments: 0
PHP session data is not deleted when using custom session management on debian (and ubuntu) On debian systems (as far as I know this applies to ubuntu, too) the garbage collector for PHP sessions is disabled by default. The corresponding setting in php.ini is session.gc_probability = 0 which enables the garbage collector when set to something greater than zero. The default value in PHP is 1, so the garbage collector is called with a probability of 1/100 at each PHP script call. On debian systems this setting is disabled because of the fact that the default path for session storage is not writable for the web server process (and it shouldn't be either). Deleting of outdates session files is done by a system cron job here.
-
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.
-
How To Find Outdated Wordpress Versions On Your Server To Reduce The Risk Of Being Hacked
Author: Croydon • Tags: linux, php, security • Comments: 9How To Find Outdated Wordpress Versions On Your Server To Reduce The Risk Of Being Hacked Today we want to tell you how to find outdated Wordpress installations on your server. This can be of high risk, especially for shared hosting servers. Being attacked on massively used open source software like Wordpress is only a matter of time, once security exploits get published.