QUOTE(skyhawk133 @ 12 Feb, 2008 - 10:19 PM)

Can you show us the code for your form and the upload script.
Thanks.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
font: 100% Verdana, Arial, Helvetica, sans-serif;
background: #666666;
margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
padding: 0;
text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
color: #000000;
}
.oneColFixCtr #container {
width: 780px; /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
background: #FFFFFF;
margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
border: 1px solid #000000;
text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtr #mainContent {
padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.style4 {font-size: 24pt}
-->
</style></head>
<body class="oneColFixCtr">
<div id="container">
<div id="mainContent">
<div align="center"><span class="style4">Upload Files</span></div><cfform action="upload" method="post" name="form1" class="oneColFixCtr" id="form1">
<div align="center"><table width="500" border="0" align="center" cellpadding="7">
<tr>
<td width="100%" bgcolor="#EEF1F7"><p align="center"><b><font face="Tahoma" size="2">Please make sure that the files you are uploading do <br />
not have the same name as other files you have uploaded!</font></b> </p></td>
</tr>
<tr>
<td width="100%" bgcolor="#E1E6F0"><p align="center"><b><font face="Tahoma" size="2">Upload
Options</font></b></p></td>
</tr>
<tr>
<td width="100%" bgcolor="#EEF1F7"><table border="0" width="100%" cellpadding="4">
<tr>
<td width="34%" align="right" bgcolor="#E1E6F0" valign="top"><font face="Tahoma" size="2"><b>Select
File To Upload:</b></font></td>
<td width="66%" bgcolor="#EAEDF4"><p>
<cfinput type="file" name="file">
<br />
<br />
<cfinput type="submit" name="Submit" value="Submit">
<br />
</p>
</td>
</tr>
</table></td>
</tr>
</table>
</div></cfform>
<p align="center"> </p>
<p>
<!-- end #mainContent -->
</p>
</div>
<!-- end #container --></div>
</body>
</html>