<?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 : File Uploads</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 : File Uploads]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 04 Apr 2026 21:46:50 +0000</pubDate>
  <lastBuildDate>Mon, 07 May 2007 01:47:57 +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=22533</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[File Uploads : Use this exempel to check what...]]></title>
   <link>https://forums.webwiz.net/file-uploads_topic22533_post122548.html#122548</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=18795">Acke</a><br /><strong>Subject:</strong> 22533<br /><strong>Posted:</strong> 07&nbsp;May&nbsp;2007 at 1:47am<br /><br />Use this exempel to check what kind of components you have on your server!!! <DIV>&nbsp;</DIV><DIV>This is a simpel code just for checking Email, upload and image components.</DIV><DIV>&nbsp;</DIV><DIV><table width="99%"><tr><td><pre class="BBcode"></DIV><DIV>&lt;html&gt;</DIV><DIV>&nbsp;</DIV><DIV>&lt;head&gt;<BR>&lt;meta http-equiv="Content-Type" content="text/html; charset=windows-1252"&gt;<BR>&lt;title&gt;Ny sida 1&lt;/title&gt;<BR>&lt;/head&gt;</DIV><DIV>&nbsp;</DIV><DIV>&lt;body&gt;</DIV><DIV>&nbsp;</DIV><DIV>With this litle script can you check what kind of component your server has installed.&lt;br&gt;&lt;br&gt;</DIV><DIV>&nbsp;</DIV><DIV>&#091; &lt;a href="check.asp?check=mail_component"&gt;E-mail component&lt;/a&gt; &#093; &amp;nbsp;<BR>&#091; &lt;a href="check.asp?check=upload_component"&gt;Upload component&lt;/a&gt; &#093; &amp;nbsp;<BR>&#091; &lt;a href="check.asp?check=image_component"&gt;Image component&lt;/a&gt; &#093; &amp;nbsp;<BR>&lt;br&gt;&lt;br&gt;<BR>&lt;%<BR>' This will check you e-mail components on your server<BR>IF Request.QueryString("check") = "mail_component" THEN</DIV><DIV>&nbsp;</DIV><DIV>Err.Clear<BR>On error resume next<BR>Set objcdonts = Server.CreateObject("cdonts.session")</DIV><DIV>&nbsp;</DIV><DIV>IF err.number &lt;&gt; 0 then<BR>&nbsp;Response.Write("CDONTS is not installed on this server! &lt;br&gt;")<BR>ELSE<BR>&nbsp;Response.Write("CDONTS is installerad on this server! &lt;br&gt;")<BR>END IF</DIV><DIV>&nbsp;</DIV><DIV>err.clear<BR>on error resume next<BR>Set objjmail = Server.CreateObject("jmail.smtpmail")</DIV><DIV>&nbsp;</DIV><DIV>IF err.number &lt;&gt; 0 then<BR>&nbsp;Response.Write("JMAIL is not installed on this server! &lt;br&gt;")<BR>ELSE<BR>&nbsp;Response.Write("JMAILis installerad on this server! &lt;br&gt;")<BR>END IF</DIV><DIV>&nbsp;</DIV><DIV>err.clear<BR>on error resume next<BR>Set objaspmail = Server.CreateObject("smtpsvg.mailer")</DIV><DIV>&nbsp;</DIV><DIV>IF err.number &lt;&gt; 0 then<BR>&nbsp;Response.Write("ASPMAIL is not installed on this server! &lt;br&gt;")<BR>ELSE<BR>&nbsp;response.write("ASPMAIL is installerad on this server! &lt;br&gt;")<BR>END IF</DIV><DIV>&nbsp;</DIV><DIV>err.clear<BR>on error resume next<BR>Set objaspemail = Server.CreateObject("persits.mailsender")</DIV><DIV>&nbsp;</DIV><DIV>IF err.number &lt;&gt; 0 then<BR>&nbsp;Response.Write("Persits ASPEMAIL is not installed on this server! &lt;br&gt;")<BR>ELSE<BR>&nbsp;Response.Write("Persits ASPEMAIL is installerad on this server! &lt;br&gt;")<BR>END IF</DIV><DIV>&nbsp;</DIV><DIV>err.clear<BR>on error resume next<BR>Set objbamboo = Server.CreateObject("bamboo.smtp")</DIV><DIV>&nbsp;</DIV><DIV>IF err.number &lt;&gt; 0 then<BR>&nbsp;Response.Write("Bamboo is not installed on this server! &lt;br&gt;")<BR>ELSE<BR>&nbsp;Response.Write("Bamboo is installerad on this server! &lt;br&gt;")<BR>END IF</DIV><DIV>&nbsp;</DIV><DIV>err.clear<BR>on error resume next<BR>Set objbamboo = Server.CreateObject("SMTPsvg.Mailer")</DIV><DIV>&nbsp;</DIV><DIV>IF err.number &lt;&gt; 0 then<BR>&nbsp;Response.Write("SMTPsvg is not installed on this server! &lt;br&gt;")<BR>ELSE<BR>&nbsp;Response.Write("SMTPsvg is installerad on this server! &lt;br&gt;")<BR>END IF<BR>SMTPsvg.Mailer<BR>END IF</DIV><DIV>&nbsp;</DIV><DIV>' Check your Upload componets on your server<BR>IF Request.QueryString("check") = "upload_component" THEN</DIV><DIV>&nbsp;</DIV><DIV>Err.Clear<BR>On error resume next<BR>Set objFileUp = Server.CreateObject("SoftArtisans.FileUp")</DIV><DIV>&nbsp;</DIV><DIV>IF err.number &lt;&gt; 0 then<BR>&nbsp;Response.Write("SoftArtisans FileUpload is not installed on this server! &lt;br&gt;")<BR>ELSE<BR>&nbsp;Response.Write("SoftArtisans FileUpload is installerad on this server! &lt;br&gt;")<BR>END IF</DIV><DIV>&nbsp;</DIV><DIV>Err.Clear<BR>On error resume next<BR>Set objaspsmartUpload = Server.CreateObject("aspSmartUpload.SmartUpload")</DIV><DIV>&nbsp;</DIV><DIV>IF err.number &lt;&gt; 0 then<BR>&nbsp;Response.Write("SmartUpload is not installed on this server! &lt;br&gt;")<BR>ELSE<BR>&nbsp;Response.Write("aspSmartUpload SmartUpload is installerad on this server! &lt;br&gt;")<BR>END IF</DIV><DIV>&nbsp;</DIV><DIV>Err.Clear<BR>On error resume next<BR>Set objPersitUpload = Server.CreateObject("Persits.Upload")</DIV><DIV>&nbsp;</DIV><DIV>IF err.number &lt;&gt; 0 then<BR>&nbsp;Response.Write("Persits Upload is not installed on this server! &lt;br&gt;")<BR>ELSE<BR>&nbsp;Response.Write("Persits Upload is installerad on this server! &lt;br&gt;")<BR>END IF</DIV><DIV>&nbsp;</DIV><DIV>Err.Clear<BR>On error resume next<BR>Set objw3Upload = Server.CreateObject("w3.upload")</DIV><DIV>&nbsp;</DIV><DIV>IF err.number &lt;&gt; 0 then<BR>&nbsp;Response.Write("w3 upload is not installed on this server! &lt;br&gt;")<BR>ELSE<BR>&nbsp;Response.Write("w3 upload is installerad on this server! &lt;br&gt;")<BR>END IF</DIV><DIV>&nbsp;</DIV><DIV>END IF</DIV><DIV>&nbsp;</DIV><DIV>' Check your image components on your server<BR>IF Request.QueryString("check") = "image_component" THEN</DIV><DIV>&nbsp;</DIV><DIV>Err.Clear<BR>On error resume next<BR>Set objPersitJPEG = Server.CreateObject("Persits.Jpeg")</DIV><DIV>&nbsp;</DIV><DIV>IF err.number &lt;&gt; 0 then<BR>&nbsp;Response.Write("Persits Jpeg is not installed on this server! &lt;br&gt;")<BR>ELSE<BR>&nbsp;Response.Write("Persits Jpeg is installerad on this server! &lt;br&gt;")<BR>END IF</DIV><DIV>&nbsp;</DIV><DIV>Err.Clear<BR>On error resume next<BR>Set objAspSmartImage = Server.CreateObject("aspSmartImage.SmartImage")</DIV><DIV>&nbsp;</DIV><DIV>IF err.number &lt;&gt; 0 then<BR>&nbsp;Response.Write("aspSmartImage is not installed on this server! &lt;br&gt;")<BR>ELSE<BR>&nbsp;Response.Write("aspSmartImage is installerad on this server! &lt;br&gt;")<BR>END IF</DIV><DIV>&nbsp;</DIV><DIV>Err.Clear<BR>On error resume next<BR>Set objAspSmartImage = Server.CreateObject("AspImage.Image")</DIV><DIV>&nbsp;</DIV><DIV>IF err.number &lt;&gt; 0 then<BR>&nbsp;Response.Write("AspImage is not installed on this server! &lt;br&gt;")<BR>ELSE<BR>&nbsp;Response.Write("AspImage is installerad on this server! &lt;br&gt;")<BR>END IF</DIV><DIV>&nbsp;</DIV><DIV>END IF<BR>%&gt;<BR>&lt;/body&gt;<BR>&lt;/html&gt;<BR></pre></td></tr></table></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 07 May 2007 01:47:57 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/file-uploads_topic22533_post122548.html#122548</guid>
  </item> 
  <item>
   <title><![CDATA[File Uploads : I don&amp;#039;t have access to the...]]></title>
   <link>https://forums.webwiz.net/file-uploads_topic22533_post120328.html#120328</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=10197">javi712</a><br /><strong>Subject:</strong> 22533<br /><strong>Posted:</strong> 07&nbsp;February&nbsp;2007 at 3:46pm<br /><br />I don't have access to the server itself as my site is hosted by a hosting company. I'll try a different upload component also and see what happens.<br /><br />Would be nice to know though what is causing the problem. Takes the guessing game away.]]>
   </description>
   <pubDate>Wed, 07 Feb 2007 15:46:38 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/file-uploads_topic22533_post120328.html#120328</guid>
  </item> 
  <item>
   <title><![CDATA[File Uploads : I have been unable to find the...]]></title>
   <link>https://forums.webwiz.net/file-uploads_topic22533_post120309.html#120309</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=25020">kcuk</a><br /><strong>Subject:</strong> 22533<br /><strong>Posted:</strong> 07&nbsp;February&nbsp;2007 at 7:13am<br /><br />I have been unable to find the problem however iireset from dos prompt seemed to resolve the problem for me, if you are a fortunate enough to have access to the sites server. Users havent reported this to me any more so presume it has stopped for now. Will probably move to dundas if this problem doesnt go away.]]>
   </description>
   <pubDate>Wed, 07 Feb 2007 07:13:00 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/file-uploads_topic22533_post120309.html#120309</guid>
  </item> 
  <item>
   <title><![CDATA[File Uploads : kcuk - were you able to resolve...]]></title>
   <link>https://forums.webwiz.net/file-uploads_topic22533_post120304.html#120304</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=10197">javi712</a><br /><strong>Subject:</strong> 22533<br /><strong>Posted:</strong> 07&nbsp;February&nbsp;2007 at 1:22am<br /><br />kcuk - were you able to resolve this? I'm getting the same error from some of my members. I've tried to recreate the problem, but I don't run into any errors when uploading... only certain members do.]]>
   </description>
   <pubDate>Wed, 07 Feb 2007 01:22:23 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/file-uploads_topic22533_post120304.html#120304</guid>
  </item> 
  <item>
   <title><![CDATA[File Uploads : Ok odd one guys and gals....User...]]></title>
   <link>https://forums.webwiz.net/file-uploads_topic22533_post119889.html#119889</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=25020">kcuk</a><br /><strong>Subject:</strong> 22533<br /><strong>Posted:</strong> 27&nbsp;January&nbsp;2007 at 8:51am<br /><br />Ok odd one guys and gals....<br><br>User uploads to forum File 1 great but gets to do file 2 and then gets following error<br><br><p><font face="Arial" size="2">Request object</font> <font face="Arial" size="2">error 'ASP 0104 : 80004005'</font></p><p><font face="Arial" size="2">Operation not Allowed</font></p><p><font face="Arial" size="2">/forum/functions/functions_upload.asp</font><font face="Arial" size="2">, line 351</font></p><p>Using SmartASPupload it cant be permissions cos they uploaded first file fine???</p><p></p>Anyone shed some light on the matter or is it worth using a different upload functions like dundas?<br>]]>
   </description>
   <pubDate>Sat, 27 Jan 2007 08:51:25 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/file-uploads_topic22533_post119889.html#119889</guid>
  </item> 
 </channel>
</rss>