System requirements not met

NubeBuster

New member
I ran the requirements test script. Then I installed the system requirements that i was missing but the test script does not recognize that. The missing requirements are GD and cURL. I have them installed and restarted apache2 but the test script output hasn't changed. Did I forget something?

The server is running on ubuntu

curl 7.58.0 (x86_64-pc-linux-gnu) libcurl/7.58.0 OpenSSL/1.1.1 zlib/1.2.11 libidn2/2.3.0 libpsl/0.19.1 (+libidn2/2.0.4) nghttp2/1.30.0 librtmp/2.3
php -m | grep -i gd
gd
 
Last edited:
Having curl available to the OS goes not guarantee that the PHP module is installed. Try this:
Bash:
sudo apt-get install php-curl
sudo apt-get install php-gd
then restart both PHP and Apache
 
Having curl available to the OS goes not guarantee that the PHP module is installed. Try this:
Bash:
sudo apt-get install php-curl
sudo apt-get install php-gd
then restart both PHP and Apache
I ran those commands and restarted apache2. Did not work yet.
How do I restart php? I have php 8
 
Top Bottom