如何分配上傳字段的最大大小爲4MB? 我想這圖像的最大上傳大小
$imageField = new SortableUploadField('Images', 'Images');
$imageField->setOverwriteWarning(FALSE);
$imageField->setAllowedMaxFileNumber(40);
$sizeMB = 4; // 4 MB
$size = $sizeMB * 1024 * 1024; // 2 MB in bytes
$imageField->getValidator()->setAllowedMaxFileSize($size);
,但我得到一個內部服務器錯誤/禁止的消息。
謝謝
你什麼時候得到錯誤? – Zauberfisch
嘗試上傳圖片時出現錯誤。圖像中的進度條在CMS中加載,直到99%停止並給我這個錯誤。 – Steve
同樣的問題,當我使用新的UploadField('圖像','圖像');而不是SortableUploadField! – Steve