]> git.ipfire.org Git - thirdparty/AWStats.git/commitdiff
Updated documentation
authoreldy <>
Mon, 21 Oct 2002 12:58:29 +0000 (12:58 +0000)
committereldy <>
Mon, 21 Oct 2002 12:58:29 +0000 (12:58 +0000)
docs/awstats_config.html
wwwroot/cgi-bin/awstats.model.conf
wwwroot/cgi-bin/awstats.pl

index 6d9e2af35d9c5ad6b1eea9d6d2d73a34f8faf249..ffa7b6ae3aaf8969bed2ecc4fa04f1385a9e4b18 100644 (file)
@@ -302,8 +302,8 @@ when reading it), follow the example:<br>
 <br># With DNSLookup to 0, all hosts will be reported by their IP addresses and\r
 <br># not by the full hostname of visitors. Domain/Country chart will also report\r
 <br># all visitors from a domain/country "Unknown".\r
-<br># If you need to set DNSLookup to 1, don't forget that reverse DNS lookup\r
-<br># increase dramatically AWStats update process. Do not use on large web sites.\r
+<br># If you need to set DNSLookup to 1, don't forget that this will reduce\r
+<br># dramatically AWStats update process speed. Do not use on large web sites.\r
 <br># Possible values:\r
 <br>#  0 No DNS Lookup\r
 <br>#  1 DNS Lookup is fully enabled\r
index b1b17a7c6b0dfd84459c2f514601e4e8dc0f76bb..3c324c22c1a5af1ba533bfcef6832b54cb8c125a 100644 (file)
@@ -110,8 +110,8 @@ LogSeparator=" "
 # With DNSLookup to 0, all hosts will be reported by their IP addresses and
 # not by the full hostname of visitors. Domain/Country chart will also report
 # all visitors from a domain/country "Unknown".
-# If you need to set DNSLookup to 1, don't forget that reverse DNS lookup
-# increase dramatically AWStats update process. Do not use on large web sites.
+# If you need to set DNSLookup to 1, don't forget that this will reduce
+# dramatically AWStats update process speed. Do not use on large web sites.
 # Possible values:
 # 0 - No DNS Lookup
 # 1 - DNS Lookup is fully enabled
index 7db4c147acc38f3043b3f7d02219a49bfa19c139..8524a45f092319e91500b5bf80dc11c9e6ee0a72 100644 (file)
@@ -3620,7 +3620,8 @@ sub Init_HashArray {
 }
 
 #------------------------------------------------------------------------------
-# Function:     Change word separators into space and remove bad coded chars
+# Function:     Change word separators of a keyphrase string into space and
+#               remove bad coded chars
 # Parameters:  stringtodecode
 # Input:        None
 # Output:       None
@@ -3628,7 +3629,7 @@ sub Init_HashArray {
 #------------------------------------------------------------------------------
 sub ChangeWordSeparatorsIntoSpace {
        $_[0] =~ s/%1[03]/ /g;
-       $_[0] =~ s/%2[02789ac]/ /ig;
+       $_[0] =~ s/%2[02789abc]/ /ig;
        $_[0] =~ s/%3a/ /ig;
        $_[0] =~ tr/\+\'\(\)\"\*,:/        /s;                                                          # "&" and "=" must not be in this list
 }