<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : SoftArtisans.SAFile.1 error &#039;80020009&#039;</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : SoftArtisans.SAFile.1 error &#039;80020009&#039;]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 13 Apr 2026 13:53:53 +0000</pubDate>
  <lastBuildDate>Sat, 21 Jan 2006 17:25:40 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=4276</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[SoftArtisans.SAFile.1 error &#039;80020009&#039; : hi, error &amp;#039;80020009&amp;#039;...]]></title>
   <link>https://forums.webwiz.net/softartisans-safile-1-error-80020009_topic4276_post97836.html#97836</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=20612">YaGMuR_PreNSi</a><br /><strong>Subject:</strong> 4276<br /><strong>Posted:</strong> 21&nbsp;January&nbsp;2006 at 5:25pm<br /><br />hi,<DIV>error '80020009'<FONT face="Times New Roman" size=3> </FONT><P><FONT face=Arial size=2>/forum/son.asp</FONT><FONT face=Arial size=2>, line 95</FONT> </P><DIV></DIV>SOn Yaz&#305;lan Konular Bölümünde Bu Ç&#305;k&#305;yor Acaba Yard&#305;m Edebilirmisiniz?</DIV>]]>
   </description>
   <pubDate>Sat, 21 Jan 2006 17:25:40 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/softartisans-safile-1-error-80020009_topic4276_post97836.html#97836</guid>
  </item> 
  <item>
   <title><![CDATA[SoftArtisans.SAFile.1 error &#039;80020009&#039; : Hi, Yes permissions where correct,...]]></title>
   <link>https://forums.webwiz.net/softartisans-safile-1-error-80020009_topic4276_post20458.html#20458</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=11237">webhound</a><br /><strong>Subject:</strong> 4276<br /><strong>Posted:</strong> 16&nbsp;July&nbsp;2003 at 7:16am<br /><br /><P>Hi,</P><P>Yes permissions where correct, my SoftArtisans FileUp component was too old i think 3.1.1.7 apparently..</P><P>I just culled the new calls and put in the old ones I knew worked...</P><P>Don't have any documents on SAFileUP</P><P>Thanx for the comments,</P><P>Richard <IMG src="https://forums.webwiz.net/smileys/smiley14.gif" border="0"></P><P>functions/functions_upload.asp</P><P>'Function to upload a file</P><P>Function fileUpload(ByVal strFileUploadPath, ByVal saryFileUploadTypes, ByVal intMaxFileSize, ByVal strUploadComponent, ByRef lngErrorFileSize, ByRef blnExtensionOK)</P><P>&nbsp;'Dimension variables<BR>&nbsp;Dim objUpload&nbsp;&nbsp;'Uplaod component<BR>&nbsp;Dim strNewFileName&nbsp;'Holds the file name<BR>&nbsp;Dim strOriginalFileName&nbsp;'Holds the original file name for those components that need to save the file first<BR>&nbsp;Dim strFilename</P><P>&nbsp;strNewFileName = "TEST"<BR>&nbsp;strOriginalFileName = "TEST"<BR>&nbsp;strFilename = "ERROR"</P><P>&nbsp;&nbsp;'******************************************<BR>&nbsp;&nbsp;'***&nbsp; SoftArtisans FileUp component&nbsp;&nbsp;&nbsp; ****<BR>&nbsp;&nbsp;'******************************************</P><P>&nbsp;&nbsp;'SA FileUp upload component - tested with version 3.1.1 not VER 4 COMPAT<BR>&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;'Create upload object<BR>&nbsp;&nbsp;&nbsp;Set objUpload = Server.CreateObject("SoftArtisans.FileUp")</P><P>&nbsp;&nbsp;&nbsp;&nbsp;'Over write files or an exception will occur if it already exists<BR>&nbsp;&nbsp;&nbsp;&nbsp;'objUpload.OverWriteFiles = True</P><P>&nbsp;&nbsp;&nbsp;&nbsp;'Set the upload path<BR>&nbsp;&nbsp;&nbsp;&nbsp;'.Path = Server.MapPath(strFileUploadPath)</P><P>&nbsp;&nbsp;&nbsp;&nbsp;'Get the file name, the path mehod will be empty as we are saving to memory so use the original file path of the users system to get the name<BR>&nbsp;&nbsp;&nbsp;&nbsp;strNewFileName = Mid(objUpload.UserFilename, InstrRev(objUpload.UserFilename, "\") + 1)</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;'Check the file size is not above the max allowed size, this is done using a function not the compoent to stop an exception error<BR>&nbsp;&nbsp;&nbsp;&nbsp;lngErrorFileSize = fileSize(objUpload.TotalBytes, intMaxFileSize)</P><P>&nbsp;&nbsp;&nbsp;&nbsp;'Loop through all the allowed extensions and see if the file has one<BR>&nbsp;&nbsp;&nbsp;&nbsp;blnExtensionOK = fileExtension(strNewFileName, saryFileUploadTypes)</P><P>&nbsp;&nbsp;&nbsp;&nbsp;'rs36 Check UPLOADED<BR>&nbsp;&nbsp;&nbsp;&nbsp;if objUpload.IsEmpty Then blnExtensionOK = False<BR>&nbsp;&nbsp;&nbsp;&nbsp;'rs36 CHECK FORM SUB<BR>&nbsp;&nbsp;&nbsp;&nbsp;'If objUpload.ContentDisposition &lt;&gt; "form-data" Then blnExtensionOK = False</P><P>&nbsp;&nbsp;&nbsp;&nbsp;'Replace spaces with underscores and Randomise File Name<BR>&nbsp;&nbsp;&nbsp;&nbsp;strNewFileName = Replace(strNewFileName, " ", "-", 1, -1, 1)<BR>&nbsp;&nbsp;&nbsp;&nbsp;strNewFileName = Replace(Formatdatetime(now(),vbshortdate) , "/", "-", 1, -1, 1) &amp; strNewFileName</P><P><BR>&nbsp;&nbsp;&nbsp;&nbsp;'If the file is OK save it to disk<BR>&nbsp;&nbsp;&nbsp;&nbsp;If lngErrorFileSize = 0 AND blnExtensionOK = True Then</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'objUpload.form("file").SaveInVirtual "/uploadforum"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;objUpload.form("file").SaveInVirtual strFileUploadPath &amp; "/" &amp; strNewFileName<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fileUpload = strNewFileName<BR>&nbsp;&nbsp;&nbsp;&nbsp;End If<BR>&nbsp;&nbsp;'Clean up<BR>&nbsp;&nbsp;Set objUpload = Nothing<BR>End Function</P><P>&nbsp;</P><span style="font-size:10px"><br /><br />Edited by webhound</span>]]>
   </description>
   <pubDate>Wed, 16 Jul 2003 07:16:14 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/softartisans-safile-1-error-80020009_topic4276_post20458.html#20458</guid>
  </item> 
  <item>
   <title><![CDATA[SoftArtisans.SAFile.1 error &#039;80020009&#039; : You need to make sure you have...]]></title>
   <link>https://forums.webwiz.net/softartisans-safile-1-error-80020009_topic4276_post20455.html#20455</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=8513">Phat</a><br /><strong>Subject:</strong> 4276<br /><strong>Posted:</strong> 16&nbsp;July&nbsp;2003 at 6:32am<br /><br /><P>You need to make sure you have write permissions to the folder you're uploading to.</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Wed, 16 Jul 2003 06:32:28 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/softartisans-safile-1-error-80020009_topic4276_post20455.html#20455</guid>
  </item> 
  <item>
   <title><![CDATA[SoftArtisans.SAFile.1 error &#039;80020009&#039; :   is this anything to do with...]]></title>
   <link>https://forums.webwiz.net/softartisans-safile-1-error-80020009_topic4276_post20453.html#20453</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=10501">thedave</a><br /><strong>Subject:</strong> 4276<br /><strong>Posted:</strong> 16&nbsp;July&nbsp;2003 at 6:28am<br /><br />is this anything to do with web wiz forums ?]]>
   </description>
   <pubDate>Wed, 16 Jul 2003 06:28:31 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/softartisans-safile-1-error-80020009_topic4276_post20453.html#20453</guid>
  </item> 
  <item>
   <title><![CDATA[SoftArtisans.SAFile.1 error &#039;80020009&#039; :  What is the path we put in for...]]></title>
   <link>https://forums.webwiz.net/softartisans-safile-1-error-80020009_topic4276_post20446.html#20446</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=11237">webhound</a><br /><strong>Subject:</strong> 4276<br /><strong>Posted:</strong> 15&nbsp;July&nbsp;2003 at 10:44pm<br /><br /><P>&nbsp;</P><P>What is the path we put in for file uploads ??? is it relative to what ??</P><P>Does it matter if the hosting company uses virtual dirs ??</P><P>SoftArtisans.SAFile.1 error '80020009' <BR>&nbsp;Creation of cached file failed. Please check the NTFS permissions for the <BR>&nbsp;directory path "e:\inetpub\svc307\uploadforum". This directory requires Read, <BR>&nbsp;Write and Delete permissions by the anonymous user ( NT account: <BR>&nbsp;IUSR_computername ) as well as for your authenticated users. </P><P>/forum/functions/functions_upload.asp, line 228 </P><P><BR><A href="http://discuss.softartisans.com/cgi-bin/wa.exe?S2=safileup-l&amp;L=SAFILEUP-L&amp;q=error+%2780020009%27&amp;s=&amp;f=&amp;a=&amp;b" target="_blank">http://discuss.softartisans.com/cgi-bin/wa.exe?S2=safileup-l&amp;L=SAFILEUP-L&amp;q=error+%2780020009%27&amp;s=&amp;f=&amp;a=&amp;b</A>=</P><P><BR>&nbsp;</P><span style="font-size:10px"><br /><br />Edited by webhound</span>]]>
   </description>
   <pubDate>Tue, 15 Jul 2003 22:44:58 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/softartisans-safile-1-error-80020009_topic4276_post20446.html#20446</guid>
  </item> 
 </channel>
</rss>