From 8d86d9676b8e1879c1e66a01cfa86710d7805034 Mon Sep 17 00:00:00 2001 From: Ricard Torres Date: Tue, 14 Jan 2025 14:32:23 +0100 Subject: [PATCH] Updates minimum PHP version According to composer.json version PHP should be at least 8.2 --- running-pixelfed/prerequisites.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/running-pixelfed/prerequisites.md b/running-pixelfed/prerequisites.md index 5fb7388..6e73a36 100644 --- a/running-pixelfed/prerequisites.md +++ b/running-pixelfed/prerequisites.md @@ -34,7 +34,7 @@ This doesn't necessarily mean you need a VPS. Some shared hosts give you SSH acc ## PHP-FPM -You can check your currently installed version of PHP-FPM by running `php-fpm -v`. Make sure you are running **PHP >= 8.1**. +You can check your currently installed version of PHP-FPM by running `php-fpm -v`. Make sure you are running **PHP >= 8.2**. You can check your currently loaded extensions by running `php-fpm -m`. Modules are usually enabled by editing your PHP configuration file and uncommenting the appropriate lines under the "Dynamic extensions" section. Make sure the following extensions are installed and loaded: @@ -171,7 +171,7 @@ Edit `redis.conf` and edit the following lines: ``` port 6379 # change this to "port 0" to disable network packets -unixsocket /run/redis/redis.sock # +unixsocket /run/redis/redis.sock # unixsocketperm 770 # give permission to "redis" user and group ```