We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f99160d commit e92a24aCopy full SHA for e92a24a
install/lib/installer_base.lib.php
@@ -808,6 +808,13 @@ public function configure_apache()
808
exec("ln -s ".$vhost_conf_dir."/ispconfig.conf ".$vhost_conf_enabled_dir."/000-ispconfig.conf");
809
}
810
811
+ //* make sure that webalizer finds its config file when it is directly in /etc
812
+ if(@is_file('/etc/webalizer.conf') && !@is_dir('/etc/webalizer')) {
813
+ exec('mkdir /etc/webalizer');
814
+ exec('ln -s /etc/webalizer.conf /etc/webalizer/webalizer.conf');
815
+ }
816
+
817
818
819
820
public function configure_firewall()
0 commit comments