Tags:
view all tags
%STARTINCLUDE% ---+ TWiki Site Tools _Utilities for searching, navigation, and monitoring site activity_ TWiki Site Tools include utilities for navigating, searching and keeping up with site activity. Preferences can be configured by web or site-wide. You are currently in the *%SYSTEMWEB%* web. In particular, TWiki provides two highly configurable, automated site monitoring tools, *<nop>WebNotify*, to e-mail alerts when topics are edited, and *<nop>WebStatistics*, to generate detailed activity reports. %TOC% #WebNotify ---++ <nop>WebNotify - recent changes alert Each TWiki web has an automatic e-mail alert service that sends a list of recent changes on a preset schedule, like once a day. Users can subscribe and unsubscribe using %NOTIFYTOPIC% in each web. The Perl script =mailnotify= is called by a background process at regular intervals. The script sends an automated e-mail to subscribed users if topics were changed in a web since the script was last run. * You can create a WebNotify link using TWikiVariables with ==%<nop>NOTIFYTOPIC%== %INCLUDE{"WebChangesAlert"}% You can also use =%<nop>USERSWEB%= instead of =Main=, but this is not necessary even if you have renamed the main web by configuring ={MainWebName}= in [[%SCRIPTURLPATH{"configure"}%][configure]]. #WebSearch ---++ <nop>WebSearch - search TWiki site WebSearch is an extremely fast and flexible search facility, part of the core TWiki feature set. WebSearchAdvanced offers more options, including: * topic title or full-text search * regular expressions * search within web or site-wide * index-style A-Z alphabetical listing sorted topic title * many more See also: SearchHelp for help; TWikiVariables and FormattedSearch for including hard-coded searches in text. #WebChanges ---++ <nop>WebChanges - what's new To check for the most recently edited topics while on-site, use the WebChanges link, usually located in the toolbar. It lists the most recently modified topics, newest first, along with the first couple of lines of the page content. This is simply a preset =SEARCH=. The number of topics listed by the =limit= parameter.: <blockquote> <pre> %<nop>SEARCH{ ".*" web="%INCLUDINGWEB%" type="regex" nosearch="on" order="modified"%BR% reverse="on" limit="50" }% </pre> </blockquote> #WebRssAndAtom ---++ <nop>WebRss and <nop>WebAtom - news feeds on recent changes You can point your news reader at WebRss and WebAtom to find out what is new in a TWiki web. WebRssBase and WebAtomBase have the details. Like WebChanges, this is based on a =%<nop>SEARCH{}%=. #WebIndex ---++ <nop>WebIndex - list of topics WebIndex lists all web topics in alphabetical order, with the first couple of lines of text. This is simply a preset =SEARCH=: <blockquote> <pre> %<nop>SEARCH{ "\.*" scope="topic" type="regex" nosearch="on" }% </pre> </blockquote> #WebStatistics ---++ <nop>WebStatistics - site statistics You can generate a listing manually, or on an automated schedule, of visits to individual pages, on a per web basis. Compiled as a running total on a monthly basis. Includes totals for Topic Views, Topic Saves, Attachment Uploads, Most Popular Topics with number of views, and Top Contributors showing total of saves and attachment uploads. Previous months are saved. %T% You can create a WebStatistics link using TWikiVariables with ==%<nop>STATISTICSTOPIC%== TWiki also generates overall site usage statistics in [[%USERSWEB%.SiteStatistics]] (do not create that page, it is created automatically based on SiteStatisticsTemplate). On a monthly basis, the following items are recorded using system data and TWiki log data across all webs: Number of webs, number of topics, number of attachments, number of topic views, number of topic updates, number of files uploads, data size, pub size, disk use, number of users, number of groups, number of plugins installed compared to total number of plugins available, and the 10 top contributors. ---+++ Configuring for automatic operation * You can automatically generate usage statistics for the whole site and all webs. To enable this: * Make sure variable ={Log}{view}=, ={Log}{save}= and ={Log}{upload}= are set in [[%SCRIPTURLPATH{"configure"}%][configure]]. This will generate log file entries (see below). * Call the =twiki/bin/statistics= script from a cron job - once a day is recommended. This will update the %USERSWEB%.SiteStatistics and the WebStatistics topics in all webs. * __Attention:__ The script must run as the same user as the CGI scripts are running, such as user =nobody= or =www-data=. Example crontab entry: %BR% =0 0 * * * (cd /path/to/twiki/bin; ./statistics >/dev/null 2>&1)= * There is a workaround in case you can't run the script as user =nobody= : Run the utility =twiki/tools/geturl.pl= in your cron job and specify the URL of the =twiki/bin/statistics= script as a parameter. Example: %BR% =0 0 * * * (cd /path/to/twiki/tools; ./geturl.pl mydomain.com /urlpath/to/twiki/bin/statistics >/dev/null 2>&1)= * __NOTE:__ =geturl.pl= will do a TWiki CGI request as the <nop>TWikiGuest user, so if you use this workaround, the !WebStatistics topics you are updating will have to be writable by <nop>TWikiGuest. When running from the command line or a cron job, you can pass parameters to the script like this: <verbatim> cd twiki/bin; ./statistics -logdate 2011-05 -webs TWiki,Sandbox </verbatim> ---+++ Generating statistics manually by URL * The =twiki/bin/statistics= script can also be executed as a CGI script - just enter the URL in your browser. Examples: * Update current month for all webs you have access to: %BR% =%SCRIPTURLPATH{statistics}%= * Update current month for %USERSWEB% web only: %BR% =%SCRIPTURLPATH{statistics}%/%USERSWEB%= * Update %SERVERTIME{$month $year}% for %USERSWEB% web: %BR% =%SCRIPTURLPATH{statistics}%/%USERSWEB%?logdate=%SERVERTIME{$year-$mo}%= * Update %SERVERTIME{$month $year}% for the !ProjectX, !ProjectY and !ProjectZ webs: %BR% =%SCRIPTURLPATH{statistics}%?logdate=%SERVERTIME{$year-$mo}%;webs=ProjectX,ProjectY,ProjectZ= #LogFiles ---++ Log Files TWiki generates monthly log files which are used by the statistics script * The log file is defined by the *{LogFileName}* setting in [[%SCRIPTURLPATH{"configure"}%][configure]] * The file name is =log<year><month>.txt= * Example path name: =twiki/logs/log%SERVERTIME{$year$mo}%.txt= * Each access gets logged as: %BR% =| <time> | <wikiusername> | <action> | <web>.<topic> | <extra info> | <IP address> |= * Example log entry: %BR% =| %SERVERTIME{$day $mon $year - $hour:$min}% | %USERSWEB%.TWikiGuest | view | %SYSTEMWEB%.WebRss | | 66.124.232.02 |= * Actions are logged if enabled in [[%SCRIPTURLPATH{"configure"}%][configure]] by the *{Log}{<i>action</i>}* flags * Logged actions: | *Script* | *Action name* | *Extra info* | | attach | =attach= | when viewing attach screen of previous uploaded attachment: =filename= | | changes | =changes= | | | edit | =edit= | when editing non-existing topic: =(not exist)= | | login, logon,%BR% attach, edit,%BR% register, rest,%BR% view, vewfile | =sudologin=, %BR% =sudologout= | Login name of administrator user who is logging in or out | | manage | =changepasswd= | Login name of user who's password is changed | | rdiff | =rdiff= | higher and lower revision numbers: =4 3= | | register | =regstart= | !WikiUserName, e-Mail address, LoginName: =user attempts to register= | | register | =register= | E-mail address: =user successfully registers= | | register | =bulkregister= | !WikiUserName of new, e-mail address, admin ID | | rename | =rename= | when moving topic: =moved to !Newweb.NewTopic= | | rename | =renameweb= | when renaming a web: =moved to !Newweb= | | rename | =move= | when moving attachment: =Attachment filename moved to !Newweb.NewTopic= | | resetpasswd | =resetpasswd= | Login name of user who's password is reset | | save | =save= | when replacing existing revision: =repRev 3= %BR% when user checks the minor changes box: =dontNotify= %BR% when user changes attributes to an exising attachment: =filename.ext= | | save | =cmd= | special admin parameter used when saving | | search | =search= | search string | | upload | =upload= | filename | | view | =view= | when viewing non-existing topic: =(not exist)= %BR% when viewing previous topic revision: =r3= | | viewfile | =viewfile= | Attachment name and revision: =File.txt, r3= | #ConfigureEmail ---++ E-mail ---+++ Configuring outgoing mail Outgoing mail is required for TWikiRegistration and for [[#WebNotify][recent changes alert]]. TWiki will use the ==Net::SMTP== module if it is installed on your system. Set this with the ==SMTPMAILHOST== variable in TWikiPreferences. The notify e-mail uses the default =changes.tmpl= template, or a skin if activated in the TWikiPreferences. mailnotify also relies on two hidden files in each =twiki/data/Web= directory: =.changes= and =.mailnotify.= Make sure both are writable by your web server process. =.changes= contains a list of changes; go ahead and make this empty. =.mailnotify= contains a timestamp of the last time notification was done. You can use an external mail program, such as ==sendmail==, if the =Net::SMTP= module is not installed. Set the program path in =={MailProgram}== in [[%SCRIPTURLPATH{"configure"}%][configure]]. * %H% Net::SMTP can be easily disabled (if there is an installation error) by setting ==SMTPMAILHOST== in TWikiPreferences to an empty value. * %T% You can set a separate ==SMTPSENDERHOST== variable to define the mail sender host (some SMTP installations require this). ---+++ Setting the automatic e-mail schedule *For Unix platforms:* Edit the =cron= table so that =mailnotify= is called in an interval of your choice. Please consult =man crontab= of how to modify the table that schedules program execution at certain intervals. Example: <pre> % crontab -e 0 1 * * * (cd /path/to/twiki; perl -I bin tools/mailnotify -q) </pre> The above line will run mailnotify nightly at 01:00. The =-q= switch suppresses all normal output. Details at MailerContrib. *For ISP installations:* Many ISPs don't allow hosted accounts direct cron access, as it's often used for things that can heavily load the server. Workaround scripts are available. *On Windows:* You can use a scheduled task if you have administrative privileges. TWiki:Codev/CronTabWin is a free scheduler for Windows. ---++ Site Permissions * TWikiAccessControl describes how to restrict read and write access to topics and webs, by users and groups * SitePermissions lists the permissions settings of the webs on this TWiki site ---++ Backup and Restore TWiki has a solution to backup, restore and upgrade TWiki sites. It can be used via browser and on the command line. The BackupRestorePlugin is pre-installed in TWiki-5.1 and later releases; it can be installed in older TWiki releases as low as TWiki-2001-09-01 (Athens Release) to easily create a backup that can be restored on a new TWiki release. This offers an easy upgrade path for TWiki. See also TWikiUpgradeGuide. ---++ Help with crontab The crontab command is used to schedule commands to be executed periodically. * Wikipedia.org:Crontab - crontab documentation * [[http://www.kalab.com/freeware/pycron/pycron.htm][pycron]] - crontab for Windows __Related Topics:__ AdminDocumentationCategory, AdminToolsCategory %STOPINCLUDE% -- __Contributors:__ TWiki:Main.MikeMannix, TWiki:Main.PeterThoeny, TWiki:Main.CrawfordCurrie, TWiki:Main.KennethLavrsen, TWiki:Main.SvenDowideit
Edit
|
Attach
|
Watch
|
P
rint version
|
H
istory
:
r20
<
r19
<
r18
<
r17
<
r16
|
B
acklinks
|
V
iew topic
|
Raw edit
|
More topic actions...
Topic revision: r18 - 2011-08-13
-
TWikiContributor
Home
Site map
Main web
Sandbox web
TWiki web
TWiki Web
User registration
Users
Groups
Index
Search
Changes
Notifications
RSS Feed
Statistics
Preferences
View
Raw View
Print version
Find backlinks
History
More topic actions
Edit
Raw edit
Attach file or image
Edit topic preference settings
Set new parent
More topic actions
User Reference
ATasteOfTWiki
TextFormattingRules
TWikiVariables
FormattedSearch
QuerySearch
TWikiDocGraphics
TWikiSkinBrowser
InstalledPlugins
Admin Maintenance
Reference Manual
InterWikis
ManagingUsers
ManagingWebs
TWikiSiteTools
TWikiPreferences
WebPreferences
Categories
Admin Documentation
Admin Tools
Developer Doc
User Documentation
User Tools
Account
Log In
Edit
Attach
Copyright © 1999-2025 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki?
Send feedback
Note:
Please contribute updates to this topic on TWiki.org at
TWiki:TWiki.TWikiSiteTools
.