サイズが 52KB のファイルを更新しようとしていますが、次のエラーが表示されます。
No data was received in the uploaded file
Saving empty (zero-length) files is prohibited.
Verify that you specified the correct file.
ここに私のフォームの一部があります:
<form method="post"
name="frm_testcase"action="index.cfm?fuseaction=tables.testcases"
enctype="multipart/form-data">
<input name="inputFile" type="file" size="50">
</form>
そして、ここでファイルをアップロードしようとします:
<cffile action = "upload"
fileField = "form.inputFile"
destination = "#local#"
<!---accept = "text/html" --->
nameConflict = "MakeUnique"
result = "upInputFile">
さまざまなファイルをアップロードしようとしましたが、いつも同じエラー メッセージが表示されます。