]> err.no Git - sope/blob - sope-appserver/NGObjWeb/TROUBLESHOOTING
added some WebDrive WebDAV properties
[sope] / sope-appserver / NGObjWeb / TROUBLESHOOTING
1 Collect "common" issues around NGObjWeb ...
2
3 ___________________________________________________________________________
4 * Endless Recursion in sope -authenticatorInContext:
5
6   sope coredump, endless recursion: -authenticatorInContext:
7 ---snip---
8 #1038 0x00eda4c4 in -[OFSFolder authenticatorInContext:] (self=0x937b30, _cmd=0x3be4, _ctx=0x9387d0) at OFSFolder.m:747
9 #1039 0x00ed4074 in -[OFSBaseObject authenticatorInContext:] (self=0x943f30, _cmd=0x3be4, _ctx=0x9387d0) at OFSBaseObject.m:219
10 ---snap---
11   - this occures if htpasswd cannot be resolved as the authenticator
12     - htpasswd will be returned as a regular file (OFSFile object) which 
13       leads to a recursion
14     use: -SoOFSDebugAuthLookup YES to detect
15     - htpasswd becomes an OFSFile instead of a OFSHttpPasswd because the
16       core SoProducts (SoOFS.sxp) are not properly found!
17     - mixed up on GNUstep on MacOSX
18     use: SoProductRegistryDebugEnabled YES to detect
19
20 ___________________________________________________________________________