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