LAMP on Linux 22.04
English · Français
December 30, 2024
Antre du Tryphon
Search

LAMP on Linux 22.04

December 30, 2024 · claude Ubuntu Linux Debian MySQL PHP apache Database
This post contains notes to install Apache2, MySQL and PHP on a Ubuntu Server 22.04. This is not a tutorial but a checklist.

How to protect an Apache Website with a password

December 29, 2024 · claude Ubuntu Linux Debian apache
This blog post assumes that Apache is already installed.

Make an Apache2 SSL server more secure

June 3, 2015 · claude Unix Ubuntu Linux Debian apache
These easy steps will improve significantly the security of your Apache2 SSL server. Edit your /etc/apache2/mods-enabled/ssl.conf file and replace the SSLProtocol, SSLCipherSuite and SSLHonorCipherOrder parameters with the following values....

Installing memcached to use it with php

Installing Memcached with php support in Ubuntu is a matter of a few steps: sudo apt-get install memcached php5-memcached sudo service apache2 restart You can test if memcached is active by running this command: echo "stats settings" | nc localhost...

preinst: line 118: a2query: command not found

May 4, 2014 · claude Ubuntu apache Ubuntu 14.04
If you are getting the following errors while trying to install Apache on Trusty (Ubuntu 14.04), execute the commands below and try to re-install it. Preparing to unpack .../apache2_2.4.7-1ubuntu4_amd64.deb ... /var/lib/dpkg/tmp.ci/preinst: line 118:...

How to change the maximum upload file size in PHP

April 28, 2014 · claude PHP apache
You can increase the maximum upload file size for only one application by creating a php.ini file in the directory where the file upload PHP script is. Add the following lines: ; Maximum allowed size for uploaded files. upload_max_filesize = 40M ;...