robert wrote at 2005-3-19 14:39 +0100: .... >your product can ask zope where it is installed like: >product_path = globals()['__builtins__']['INSTANCE_HOME'] + '/Products' You can shorten this to product_path = INSTANCE_HOME + '/Products' This works for any builtin (not just "INSTANCE_HOME"). -- Dieter