Error Installing Wordpress

I deleted my WordPress domain and the database and reinstalled the domain. I tried to install WordPress with the Quick Install App I got this error.

PHP Warning: Module “curl” is already loaded in Unknown on line 0 PHP Warning: Module “igbinary” is already loaded in Unknown on line 0 PHP Warning: Module “ldap” is already loaded in Unknown on line 0 PHP Warning: Module “redis” is already loaded in Unknown on line 0 Downloading from https://github.com/wp-cli/wp-cli/releases/download/v2.11.0/wp-cli-2.11.0.phar… md5 hash verified: beaae9eba59e9331f4a432208bc5ddfa Error: Cannot do ‘Process::run’: The PHP functions proc_open() and/or proc_close() are disabled. Please check your PHP ini directive disable_functions or suhosin settings. Error: cmd exited with errors

It created an empty database.

There are two problems:

You are loading several times a few php extensions. Check where are you loading them (change x.y by the actual php version like 8.3):

grep -rE '^extension=(curl|igbinary|ldap|redis)' /etc/php/x.y

proc_open function should be enabled, check whether is disabled in the php cli version you are using:

grep -r proc_open /etc/php/*/cli/

No duplicate php extensiopns in /etc/php/8.2/fpm/php.ini

My PHP.ini

But 8.2 is the default version? Also, we are looking for the php cli.

Show the output of the command for all your versions:

grep -rE '^extension=(curl|igbinary|ldap|redis)' /etc/php/
1 Like

I took proc_open off the list of disabled extensions in 8.2 php.ini

It starts to install WordPress then gives me this error:

The public_html was empty before I started. Now it contains WordPress files. I am not getting the errors I was getting before.

Even though I got this error. I am able to go to the domain and activate WordPress.

1 Like

Hello, i got both errors (on different servers) the last one is resolved here:

( TL;DR rm -r /tmp/hestia-webapp )