Re: Too many redirects when running behind load balancer?, posted by Stefan Ritt on Tue Jul 19 12:48:42 2022
|
Yes I see the redirects. You say with the example logbook it works, right? Is it the password protection which triggers the problem or anything else?
Does it work if you take out the password protection? The key is to identify which setting in your config file triggers the problem, so you can bracket
the problem down between the example logbook and your logbook definition. |
Re: OSX Issues, posted by Stefan Ritt on Fri Jul 29 14:22:00 2022
|
I just tried the same on my latpop (MacOSX 12.4) and it worked flawlessly:
ritt@MBP14 build % echo "blah" | ./elog -h 127.0.0.1 -p 8080 -l demo -r 2 -x
Message successfully transmitted, ID=3 |
Re: Unable to add user, posted by Stefan Ritt on Mon Aug 8 08:26:11 2022
|
I recommend to clear all your browser cookies for the elog server. Sometimes an old cookie confuses the
access mechanism.
|
Re: Need help with permission, posted by Stefan Ritt on Mon Sep 26 12:45:50 2022
|
Sometimes this can also be an SELinux issue, if you have that service running. Try "journalctl | grep denied" to see denied resources and consult
the SELinux documentation on how to fix that.
Stefan |
Re: Post using html form , posted by Stefan Ritt on Tue Oct 25 09:45:41 2022
|
Probably people have to log in to the logbook before opening the form. I guess the "submit not allowed" comes from the fact that they access
the logbook as a guest.
Stefan |
a hack around, posted by Stefan Ritt on Wed Jan 4 09:33:25 2023
|
> - rsprintf("<textarea rows=%d cols=%d wrap=hard name=\"Text\">\n", height, width);
> + rsprintf("<textarea rows=%d cols=%d name=\"Text\">\n", height, width);
>
|
a hack around, posted by Stefan Ritt on Wed Jan 4 09:39:38 2023 
|
Ahh, now I remember. Well, the I put that in like 25 years ago ;-)
Let's assume the user write a very long line and relies on the wrapping of the text box. So the input might look like the
|
editing on a smartphone, posted by Stefan Ritt on Wed Jan 4 10:12:43 2023
|
Yepp, that's right. But without the "wrap=hard", you could get one single long line which is almost impossible to read. So there is no perfect solution
for all cases. I see three options
|