I am using CFFILE to upload a 2.5M file.  When doing this, something is timing 
out.  I've been to the host site and my ISP.  Neither are finding a problem.  
What is interesting - if I FTP a 23M file using FileZilla I have no problem.   
So why am I struggling with a 2.5M file using CFFILE?  Here's my code....

<html>
<head>
<title>Upload File with ColdFusion</title>
</head>
<body>

<cfif isdefined("form.upload_now")>
<cffile action="upload" filefield="ul_path" 
destination="c:/websites/114068qh8/ALC/attachments/mq" 
nameconflict="makeunique">
The file was successfully uploaded!
</cfif>

<cfform action="test.cfm" method="post" name="upload_form" 
enctype="multipart/form-data" id="upload_form">
<input type="file" name="ul_path">
<input type="submit" name="upload_now" value="submit">
</cfform>
</body>
</html> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

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

Reply via email to