Back to Recipes
LTKort
4 recipes shared
Install ImageMagick, Ghostscript & PHP Imagick extension (PHP 8.5)
Installs ImageMagick, Ghostscript, and the PHP Imagick extension for PHP 8.5. Enables the extension for both FPM and CLI, and updates the ImageMagick security policy to allow PDF processing via Gho...
#!/bin/bash
if [ "$EUID" -ne 0 ]; then
echo "Please run as root"
exit 1
3 weeks ago
LTKort
Install Swoole PHP extension (PHP 8.5)
Installs the Swoole PHP extension for PHP 8.5 with required dependencies (libcurl, libssl). Enables the extension for both FPM and CLI.
#!/bin/bash
if [ "$EUID" -ne 0 ]; then
echo "Please run as root"
3 weeks ago
LTKort
Install APCu PHP extension (PHP 8.5)
Installs the APCu in-memory cache extension for PHP 8.5 with CLI support enabled. Enables the extension for both FPM and CLI.
#!/bin/bash
if [ "$EUID" -ne 0 ]; then
echo "Please run as root"
3 weeks ago
LTKort
Install OpenSwoole PHP extension (PHP 8.5)
Installs the OpenSwoole PHP extension for PHP 8.5 with required dependencies (libcurl, libssl). Enables the extension for both FPM and CLI.
#!/bin/bash
if [ "$EUID" -ne 0 ]; then
echo "Please run as root"
3 weeks ago
LTKort