From: eldy <> Date: Wed, 10 Sep 2003 13:10:28 +0000 (+0000) Subject: Updated documentation X-Git-Tag: AWSTATS_WEBMIN_1_0_RELEASE~18 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8450e2c5055f52c20bd793e894e95c96d65964dd;p=thirdparty%2FAWStats.git Updated documentation --- diff --git a/docs/awstats_extra.html b/docs/awstats_extra.html index 5566df74..0f2e066b 100644 --- a/docs/awstats_extra.html +++ b/docs/awstats_extra.html @@ -68,6 +68,26 @@ user or agent, etc...
You will find here examples of ExtraSection setup you can follow to build your own reports:
+
+

Tracking Product orders

+Image your web site is an e-store that sells 80 different products. Each of them has an id. +Each time, someone make an order for product 49, the order.cgi script is called with in URL +query parameter the id of the product, so you get in your log file a hit that looks like this:
+GET /cgi-bin/order.cgi?productid=49&session=A0B1C2 +
+So this is an example on how to setup your ExtraSection, to track your product orders:
+ +ExtraSectionName1="Product orders"
+ExtraSectionCondition1="URL,/cgi-bin/order.cgi"
+ExtraSectionFirstColumnTitle1="Product ID"
+ExtraSectionFirstColumnValues1="QUERY_STRING,productid=([^&]+)"
+ExtraSectionStatTypes1=PL
+MaxNbOfExtra1=100
+MinHitExtra1=1
+
+
+ +

Tracking Bugzilla most frequently viewed bugs

This is an example on how to setup your ExtraSection:
@@ -81,7 +101,8 @@ MaxNbOfExtra1=10
MinHitExtra1=1

-
+ +