Learn about DokuWiki
Advanced Use
Corporate Use
Our Community
Follow us on Facebook, Twitter and other social networks.
Learn about DokuWiki
Advanced Use
Corporate Use
Our Community
Follow us on Facebook, Twitter and other social networks.
This is an old revision of the document!
Compatible with DokuWiki
Tagged with authentication, logging
This Plugin will log all logins, logouts and failed login attempts to data/cache/loglog.log
. The log can be viewed on the admin screen.
Search and install the plugin using the Extension Manager. Refer to Plugins on how to install plugins manually.
The plugin might fail to log logins made through auth plugins other than authplain. Plugin authors can make their plugins compatible by emitting a PLUGIN_LOGLOG_LOG
event whenever they want to log a login/logout action. The event requires two fields in the $data
array: message
for the log message and user
for the affected user.
Here's an example from the SalesForce Auth Plugin:
$log = array('message' => 'logged in via Salesforce', 'user' => $this->user); trigger_event('PLUGIN_LOGLOG_LOG',$log);
The message can contain whatever you want to log. However, if you use the following strings in your message, an appropriate icon is associated with your message: