Opened 12 years ago
Closed 12 years ago
#262 closed bug (fixed)
Non-admin users have problems accessing to webdav
Reported by: | Blucecio | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 6.5.2 |
Component: | Core | Version: | 6.5.1 |
Keywords: | Cc: |
Description
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.
See commpunity forum topic:
| webdav access
Change History (1)
comment:1 Changed 12 years ago by car031
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.
The problem can be fixed by executing thewe two commands against the database:
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