<?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>ProductCart Shopping Cart Software Forums : Downloadable Product File Sizes</title>
  <link>https://forum.productcart.com/</link>
  <description><![CDATA[This is an XML content feed of; ProductCart Shopping Cart Software Forums : Suggestions : Downloadable Product File Sizes]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 11 Apr 2026 08:25:53 +0000</pubDate>
  <lastBuildDate>Fri, 27 Aug 2010 16:23:42 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.productcart.com/RSS_post_feed.asp?TID=3068</WebWizForums:feedURL>
  <image>
   <title><![CDATA[ProductCart Shopping Cart Software Forums]]></title>
   <url>https://forum.productcart.com/forum_images/pc_logo_50.png</url>
   <link>https://forum.productcart.com/</link>
  </image>
  <item>
   <title><![CDATA[Downloadable Product File Sizes : Sorry about the late reply, here&amp;#039;s...]]></title>
   <link>https://forum.productcart.com/downloadable-product-file-sizes_topic3068_post15450.html#15450</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=1695">Benissimo</a><br /><strong>Subject:</strong> 3068<br /><strong>Posted:</strong> 27-August-2010 at 4:23pm<br /><br />Sorry about the late reply, here's how I plugged the code into the script <b>/pc/downloadnow.asp</b>:<br><br>On Line 119, there is this five lines of code:<br><br>' send the headers to the users browser<br>Response.AddHeader "Content-Disposition", "attachment; filename=" &amp; FileName1<br>Response.AddHeader "Content-Length", intFilelength<br>Response.Charset = "UTF-8"<br>Response.ContentType = "application/octet-stream"<br><br>Comment this out and enter this code instead:<br><br>Dim objUpload<br>Set objUpload = Server.CreateObject("Persits.Upload")<br> objUpload.SendBinary strFilename, True, "application/octet-binary", True<br> Set objUpload = Nothing<br><br>That's it and of course, you'll need the ASPUpload component installed on the web server. The component should theoretically cater to any file size you want, in our case the files were around 2GB's and it worked fine. To find out more about this component and how much it costs, go here:<br><br><a href="http://www.aspupload.com/" target="_blank">http://www.aspupload.com/</a><br><br>Cheers<br>]]>
   </description>
   <pubDate>Fri, 27 Aug 2010 16:23:42 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/downloadable-product-file-sizes_topic3068_post15450.html#15450</guid>
  </item> 
  <item>
   <title><![CDATA[Downloadable Product File Sizes : As Kristen requested above, please...]]></title>
   <link>https://forum.productcart.com/downloadable-product-file-sizes_topic3068_post11960.html#11960</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=659">BrianRoden</a><br /><strong>Subject:</strong> 3068<br /><strong>Posted:</strong> 12-November-2009 at 11:23am<br /><br />As Kristen requested above, please post more detail on the modifications to the downloadFile() function. Which lines of downloadnow.asp are you replacing with this code?]]>
   </description>
   <pubDate>Thu, 12 Nov 2009 11:23:50 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/downloadable-product-file-sizes_topic3068_post11960.html#11960</guid>
  </item> 
  <item>
   <title><![CDATA[Downloadable Product File Sizes : We have the same problem with...]]></title>
   <link>https://forum.productcart.com/downloadable-product-file-sizes_topic3068_post11906.html#11906</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=1748">kcramer</a><br /><strong>Subject:</strong> 3068<br /><strong>Posted:</strong> 08-November-2009 at 9:50am<br /><br /><DIV>We have the same problem with the 4MB limitation. 4MB is much too small for the downloadable product we're planning to release later this month.</DIV><DIV>&nbsp;</DIV><DIV>I have one question:</DIV><DIV>&nbsp;</DIV><DIV>Where in the downloadnow.asp file should we add the code mentioned at the beginning of this thread? Our server is running Persit's ASPUpload, so hopefully this solution will solve the problem of the 4MB limitation.</DIV><DIV>&nbsp;</DIV><DIV>I'm not a programmer, but if it's a&nbsp;matter of&nbsp;copying and pasting this code to add it into the file, or using this code to replace some of the code that's already in the file, I can manage that if someone would be kind enough to let me know exactly where to put it.</DIV><DIV>&nbsp;</DIV><DIV>Thanks in advance for any help!</DIV><DIV>&nbsp;</DIV><DIV>~ Kristen</DIV>]]>
   </description>
   <pubDate>Sun, 08 Nov 2009 09:50:16 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/downloadable-product-file-sizes_topic3068_post11906.html#11906</guid>
  </item> 
  <item>
   <title><![CDATA[Downloadable Product File Sizes : Nice tip, Benisimo.  The technical...]]></title>
   <link>https://forum.productcart.com/downloadable-product-file-sizes_topic3068_post11489.html#11489</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 3068<br /><strong>Posted:</strong> 28-September-2009 at 3:50pm<br /><br />Nice tip, Benisimo.<DIV>&nbsp;</DIV><DIV>The technical issue is that without the use of a 3rd party component, IIS can only push 4 MB of data in a single response by default (the IIS metabase can be edited to change that, but that might not be the best idea depending, and is very unlikely to be an option on shared hosting servers).</DIV><DIV>&nbsp;</DIV><DIV>Most folks running PC should probably be on servers running Persist's ASPUpload, so they should be able to make use of this.</DIV>]]>
   </description>
   <pubDate>Mon, 28 Sep 2009 15:50:27 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/downloadable-product-file-sizes_topic3068_post11489.html#11489</guid>
  </item> 
  <item>
   <title><![CDATA[Downloadable Product File Sizes : Nice to hear. Thanks for posting...]]></title>
   <link>https://forum.productcart.com/downloadable-product-file-sizes_topic3068_post11488.html#11488</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=290">Greg Dinger</a><br /><strong>Subject:</strong> 3068<br /><strong>Posted:</strong> 28-September-2009 at 2:35pm<br /><br />Nice to hear.&nbsp; Thanks for posting this.&nbsp; I've bumped up against this issue and appreciate your input. <span style="font-size:10px"><br /><br />Edited by Greg Dinger - 28-September-2009 at 2:36pm</span>]]>
   </description>
   <pubDate>Mon, 28 Sep 2009 14:35:48 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/downloadable-product-file-sizes_topic3068_post11488.html#11488</guid>
  </item> 
  <item>
   <title><![CDATA[Downloadable Product File Sizes : The maximum 4MB &amp;#034;hidden url&amp;#034;...]]></title>
   <link>https://forum.productcart.com/downloadable-product-file-sizes_topic3068_post11487.html#11487</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=1695">Benissimo</a><br /><strong>Subject:</strong> 3068<br /><strong>Posted:</strong> 28-September-2009 at 2:08pm<br /><br />The maximum 4MB "hidden url" option is much too small for us. <br><br>We fortunately have Persit's ASPUpload component onboard that securely downloads large files as a binary stream.&nbsp; Touching up the "downloadFile(strFile)" function in /pc/downloadnow.asp as follows did the trick:<br><br>Dim objUpload<br>Set objUpload = Server.CreateObject("Persits.Upload")<br> objUpload.SendBinary strFilename, True, "application/octet-binary", True<br> Set objUpload = Nothing<br><br>If you had a component check for downloadable products, it would be nice not to be hampered by the 4MB maximum file size limitation without code changes.<br><br>Just a thought.<br><br>Cheers<br>]]>
   </description>
   <pubDate>Mon, 28 Sep 2009 14:08:38 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/downloadable-product-file-sizes_topic3068_post11487.html#11487</guid>
  </item> 
 </channel>
</rss>