Re: [Ldap-users-questions] ldap-user admin module gives Internal Server Error when clicked u pon
Status: Alpha
Brought to you by:
fsl
From: Wil C. <wc...@na...> - 2002-01-31 01:47:02
|
Also Sprach Fernando Lozano <fs...@ce...> on Wed, Jan 30, 2002 at 0= 4:44:12PM PST > Hi Carl, >=20 > >I have a question that maybe you can help me with. I've configured Apa= che > >to talk to our existing LDAP server. We have a group that needs a > >web-interface in order to create new userids on our LDAP server so I > >installed the ldap-user admin module for webmin, but I'm having a probl= em > >with it. Everytime I click on the icon, I receive an "Internal Server > >Error". The same thing happens with the ldap browser module for=20 > webmin. Do > >you have any idea why this is happening? I'm using RedHat Linux 7.1=20 > by the > >way with Apache 1.3. Your help would be gladly appreciated. > > > Both modules depend on the Perl::LDAP module from mozilla.org. Looks > like you do not have it on your system or it was intalled incorrectly I made a little patch in directory_mgr to deal with this case; it's fairly trivial and goes something like this: # PerlLDAP stuff eval { use Mozilla::LDAP::Conn; use Mozilla::LDAP::Utils; } ; # 'use' caused an error, so the modules probably aren't # installed if ($@) { &error($text{'ldap_modules_not_installed'}, $text{'perl_eval_err'}, $@) ; } You might want to implement this. Wil --=20 W. Reilly Cooley wc...@na... Naked Ape Consulting http://nakedape.cc irc.linux.com #orlug,#pdxlug,#lnxs "I go on working for the same reason a hen goes on laying eggs." - H. L. Mencken |