I am trying to upload a text file using CF, but I get the following error.
"The MIME type of the uploaded file "text/plain" was not accepted by the 
server."
My coldfusion is running on Unix platform.
The code which I m usiing is as follows:-

<!--- Windows Example --->
<!--- Check to see if the Form variable exists. --->
<cfif isDefined("Form.FileContents") >
   <!--- If TRUE, upload the file. --->
   <cffile action = "upload"
      fileField = "FileContents"
      destination = "/trpt/home/TRPT/cfm_scripts/"
      accept = "text/html"
      nameConflict = "MakeUnique">
<cfelse>
   <!--- If FALSE, show the Form. --->
   <form method="post" action=<cfoutput>#cgi.script_name#</cfoutput>
      name="uploadForm" enctype="multipart/form-data">
      <input name="FileContents" type="file">
      <br>
      <input name="submit" type="submit" value="Upload File">
   </form>
</cfif>

Please help!!!

Hussain.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:269289
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to