Skip to content

Commit 012d7be

Browse files
committed
change default web analytics program from webalizer to awstats #3549
1 parent 53c9ae5 commit 012d7be

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
ALTER TABLE `web_domain` CHANGE `folder_directive_snippets` `folder_directive_snippets` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL;
22
ALTER TABLE `web_domain` ADD `log_retention` INT NOT NULL DEFAULT '30' AFTER `https_port`;
3+
ALTER TABLE `web_domain` CHANGE `stats_type` `stats_type` VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT 'awstats';

install/sql/ispconfig3.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1955,7 +1955,7 @@ CREATE TABLE `web_domain` (
19551955
`ssl_key` mediumtext NULL,
19561956
`ssl_action` varchar(16) NULL,
19571957
`stats_password` varchar(255) default NULL,
1958-
`stats_type` varchar(255) default 'webalizer',
1958+
`stats_type` varchar(255) default 'awstats',
19591959
`allow_override` varchar(255) NOT NULL default 'All',
19601960
`apache_directives` mediumtext,
19611961
`nginx_directives` mediumtext,

interface/web/sites/form/web_vhost_domain.tform.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@
609609
'stats_type' => array (
610610
'datatype' => 'VARCHAR',
611611
'formtype' => 'SELECT',
612-
'default' => 'webalizer',
612+
'default' => 'awstats',
613613
'value' => array('webalizer' => 'Webalizer', 'awstats' => 'AWStats', '' => 'None')
614614
),
615615
//#################################

0 commit comments

Comments
 (0)