From: eldy <> Date: Thu, 8 May 2003 15:25:53 +0000 (+0000) Subject: AWStats default install dir is /usr/local/awstats now. X-Git-Tag: AWSTATS_5_5_RELEASE~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c95adda79568020300b598a86bd7283f3e2a54d7;p=thirdparty%2FAWStats.git AWStats default install dir is /usr/local/awstats now. --- diff --git a/docs/awstats.pdf b/docs/awstats.pdf index 3f8a5910..9a127d2f 100644 Binary files a/docs/awstats.pdf and b/docs/awstats.pdf differ diff --git a/docs/awstats_changelog.txt b/docs/awstats_changelog.txt index 34a1f47e..893fb5af 100644 --- a/docs/awstats_changelog.txt +++ b/docs/awstats_changelog.txt @@ -42,6 +42,7 @@ New features/improvments: preprocessor was replaced by maillogconv.pl). Other/Documentation: +- AWStats default install directory is /usr/local/awstats for unix like OS. - Added Isle of Man, Monserat, and Palestinian flag icon. - Added "local network host" and "Satellite access host" in label of possible countries and icons (They appears when using geoip plugins). diff --git a/docs/awstats_config.html b/docs/awstats_config.html index dd75a79c..20ca3dcb 100644 --- a/docs/awstats_config.html +++ b/docs/awstats_config.html @@ -1127,7 +1127,7 @@ AWStats 4.1+ supports both keywords AND keyphrases by default with no need of an DirLang
Version : 2.1 +

# Set the location of language files. -
# Example: "/opt/awstats/lang" +
# Example: "/usr/share/awstats/lang"
# Default: "./lang" (means lang directory is in same location than awstats.pl)
#
DirLang="./lang" diff --git a/docs/awstats_faq.html b/docs/awstats_faq.html index f71bc59c..60ac7dba 100644 --- a/docs/awstats_faq.html +++ b/docs/awstats_faq.html @@ -530,10 +530,10 @@ A lot of other scheduler (sharewares/freewares) are very good.

With unix-like operating systems, you can use the "crontab".
This is examples of lines you can add in the cron file (see your unix reference manual for cron) :
-To run update every day at 04:00, use :
-0 4 * * * /opt/awstats/wwwroot/cgi-bin/awstats.pl -config=mysite -update
+To run update every day at 03:50, use :
+50 3 * * * /usr/local/awstats/wwwroot/cgi-bin/awstats.pl -config=mysite -update
To run update every hour, use :
-0 * * * * /opt/awstats/wwwroot/cgi-bin/awstats.pl -config=mysite -update
+0 * * * * /usr/local/awstats/wwwroot/cgi-bin/awstats.pl -config=mysite -update


diff --git a/docs/awstats_setup.html b/docs/awstats_setup.html index 83ce935f..b72a5d36 100644 --- a/docs/awstats_setup.html +++ b/docs/awstats_setup.html @@ -77,7 +77,7 @@ web server, for example /yourwwwroot/icon or /yourwwwroot/icons.
* Step 1-5
Copy awstats.model.conf file into a new file named awstats.myvirtualhostname.conf. This new file must be stored in
-- /etc/opt/awstats or /etc/awstats or /etc or same directory than awstats.pl (so cgi-bin) for Unix/Linux users.
+- /etc/awstats or /etc/opt/awstats or /etc or same directory than awstats.pl (so cgi-bin) for Unix/Linux users.
- same directory than awstats.pl (so cgi-bin) for Windows and other OS.

* Step 1-6
diff --git a/docs/awstats_tools.html b/docs/awstats_tools.html index c7bd7252..556b68ae 100644 --- a/docs/awstats_tools.html +++ b/docs/awstats_tools.html @@ -53,7 +53,7 @@ All those tools are available in tools directory of AWStats distribution.

awstats_updateall.pl


awstats_updateall launches update process for all AWStats config files found in
a particular directory, so you can easily setup a cron/scheduler job. -
This directory is by default /etc/opt/awstats. +
This directory is by default /etc/awstats.

Usage: awstats_updateall.pl now [options]
diff --git a/wwwroot/cgi-bin/awstats.pl b/wwwroot/cgi-bin/awstats.pl index 786d3ce9..fdd35c60 100644 --- a/wwwroot/cgi-bin/awstats.pl +++ b/wwwroot/cgi-bin/awstats.pl @@ -1626,7 +1626,7 @@ sub Read_Plugins { # Check plugin files in common possible directories : # Windows : "${DIR}plugins" (plugins in same dir than awstats.pl) # Debian package : "/usr/share/awstats/plugins" - # Other possible directories : "./lang" + # Other possible directories : "./plugins" my @PossiblePluginsDir=("${DIR}plugins","/usr/share/awstats/plugins","./plugins"); if ($Debug) { debug("Call to Read_Plugins with list: @PluginsToLoad"); }