Page 1 of 1

webdav access

Posted: Sun Jun 24, 2012 6:23 am
by zeropower
Hi,
I am trying to configure webdav access for users other than administrators but when they connect, they found empty root folders without any data while they already have permission at all root folders and can access from web access, the only users who has access to webdav are admins.
One more thing, i am using webdrive, when trying to lock file from webdrive menu, it gives me this error:
501 Not Implemented
LOCK failed for \Default\xxx
Has anyone faced the same problem and solve it.

Re: webdav access

Posted: Tue Jun 26, 2012 7:18 am
by car031
The error you see is normal since this specific feature(the lock) is not supported by the LogicalDOC server implementation

Re: webdav access

Posted: Wed Jun 27, 2012 4:57 am
by zeropower
Thanks for your reply.
Regarding other non-admin users accessing to webdav, have you tried it
I tried to put users at all groups other than admin group but no chance to see any folders, only successfully logging in. while they have no problem at web access.

Re: webdav access

Posted: Sun Jul 01, 2012 10:25 am
by zeropower
and regarding the accessing using webdav by non-admins users, does it needs special setting or not supported.

Re: webdav access

Posted: Wed Sep 19, 2012 10:03 am
by zeropower
Is there any fix for this problem for community edition as i found a fix at this link : http://issues.logicaldoc.com/ticket/235 for business edition.

Re: webdav access

Posted: Wed Sep 19, 2012 2:37 pm
by admin
The Lock feature is not planned in future releases,
while on the other front, WEBdav enabled to users not in the admin group seems to be a bug, we will investigate on that

Re: webdav access

Posted: Thu Sep 20, 2012 5:05 am
by zeropower
As the mentioned link before, i think it has been discovered and fixed but only for business edition.

Re: webdav access

Posted: Tue Sep 25, 2012 4:57 am
by zeropower
I tried this patch for the latest trial version and still having the same problem.

Re: webdav access

Posted: Mon Oct 01, 2012 9:52 am
by car031
You can solve the issue by executing the following commands against your DB:

delete from ld_foldergroup where ld_folderid=5;
insert into ld_foldergroup(ld_folderid, ld_groupid, ld_write , ld_add, ld_security, ld_immutable, ld_delete, ld_rename, ld_import, ld_export, ld_sign, ld_archive, ld_workflow, ld_download)
select 5,ld_id,1,1,0,0,1,1,0,0,0,0,0,1 from ld_group
where ld_deleted=0
and ld_type=0
and not ld_id=1;

Re: webdav access

Posted: Mon Oct 01, 2012 12:03 pm
by zeropower
Thanks a million.
It works great, i will complete testing and feed you back.