Re: How to get Elog server to produce web server log files in Linux., posted by John on Mon Oct 21 19:31:17 2019
|
Thank you soo much Sebastian once again for helping me!! This is something that will help me very much in the future with other situations similiar!
John :)
Sebastian |
Re: Edit of multiple posts, posted by Finn Junker on Tue Oct 22 12:47:06 2019
|
Trial and error - it seems like this combination does the trick:
Locked Attributes = Author
Fixed Attributes Edit = Author |
Re: Hide logbook tab when not authorized, posted by marijn lucas on Thu Oct 24 16:38:27 2019
|
*** edit ***
I solved my problem by removing the guest options from the logbooks ('Guest menu commands' and 'Guest List Menu commands'), this
forbids any unauthorised user to see the content of the concerned logbooks. This is what I needed. |
PAM authentication question, posted by David Wallis on Tue Nov 5 21:42:50 2019
|
I'm testing the PAM authentication feature, and have a couple questions, a suggestion, and a comment.
First the comment... it was pretty easy to get working, and is exactly what we need here, so thanks! Our PAM stack here is designed to allow
logins with Active Directory, LDAP, or local accounts, so the PAM option preserves all of that. |
Re: PAM authentication question, posted by Jan Christoph Terasa on Sun Nov 17 14:55:11 2019
|
David Wallis
wrote:
I'm testing the PAM authentication feature, and have a couple questions,
a suggestion, and a comment. |
Re: PAM authentication question, posted by David Wallis on Thu Nov 21 18:10:28 2019
|
Hi Christoph,
Thanks for looking into this, if you can enable PAM + File, our users would be very happy!
The pam.d issue is probably related to CentOS/Red Hat, since our PAM expert warned me that it might be necessary. |
Change column width in list mode?, posted by David Wallis on Mon Dec 2 23:28:28 2019
|
In some of our logbooks, some columns are very narrow, which makes their content difficult to read. I have tried adding a custom css file like this:
listframe td:nth-child(3) {
width: 250px; |
Re: Change column width in list mode?, posted by Stefan Ritt on Wed Dec 4 10:37:32 2019
|
You need
.listframe td:nth-child(3) {
min-width: 250px; |