diff --git a/lib/os/class.ISPConfigDebianOS.inc.php b/lib/os/class.ISPConfigDebianOS.inc.php index 3a462b038c9eb24b26e129376484d62fe046ffb9..ebf9d5b471d483a6d2273b3b567be7750da5b1a4 100644 --- a/lib/os/class.ISPConfigDebianOS.inc.php +++ b/lib/os/class.ISPConfigDebianOS.inc.php @@ -161,7 +161,8 @@ class ISPConfigDebianOS extends ISPConfigBaseOS { protected function getApacheModulesToDisable() { $modules = array( - 'mpm_prefork' + 'mpm_prefork', + 'php8.0' ); return $modules; @@ -906,7 +907,7 @@ mailman-unsubscribe: "|/var/lib/mailman/mail/mailman unsubscribe mailman"'; $cmd = 'a2dismod ' . implode(' ', $modules) . ' 2>&1'; $result = $this->exec($cmd); if($result === false) { - throw new ISPConfigOSException('Command ' . $cmd . ' failed.'); + // throw new ISPConfigOSException('Command ' . $cmd . ' failed.'); } ISPConfigLog::info('Enabling apache modules.', true);