Troubleshooting CFFILE
I have several pages that allow users to upload files that have started giving me problems since migrating to CF 8 (installed CF 8 fresh on a new 2003 server running IIS and migrated files and settings manually.)
Here's the code for the page (This is essentially straight from LiveDOCs):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Upload File with ColdFusion</title>
</head>
<body>
<cfif isdefined("form.upload_now")>
<cffile action="upload" filefield="ul_path" destination="D:\uploaded\" accept="*" nameconflict="makeunique">
The file was successfully uploaded!
</cfif>
<form action="upTest.cfm" method="post" name="upload_form" enctype="multipart/form-data" id="upload_form">
<input type="file" name="ul_path" id="ul_path">
<input type="submit" name="upload_now" value="submit">
</form>
</body>
</html>
I can upload a few files but then it stops working. The rest of the site works fine. There's no error message and nothing in any of the logs. IE simply displays an empty page.
Here's the page source from when it doesn't work:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252"></HEAD>
<BODY></BODY></HTML>
