I don't even know where to start with this problem. I have a folder in zope. In it are a bunch of subfolders with webpages, and scripts to run some web interface tools we are developing. The tools are run in each of the subfolders using inheritance. eg. /www/webManager (web interface to the file system) /www/deleteFiles (script to delete files) /www/finance/ (finance pages go here) /www/it/ (info tech pages go here) Now, it used to work just fine. Then something breaks. What Doesn't Work: I go to /www/it/webManager. Select some files to delete. Click delete. /www/it/deleteFiles is called. I get a login prompt, but no accout is accepted. Even my "god" account with Manager/Owner at Root. Error Type: Unauthorized Error Value: You are not allowed to access manage_delObjects in this context What Does Work: There are no problems with my create files script being called from /www/. It asks for a username and password, and then works fine. If I copy webManager and deleteFiles into /www/it/ it works fine. This makes me think there is an inheritance problem with using this script. However, I can now successfully use this tool in any subfolder off /www/it/. So...well there goes that idea. If I go to the root and give all permissions to Anonymous, it works fine. It does not work if I give all permissions to Authenticated. Permissions: At root Owner/Manager have all permissions. Anonymous has the basics (view etc). Authenticated has nothing. All folders are set to inherit permission with no extentions. I cannot stress enough how frustrating this is: It used to work fine, and to my knowledge I've changed nothing, and checked everything that could affect this. Any ideas what could be doing this?