ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
736
|
Fri Oct 15 08:15:38 2004 |
| | | | | | |
> I have a problem here which the ELOG service get terminated unexpectedly
> on the Windows Server.
> Is there any way to debug this problem ?
One can start the elogd server manually. So stop the service, and start
c:\program files\elogd\elogd.exe -v
The "-v" flag shows all network traffic between the server and the browser. So
maybe the last conversation before the crash can tell us something. Make a
screendump of it and send it to me. |
737
|
Fri Oct 15 07:59:35 2004 |
| Geo Geo | gorilla_geo@yahoo.com | Bug report | Windows | 2.5.4.5 | Elog Service Terminated |
Hi
I have a problem here which the ELOG service get terminated unexpectedly
on the Windows Server.
Is there any way to debug this problem ?
I am using the latest version of Elog and i tried the 2.5.3 version too
have this problem
Thanks! |
735
|
Fri Oct 15 07:59:35 2004 |
| Geo Geo | gorilla_geo@yahoo.com | Bug report | Windows | 2.5.4.5 | Elog Service Terminated |
Hi
I have a problem here which the ELOG service get terminated unexpectedly
on the Windows Server.
Is there any way to debug this problem ?
I am using the latest version of Elog and i tried the 2.5.3 version too
have this problem
Thanks! |
733
|
Thu Oct 14 21:45:32 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | Request | Linux | 2.5.4-5 | Re: Extra 'append on edit' action when adding attachment |
I fixed that in revision 1.496 (see CVS). |
734
|
Thu Oct 14 16:33:51 2004 |
| Mike Stolove | mstolove@rogers.com | Request | Linux | 2.5.4-5 | Extra 'append on edit' action when adding attachment |
I have the following in a local logbook config:
append on edit = "\n\n[$date: $short_name]\n"
When I upload an attachment to an entry, it appears like the page is
getting refreshed in the browser and the 'append on edit' action is called
again. This results in two appended strings in the text entry, one for the
initial edit and one for the upload.
Is this by design or an inadvertent result of uploading an attachment?
My preferred handling of this - and perhaps a more intuitive behavior -
would be to have the append/prepend actions happen once and only once for
each edit or reply.
BTW Stephan, many thanks for the great program. |
731
|
Thu Oct 14 16:33:51 2004 |
| Mike Stolove | mstolove@rogers.com | Request | Linux | 2.5.4-5 | Extra 'append on edit' action when adding attachment |
I have the following in a local logbook config:
append on edit = "\n\n[$date: $short_name]\n"
When I upload an attachment to an entry, it appears like the page is
getting refreshed in the browser and the 'append on edit' action is called
again. This results in two appended strings in the text entry, one for the
initial edit and one for the upload.
Is this by design or an inadvertent result of uploading an attachment?
My preferred handling of this - and perhaps a more intuitive behavior -
would be to have the append/prepend actions happen once and only once for
each edit or reply.
BTW Stephan, many thanks for the great program. |
730
|
Thu Oct 14 11:37:18 2004 |
| RB | elog@spampot.com | Bug report | All | 2.5.4-5 | Re: URL Parsing Problem |
> Has been fixed in revision 1.492.
Thanks, Stefan. |
745
|
Wed Oct 13 20:48:52 2004 |
| | | | | | |
> Date: Mon, 11 Oct 2004 12:26:28 -3736512
The timezone offset (-3736512) is obtained from the "timezone" variable, which
is initialized with the tzset() function inside elogd. See "man tzset" for
details. It looks like if the timezone on your FreeBSD box is not correctly
defined.
Try to compile and execute following C program:
#include <stdio.h>
#include <time.h>
main()
{
tzset();
printf("timezone: %d\n", timezone);
}
This should print something like "timezone: -3600". If not, you might consider
defining the "TZ" environment variable. Maybe some FreeBSD expert knows some
details about this. |