By default, no password is used in ELog. This can be useful for public directories etc. where anybody should be able to read it. To add password security, read the documentation under Access control.
Note that passwords are transferred over the network in plain text and therefore not secure. If this is a problem, a secure network connection should be used.
Use the URL:
http://<your.host>/<logbook>/?cmd=Last&<attribute>=<value>&l<attribute>=1
Note the "l" before the second attribute like "lAuthor=1". This executes the command "Last" command using a filter with <attribute>=<value>. The checkbox next to <attribute> is turned on so that browsing only shows pages with that attribute value.
There is a trick for that: Define two logbooks, but with the same data directory. The first one has no passwords, but a restricted set of menu commands. The second logbook has a read and/or write password or user level access and a full menu (including edit, delete, etc.). So the public uses the first logbook, while the adminitrator uses the second logbook. Here is an example configuration file:
[global] logbook tabs = 0 [Public] data dir = c:\elog Comment = Public access Attributes = Author, Type, Category, Subject Options Type = Routine, Software Installation, Problem Fixed, Configuration, Other Options Category = General, Hardware, Software, Network, Other Menu commands = Find, Last day, Last 10, Help [Restricted] Data dir = c:\elog Comment = Access only for administrator Password file = passwd.txt Attributes = Author, Type, Category, Subject Options Type = Routine, Software Installation, Problem Fixed, Configuration, Other Options Category = General, Hardware, Software, Network, Other Menu commands = New, Edit, Delete, Reply, Find, Last day, Last 10, Config, Change Password, Logout, HelpNote the "logbook tabs = 0" which "hides" the restricted logbook so that public users don't get confused.