Hi! I looked for document anywhere I could think of, read the release notes, but couldn't find an answer. Does anybody know if plugins, that have been upgraded to be used with TWiki 5, still work with 4.2.x? For some (CompareRevisionsAddOn, PublishContrib), i get "Can't call method "run" on an undefined value" for the code line "$TWiki::engine->run();" Henry78: I guess it's kind of individual, as in whether the TWiki5 plugin authors have thought of it or not hm does your /lib/TWiki/Engine.pm have a subroutine called run? There's no Engine.pm, I think that's TWiki 5 thing. oh http://twiki.org/cgi-bin/view/Plugins/AddOnPackage It seems like the CompareRevisionsAddOn should be working on v4 as well, but maybe the AddOn authors do not test old versions every time they add functionality yeah, v4 is listed as compatible on the plugin page maybe you must go back in the revision history for the addon and download the appropriate version: http://twiki.org/cgi-bin/view/Plugins/CompareRevisionsAddOn I'll try that, thank you Oh yes, already tried that, but get a login request, if i try to view an older version of the topic http://twiki.org/cgi-bin/view/Plugins/CompareRevisionsAddOn you can register a user maybe? :-) yes, i can. ; ) i see that rev20 has "CompareRevisionsAddOn_4.1.zip" probably what you want just hit it. http://twiki.org/p/pub/Plugins/CompareRevisionsAddOn/CompareRevisionsAddOn_4.1.zip try that link already got it, thanks ah k Anyone: Do you know how I can set up LdapContrib to fetch users from multiple LDAP bases? I don't want to set it too broad, because then it will fetch computers etc. TerjeAndersen: i am not aware of an ldap query that ANDs multiple OUs. that is a question you could ask in an ldap forum the ldapcontrib could be enhanced to be able to specify multiple filters twiki is open source, you could implement and contribute back, or hire a consultant to do that for you Yes :-), I might just do that http://twiki.org/cgi-bin/view/Codev/TWikiConsultants i have seen this question multiple times, so there is a need for it I see... Well, I'm writing my Bsc thesis around an Ldap integration, so I might just write the code myself sounds like a plan! right now I've solved it with a pretty ugly and long {Ldap}{LoginFilter} you could enhance the contrib to handle multiple filters in {Ldap}{LoginFilter}, possibly separated by semicolon with optional trailing space Hmm well, {LoginFilter} is not the problem for me since you can specify multiple filters there thanks to the ldap "lingo". But {UserBase} could be worth looking into, if people (like us) have users in multiple locations For example {LoginFilter} = (&(attr1='foo')(attr2='bar)) to require two conditions Well, that's the day for me. I'll check in later.