diff --git a/lib/os/class.ISPConfigDebianOS.inc.php b/lib/os/class.ISPConfigDebianOS.inc.php index fe32aa94e323ce68ec85dfe9ffe47ea62eb0e83f..9e8c0014052303a8b8960da24556173dd100ab6b 100644 --- a/lib/os/class.ISPConfigDebianOS.inc.php +++ b/lib/os/class.ISPConfigDebianOS.inc.php @@ -161,9 +161,10 @@ class ISPConfigDebianOS extends ISPConfigBaseOS { protected function getApacheModulesToDisable() { $modules = array( - 'mpm_prefork' + 'mpm_prefork', + 'php8.0' ); - + return $modules; } @@ -878,7 +879,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);