我是Magento的新用戶。當我將產品詳情中的文件上傳爲「可下載產品」時,它會完全上傳並顯示100%。但是,當我點擊'保存'它提供了警報Magento上傳產品錯誤
There are files that were selected but not uploaded yet.
Please upload or remove them first.
其實文件大小70MB。如果我上傳小文件,這裏沒問題。
哪裏錯了?
我是Magento的新用戶。當我將產品詳情中的文件上傳爲「可下載產品」時,它會完全上傳並顯示100%。但是,當我點擊'保存'它提供了警報Magento上傳產品錯誤
There are files that were selected but not uploaded yet.
Please upload or remove them first.
其實文件大小70MB。如果我上傳小文件,這裏沒問題。
哪裏錯了?
upload_max_filesize和post_max_size必須設置爲相應的值。 配置的php.ini
upload_max_filesize = 1000M
upload_tmp_dir = /tmp
post_max_size = 1000M
試着改變你的.httacess文件,添加以下
#Maximum allowed size for uploaded files.
upload_max_filesize = 100M
#Must be greater than or equal to upload_max_filesize
post_max_size = 100M
謝謝,但仍然有問題。 –
沒有用的代碼與此有關。 –