From 6c9bc3ea7766bbabd0c7826d2cb87090bc89edb0 Mon Sep 17 00:00:00 2001 From: Till Brehm <tbrehm@ispconfig.org> Date: Mon, 1 Sep 2014 13:31:01 +0200 Subject: [PATCH] Enable mod_logio in apache on opensuse. --- install/dist/lib/opensuse.lib.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/dist/lib/opensuse.lib.php b/install/dist/lib/opensuse.lib.php index ea13cd2598..cd47d0533e 100644 --- a/install/dist/lib/opensuse.lib.php +++ b/install/dist/lib/opensuse.lib.php @@ -656,6 +656,9 @@ class installer_dist extends installer_base { if($conf['apache']['installed'] == false) return; //* Create the logging directory for the vhost logfiles exec('mkdir -p /var/log/ispconfig/httpd'); + + //* enable apache logio module + exec('a2enmod logio'); //if(is_file('/etc/suphp.conf')) { replaceLine('/etc/suphp.conf', 'php=php', 'x-httpd-suphp="php:/srv/www/cgi-bin/php5"', 0, 0); -- GitLab