2
Plone 4.1とPloneboardの最大会話添付ファイルのアップロードファイルサイズをチューニング/実装しようとしています。Plone + 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)
どこで、どのようにアップロードさfilesizesはPloneの、ZopeのとPloneboardに調整されていますか?
AHA。これは、PloneBoardフォーラムのページ設定の編集で直接制御されていたようです。 –