My Wordpress site was warning me that:
Error The required module, gd, is not installed, or has been disabled.
I started looking into this and found that it is disabled by default in php.ini:
;extension=gd2 So I decided to uncomment it and restart. This didn't work, so I commented it out and restarted again. Then I realised that gd was simply not installed for the PHP version being used. So I installed it with apt:
apt-get install php8.0-gd After it was installed, everything was pointing towards gd being enabled - but it is still commented out in the php.ini. So, does uncommenting this line actually do anything?
I'm using Debian 12 and php-fpm8.0 if it is relevant. Thanks