我正在尝试调整/实现Plone 4.1和Ploneboard的最大会话附件上传文件大小。
处理上传的代码似乎是PloneBoard中的代码:
# Create files in message
if files:
for file in files:
# Get raw filedata, not persistent object with reference to tempstorage
# file.data might in fact be OFS.Image.Pdata - str will piece it all together
attachment = File(file.getId(), file.title_or_id(), str(file.data), file.getContentType())
m.addAttachment(attachment)
在Plone,Zope和Ploneboard中调整上传文件大小的位置和方式?
答案 0 :(得分:3)
看起来这个是直接在PloneBoard论坛编辑页面设置中控制的。