ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
841
|
Thu Dec 9 19:22:12 2004 |
| Qiang | shijialeee@yahoo.com | Question | Linux | | form posting |
hello,
i need to use a perl script with LWP to automatically update our elog
entries. we use ELOG internally.
however, I am not sure what elog checks for when doing the post through
form. and the auto-submit script always failed and returns "200 EOF". i can
get to the login part and grab form entry. its only the submittion failed.
let me know if you need more info to help me solve the problem.
thanks.
QiAng |
840
|
Thu Dec 9 18:39:15 2004 |
| auser | auser | Question | Linux | | Anyone try doing majordomo->Elog? |
Hi all,
We currently have Elog postings mirrored on to a majordomo email list.
Invariably, people on this list reply to the listserv and not to the Elog.
Has anyone tried getting emails to a listserv to autoformat and register as
proper elog entries. Didn't see any mention of this in the docs or forums.
Thx |
839
|
Thu Dec 9 11:40:05 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | Bug report | Other | 2.5.5-2 | Re: dropdown-lists display only the first 100 entries |
> > Right. Number of options is limited to 100.
> hi, i found the MAX_N_LIST macro and increased it
Please note that if you make it too big, you will get a stack overflow and
elogd will crash. |
838
|
Thu Dec 9 11:30:49 2004 |
| Guenter Nowak | Guenter.Nowqak@t-systems.at | Bug report | All | 2.5.5-2 | Re: back button does not work |
> > hi
> > the back button/liunk does not work
> > if i click on an entry and then back, it does not work properly, i see the
> > same entry
> > if i click on the new button or the find button, and then back, it does
> > not work properly
> > mfg guenter
>
> Thanks for reporting that bug, it has been fixed in the curreny CVS version.
thanks |
837
|
Thu Dec 9 11:30:07 2004 |
| Guenter Nowak | Guenter.Nowqak@t-systems.at | Bug report | Other | 2.5.5-2 | Re: dropdown-lists display only the first 100 entries |
> Right. Number of options is limited to 100.
hi, i found the MAX_N_LIST macro and increased it |
836
|
Tue Dec 7 16:15:28 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | Bug report | Other | 2.5.5-2 | Re: dropdown-lists display only the first 100 entries |
Right. Number of options is limited to 100. |
835
|
Tue Dec 7 15:46:15 2004 |
| Guenter Nowak | Guenter.Nowqak@t-systems.at | Bug report | Other | 2.5.5-2 | dropdown-lists display only the first 100 entries |
|
834
|
Tue Dec 7 01:18:14 2004 |
| Steve Allen | ns@elogicsystems.com | Info | All | 2.5.5-2 | Re: external authentication possible? |
> > > In order to avoid having to remember multiple usernames/passwords for
> > > different systems, is it possible for ELOG to use external authentication
> > > via Active Directory, etc?
> >
> > Not yet.
>
> I would note that this is a request that comes in fairly frequently, but to
> Stephan's credit (and looking back at previous comments) the task of trying to
> implement authentication that would *not* be a maintenance nightmare basically
> pushes such a request down to the bottom of the list.
>
> The only common denominator that could possibly cover all contingencies would
> be LDAP authentication. One way of doing this in a more-or-less universal
> fashion is to offload the auth task from eLog itself and place the burden on
> Apache. This means figuring out how to get Apache to pass auth info to eLog
> when eLog operates behind Apache. In the end, anything that can use LDAP as an
> authentication mechanism (like AD) can host eLog - as long as eLog can glom off
> of Apache's ability to do the actual authenticating.
>
> For our twiki (source from twiki.org) website, we use the following config:
>
> -- In Apache http.conf
> LoadModule auth_ldap_module libexec/auth_ldap.so
>
> AddModule auth_ldap.c
>
> AccessFileName .htaccess
>
> # Twiki
> Include /proj/www/twiki/conf/httpd.conf
>
>
> -- The http.conf in the Twiki directory
> <VirtualHost *>
> DocumentRoot "/proj/www/twiki/html"
> ServerName twiki
> ErrorLog error_log
> CustomLog access_log combined
> <Directory "/proj/www/twiki/html/bin/">
> Options +ExecCGI
> allow from all
> AllowOverride Authconfig FileInfo Indexes Limit Options
> </Directory>
> <Location /bin>
> Options +ExecCGI
> AuthType Basic
> AuthName CoreID
> CustomLog access_log combined
> <Directory "/proj/www/twiki/html/bin/">
> Options +ExecCGI
> allow from all
> AllowOverride Authconfig FileInfo Indexes Limit Options
> </Directory>
> <Location /bin>
> Options +ExecCGI
> AuthType Basic
> AuthName ID
> AuthLDAPURL
> ldap://ldap.co.com:389/ou=People,ou=Intranet,dc=co,dc=com?uid?sub?(objectClass=*)
> require valid-user
> allow from all
> <Limit OPTIONS>
> Order Deny,Allow
> Deny from all
> </LIMIT>
> </Location>
> </VirtualHost>
>
> --- Then the DocumentRoot ("/proj/www/twiki/html") has a '.htaccess' file with
> the following:
>
> RedirectPermenant / http://twiki.co.com/bin/view.cgi
>
> --- Also in the /bin directory we have:
>
> Redirect http://twiki.sps.mot.com/index.html http://twiki.sps.mot.com/bin/view.cgi
>
> AuthType Basic
> AuthName "LDAP Login"
> AuthLDAPURL
> ldap://ldap.co.com:389/ou=People,ou=Intranet,dc=co,dc=com?uid?sub?(objectClass=*)
>
>
> SetHandler cgi-script
>
> ErrorDocument 401 /bin/oops.cgi/TWiki/TWikiRegistration?template=oopsauth
>
> <Files ~ "[^/]*\.html$">
> SetHandler blabla
> allow from all
> </Files>
>
> <Files "*">
> require valid-user
> allow from all
> </Files>
> -------------------------
>
> Whether this is at all relevant, well . . . .
Food for thought--thanks! |