Until the issue is fixed, you guys can do use this to create an older version compatable upload form. It's just a basic uploader, so any files can be uploaded. I'll leave it up to you guys to add the file permission code in.
Here we go...
'First File called uploader.asp
<html>
<head>
<title>UPLOADER</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head>
<body bgcolor="#386CA5">
<form enctype=multipart/form-data method=post action=multipartformrespond.asp>
<table width="100%" border="0" align="center">
<tr>
<td bgcolor="#E4EAF2"><img src= "yourheader.gif"> </tr>
</table>
<table width="300" border="0" align="center" bordercolor="#000000">
<tr>
<td height="166" bgcolor="#386CA5"><table width="303" border="1" align="center" bordercolor="#000000">
<tr>
<td height="149" bgcolor="#E4EAF2"><table>
<tr>
<td height="24">Enter file description:</td>
<td><input type=text name=descrip></td>
</tr>
<tr>
<td>Select file:</td>
<td><input type=file name=f1></td>
</tr>
<tr>
<td><input name="submit" type=submit value="Submit"></td>
<td></td>
</tr>
<tr>
<td colspan="2"><div align="center">
<p><font size="2"><br>
</font></p>
</div></td>
</tr>
</table> </td>
</tr>
</table></td>
</tr>
</table>
</form>
</body>
</html>
-------------------------------
'Second File called multipartformrespond.asp
<HTML><HEAD>
<TITLE>Multi Part Forum Respond</TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></HEAD><BODY bgcolor="#386CA5">
<table width="100%" border="0" align="center">
<tr>
<td bgcolor="#E4EAF2"></td>
</tr>
</table>
<table width="382" border="0" align="center" bordercolor="#000000">
<tr>
<td width="376" height="176" bgcolor="#386CA5"><table width="100%" border="1" align="center" bordercolor="#000000">
<tr>
<td height="69" bgcolor="#E4EAF2">Thank you for uploading your file.<br>
<br>
<font size="2">
<%
Set upl = Server.CreateObject("SoftArtisans.FileUp")
'what you are doing here is defining the path to where the uploaded file will be saved. You can change this to where you want them to go.
upl.Path = Server.Mappath ("/upload") & "/" & "files"
upl.Save
strFilename = Mid(upl.UserFilename, InstrRev(upl.UserFilename, "\") + 1)%>
File name:<br>
Insert the path to your upload folder here/<%=strFilename%><br>
<br>
File description: <%=upl.form("descrip")%> </font></td>
</tr>
</table>
<br>
<font color="#FFFFFF" size="2"><strong>Cut & Paste the filename into the "Insert
Image" field in your post.</strong></font></td>
</tr>
</table>
<p> </p>
<p> </p>
</BODY></HTML>
Remember this will only work if our host is using SA Fileup as it's upload component. Good Luck!
Edited by steve