Forums / Install & configuration / Webdav and LDAP

Webdav and LDAP

Author Message

Bryan Fransman

Tuesday 25 January 2005 6:27:37 am

I've come across a road block in my evaluation of eZ publish... I'm not sure if this is a bug, or if I am missing something. I've searched the documentation, forms - the web etc. etc.

Current config:

Apache 2
PHP 4.3.8
OpenLDAP 2.1.22
eZ Publish 3.5.0

LDAP authentication works for site access. Currently all LDAP users are created as members of the "Editors" group.

Webdav access works, with one exception, LDAP accounts are unable to access webdav. If I create a user in eZ publish, that user is able to access webdav.

Any pointers in the right direction would be greatly appreciated.

Balazs Halasy

Tuesday 25 January 2005 8:11:34 am

Hi,

You're right - it doesn't work (because these things were not coordinated the time they were developed). I'll try to explain tomorrow why & perhaps how you can make it work (you'll have to modify some php files, but it is easy). Stay tuned.

Allman

Balazs Halasy

Wednesday 26 January 2005 5:00:50 am

Hi,

We've looked at this issue. The conclusion is: it is a bug. :-) It has been reported, the link to the bugreport is: http://ez.no/community/bugs/loginhandler_issues_webdav_example

If you really need to make this work then I suggest that you study how the kernel/user/login.php file takes care of logging in users. It seems that there is some code there which goes through the various login handlers (standard, LDAP, etc.) - which should have been moved out to some kind of a wrapper. What you need to do is to replicate this code in the webdav.php file which is in the root of your eZ publish directory. In particular, I think you'll need to add something that looks like this:

...
        $ini =& eZINI::instance();
        if ( $ini->hasVariable( 'UserSettings', 'LoginHandler' ) )
        {
            $loginHandlers = $ini->variable( 'UserSettings', 'LoginHandler' );
        }
        else
        {
            $loginHandlers = array( 'standard' );
        }
        foreach ( array_keys ( $loginHandlers ) as $key )
        {
            $loginHandler = $loginHandlers[$key];
            $userClass =& eZUserLoginHandler::instance( $loginHandler );
            $user = $userClass->loginUser( $userLogin, $userPassword );
            if ( get_class( $user ) == 'ezuser' )
                break;
        }
        if ( get_class( $user ) != 'ezuser' )
            $loginWarning = true;
...

Notice that the code above attempts to log in users by the way of the $userClass (which is connected to the current login handler in the loop) and that the webdav code only logs in users by the standard login handler. This is what you have to change. If you're not able to do this by yourself: I suggest that you wait until the bug is fixed or call up support & pay for an immediate fix.

Allman

Joanie Chembars

Thursday 26 May 2005 1:25:43 pm

Bryan,
Would you mind posting your ldap.ini file...... I am having troubles getting it to work....
Thanks,
joanie

eZ debug

Timing: Jan 18 2025 19:38:05
Script start
Timing: Jan 18 2025 19:38:05
Module start 'content'
Timing: Jan 18 2025 19:38:06
Module end 'content'
Timing: Jan 18 2025 19:38:06
Script end

Main resources:

Total runtime0.9849 sec
Peak memory usage4,096.0000 KB
Database Queries199

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0080 587.7031180.8438
Module start 'content' 0.00800.8160 768.5469560.0859
Module end 'content' 0.82400.1609 1,328.6328337.6953
Script end 0.9849  1,666.3281 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00460.4719210.0002
Check MTime0.00150.1559210.0001
Mysql Total
Database connection0.00120.118210.0012
Mysqli_queries0.906492.03021990.0046
Looping result0.00220.22561970.0000
Template Total0.946296.120.4731
Template load0.00220.220820.0011
Template processing0.944095.847120.4720
Template load and register function0.00010.014810.0001
states
state_id_array0.00160.160510.0016
state_identifier_array0.00150.153920.0008
Override
Cache load0.00180.1869300.0001
Sytem overhead
Fetch class attribute can translate value0.00210.209240.0005
Fetch class attribute name0.00100.096750.0002
XML
Image XML parsing0.00100.102240.0003
class_abstraction
Instantiating content class attribute0.00000.001260.0000
General
dbfile0.00180.1860270.0001
String conversion0.00000.000730.0000
Note: percentages do not add up to 100% because some accumulators overlap

CSS/JS files loaded with "ezjscPacker" during request:

CacheTypePacklevelSourceFiles
CSS0extension/community/design/community/stylesheets/ext/jquery.autocomplete.css
extension/community_design/design/suncana/stylesheets/scrollbars.css
extension/community_design/design/suncana/stylesheets/tabs.css
extension/community_design/design/suncana/stylesheets/roadmap.css
extension/community_design/design/suncana/stylesheets/content.css
extension/community_design/design/suncana/stylesheets/star-rating.css
extension/community_design/design/suncana/stylesheets/syntax_and_custom_tags.css
extension/community_design/design/suncana/stylesheets/buttons.css
extension/community_design/design/suncana/stylesheets/tweetbox.css
extension/community_design/design/suncana/stylesheets/jquery.fancybox-1.3.4.css
extension/bcsmoothgallery/design/standard/stylesheets/magnific-popup.css
extension/sevenx/design/simple/stylesheets/star_rating.css
extension/sevenx/design/simple/stylesheets/libs/fontawesome/css/all.min.css
extension/sevenx/design/simple/stylesheets/main.v02.css
extension/sevenx/design/simple/stylesheets/main.v02.res.css
JS0extension/ezjscore/design/standard/lib/yui/3.17.2/build/yui/yui-min.js
extension/ezjscore/design/standard/javascript/jquery-3.7.0.min.js
extension/community_design/design/suncana/javascript/jquery.ui.core.min.js
extension/community_design/design/suncana/javascript/jquery.ui.widget.min.js
extension/community_design/design/suncana/javascript/jquery.easing.1.3.js
extension/community_design/design/suncana/javascript/jquery.ui.tabs.js
extension/community_design/design/suncana/javascript/jquery.hoverIntent.min.js
extension/community_design/design/suncana/javascript/jquery.popmenu.js
extension/community_design/design/suncana/javascript/jScrollPane.js
extension/community_design/design/suncana/javascript/jquery.mousewheel.js
extension/community_design/design/suncana/javascript/jquery.cycle.all.js
extension/sevenx/design/simple/javascript/jquery.scrollTo.js
extension/community_design/design/suncana/javascript/jquery.cookie.js
extension/community_design/design/suncana/javascript/ezstarrating_jquery.js
extension/community_design/design/suncana/javascript/jquery.initboxes.js
extension/community_design/design/suncana/javascript/app.js
extension/community_design/design/suncana/javascript/twitterwidget.js
extension/community_design/design/suncana/javascript/community.js
extension/community_design/design/suncana/javascript/roadmap.js
extension/community_design/design/suncana/javascript/ez.js
extension/community_design/design/suncana/javascript/ezshareevents.js
extension/sevenx/design/simple/javascript/main.js

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1node/view/full.tplfull/forum_topic.tplextension/sevenx/design/simple/override/templates/full/forum_topic.tplEdit templateOverride template
4content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
6content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
2content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
2content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
1content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
1pagelayout.tpl<No override>extension/sevenx/design/simple/templates/pagelayout.tplEdit templateOverride template
 Number of times templates used: 17
 Number of unique templates used: 7

Time used to render debug report: 0.0001 secs