Issue after installing owncloud

This version of ownCloud is not compatible with PHP 7.2
You are currently running 7.2.24-0ubuntu0.18.04.7.

what do i need to do

got into owncloud how do i fix this errors
PHP module dom not installed.
Please ask your server administrator to install the module.

PHP module XMLWriter not installed.
Please ask your server administrator to install the module.

PHP module XMLReader not installed.
Please ask your server administrator to install the module.

PHP module libxml not installed.
Please ask your server administrator to install the module.

PHP module GD not installed.
Please ask your server administrator to install the module.

PHP module SimpleXML not installed.
Please ask your server administrator to install the module.

PHP module cURL not installed.
Please ask your server administrator to install the module.

PHP modules have been installed, but they are still listed as missing?
Please ask your server administrator to restart the web server.

It seems that you are using an old owncloud version not compatible with the php 7.2 version.
You can install several versions of PHP and still use them with different webpages.
The following link may help you :

Hope this helps

1 Like

that did not help me

what owncloud version are you using ?

You are installing an old version of ownCloud if it is incompatible with PHP 7.2. Do you have a good reason for this?
Otherwise please use the latest version.

  1. Run dpkg -l | grep php to see which packages are installed.
  2. Run php -m to see which modules are enabled
  3. Install additional php modules with apt-get install <php module package name>.
  4. Search for the package name with apt-cache search php | grep <module name>
  5. Enable modules that have been installed with phpenmod <module name>
  6. Finally restart apache to make the new PHP modules available to the web server with systemctl restart apache2
2 Likes