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.

SYSTEM WARNING: session_start()...No such file or directory.

February 18, 2015 · claude PHP Mantis
When installing Mantis in a shared hosting environment, you may get an error message like this one on the Mantis login panel: > SYSTEM WARNING: session\_start() [function.session-start]: open(/var/php\_sessions/sess\_ac5acafaecb612345675d30123456789,...

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

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

WordPress "Internal server error"

June 26, 2013 · claude WordPress PHP
You may experience an "Internal server error" on the home page of your site if you are a customer of iPower. You cannot access the home page nor login to WordPress. Simply edit the php.ini files located in the root directory of WordPress and in the...