Parametric NEMA 17 Motor Storage Box with Cover
English Français
September 7, 2026
Antre du Tryphon
Search

Apache

6 posts · Show all posts

LAMP on Linux 22.04

LAMP on Linux 22.04

December 30, 2024 · claude Ubuntu Linux Debian +4
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

How to protect an Apache Website with a password

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

Make an Apache2 SSL server more secure

Make an Apache2 SSL server more secure

June 3, 2015 · claude Unix Ubuntu Linux +2
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 to use it with php

February 13, 2015 · claude Ubuntu 11.10 Unix Ubuntu 11.04 +6
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

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

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 ;...