<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
# 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
}
#------------------------------------------------------------------------------
-# 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
#------------------------------------------------------------------------------
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
}