With a confera discussion, I can't seem to add attachments. I can enter a file name into the file upload box, and there are no errors, but when I view the message there is no attachment. Am I doing something wrong? -- cary
I guess you are using ZDconfera, not original Confera - I had the same problems until I looked into the code. Seems like it was partly taken from Confera, but Confera uses FileObject.py to handle attachments - this module is not present in ZDconfera, which instead tries to use ImageFile, but not very successfully You could copy that fileobject from Confera distribution, add a line like from FileObject import * at the beginning of ZDConfera.py, change try: file=ImageFile(file) except: file='' to try: file=FileObject(file) except: file='' inside addMessage in ZDConfera.py and maybe also change line icon='misc_/Confera/attachment.gif' to icon='misc_/ZDConfera/attachment.gif' at FileObject.py And this problem does not raise any errors because adding file is inside try/except clause in ZDConfera.py. regards, Vitaly. ----- Original Message ----- From: "Cary O'Brien" <cobrien@Radix.Net> To: <zope@zope.org> Sent: Tuesday, May 30, 2000 4:30 PM Subject: [Zope] confera, zope 2.2, and attachments
With a confera discussion, I can't seem to add attachments. I can enter a file name into the file upload box, and there are no errors, but when I view the message there is no attachment.
Am I doing something wrong?
-- cary
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
participants (2)
-
Cary O'Brien -
Vitaly Osipov