How to display Webalizer stats?

leo_15788

New Member
I know there is a way to display Webalizer stats to someone wanting to verify website stats, without having to login to cpanel.

Without simply doing a screen capture of the graphs, does anyone know how? someone told me if you can save as the html file and upload it to a public folder.

I haven't tried it yet.. too lazy True, but that doesnt make the stats very credible as the html can be easily edited? Im after something that can be produced on the fly but doesnt allow the user to login to cpanel, if thats possible. but what is credible then? Even if you have to login to get the stats, what makes that credible? All of webalizer are .html pages

What makes any webalizer credible is that they have access to the data and they can manually spot check the stats to prove it's accuracy. If you're using a Sphera platform, you should be able to configure and customize webalizer.cgi and webalizer.conf files.

webalizer.cgi
Code: #!/bin/sh -f########################################################## ## Sphera corp. 2001 | Webalizer ValueApp wraper script ## ########################################################## echo "Content-type: text/html"echo /www/cgi-bin/plugins/Webalizers/YOURSITENAME/webalizer -c webalizer.conf /usr/local/apache/logs/access_log > /dev/null sed -e "s?SRC=http://www.v7n.com/forums/seo-forum//"usage.png/"?SRC=\"/plugins/Webalizers/YOURSITENAME\/usage.png\"?g" \ -e "s?HREF=\"usage?HREF=\"/plugins/Webalizers/YOURSITENAME/usage?g" /www/htdocs/plugins/Webalizers/YOURSITENAME/index.html exitwebalizer.conf You will have configure the server paths names etc... for your own server.
Code: # LogFile for YOURSITENAME.com defines the web server log file to use.# If not specified here or on on the command line, input will default to# STDIN. If the log filename ends in '.gz' (ie: a gzip compressed file),# it will be decompressed on the fly as it is being read.LogFile /usr/local/apache/logs/access_log# LogType defines the log type being processed. Normally, the Webalizer# expects a CLF or Combined web server log as input. Using this option,# you can process ftp logs as well (xferlog as produced by wu-ftp and# others), or Squid native logs. Values can be 'clf', 'ftp' or 'squid',# with 'clf' the default.# LogType clfLogType combinedOutputDir /www/htdocs/plugins/Webalizers/YOURSITENAMEHistoryName webalizer.histIncremental yesIncrementalName webalizer.currentReportTitle Usage Statistics for YOUR SITE NAMEHostName www.YOURSITENAME.com# HTMLExtension allows you to specify the filename extension to use# for generated HTML pages. Normally, this defaults to "html", but# can be changed for sites who need it (like for PHP embeded pages).# HTMLExtension html# PageType lets you tell the Webalizer what types of URL's you# consider a 'page'. Most people consider html and cgi documents# as pages, while not images and audio files. If no types are# specified, defaults will be used ('htm*', 'cgi' and HTMLExtension# if different for web logs, 'txt' for ftp logs).# PageType htm*# PageType cgi# PageType phtml# PageType php3# PageType plPageType htm*UseHTTPS no# DNSCache specifies the DNS cache filename to use for reverse DNS lookups.DNSCache dns_cache.db# DNSChildren allows you to specify how many "children" processes are# run to perform DNS lookups to create or update the DNS cache file.# DNSChildren 0DNSChildren 10Quiet yesReallyQuiet noTimeMe yesGMTTime noDebug no# FoldSeqErr forces the Webalizer to ignore sequence errors.# FoldSeqErr no# Value is the number of seconds to timeout (default=1800=30min)VisitTimeout 3000IgnoreHist noCountryGraph yesDailyGraph <~DAILY_GRAPH~>DailyStats <~DAILY_STATS~>HourlyGraph yesHourlyStats yesGraphLegend yes# GraphLines allows you to have index lines drawn behind the graphs.GraphLines 10TopSites 100TopKSites 100TopURLs 100TopKURLs 100TopReferrers 100TopAgents 100TopCountries 100TopEntry 100TopExit 100TopSearch 100# The All* keywords allow the display of all URL's, Sites, Referrers# User Agents, Search Strings and Usernames. If enabled, a seperate# HTML page will be created, and a link will be added to the bottom# of the appropriate "Top" table. There are a couple of conditions# for this to occur.. First, there must be more items than will fit# in the "Top" table (otherwise it would just be duplicating what is# already displayed). Second, the listing will only show those items# that are normally visable, which means it will not show any hidden# items. Grouped entries will be listed first, followed by individual# items. The value for these keywords can be either 'yes' or 'no',# with the default being 'no'. Please be aware that these pages can# be quite large in size, particularly the sites page, and seperate# pages are generated for each month, which can consume quite a lot# of disk space depending on the traffic to your site.AllSites yesAllURLs yesAllReferrers yesAllAgents yesAllSearchStr yesAllUsers no# The Hide*, Group* and Ignore* and
 
Back
Top