CodeIgniter “The filetype you are attempting to upload is not allowed.”

后端 未结 7 521
伪装坚强ぢ
伪装坚强ぢ 2020-12-20 21:04

I was searching a lot and found many questions regarding this problem, unfortunately none of answers did help me.

I\'m trying to upload a png image, and I\'m receivi

7条回答
  •  不知归路
    2020-12-20 21:45

    Actually, in my case, I created a blob object from a canvas by void canvas.toBlob(callback, mimeType, qualityArgument) method So the blob file does NOT have its real name (which has an extension), it's just only 'blob'. So I have to use the legacy way to upload the file, instead of an 'upload' library:

    move_uploaded_file ( $file["tmp_name"], $target_file )
    

提交回复
热议问题