<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sizable Send Help</title>
	<atom:link href="http://help.sizablesend.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://help.sizablesend.com</link>
	<description></description>
	<lastBuildDate>Thu, 16 Feb 2012 17:46:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using Our File Upload Infrastructure with Your File Upload Script</title>
		<link>http://help.sizablesend.com/using-our-file-upload-infrastructure-with-your-file-upload-script/</link>
		<comments>http://help.sizablesend.com/using-our-file-upload-infrastructure-with-your-file-upload-script/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 03:01:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Instructions]]></category>
		<category><![CDATA[Embed]]></category>
		<category><![CDATA[File Upload]]></category>
		<category><![CDATA[File Upload Script]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Sending Large Files]]></category>

		<guid isPermaLink="false">http://help.sizablesend.com/?p=282</guid>
		<description><![CDATA[It is a little known fact that you can write your own file upload scripts that then can freely utilize the file upload infrastructure of Sizable Send. YES, that's right! You can have your own file upload script that uses our high speed servers to store and manage your files. And like virtually every other service that we offer, it's 100% free to use!]]></description>
			<content:encoded><![CDATA[<p>It is a little known fact that you can write your own file upload scripts that then can freely utilize the file upload infrastructure of Sizable Send. YES, that’s right! You can have your own file upload script that uses our high speed servers to store and manage your files. And like virtually every other service that we offer, it’s 100% free to use!</p>
<h3>Common reasons to use Sizable Send File Upload infrastructure for your upload script:</h3>
<ul>
<li><strong>Blazing fast speed</strong> &#8211; Take advantage of our high speed servers;  your uploads and downloads will be lightning fast!</li>
<li><strong>Reliability</strong> – We have servers all over the globe, and all file uploads are hosted on the cloud. Making sure that our upload infrastructure is always available to handle your uploads.</li>
<li><strong>Simplicity </strong>– Don’t want to worry about setting up and managing upload/download servers? Don’t want to worry about the HUGE costs associated with the bandwidth and disk space necessitated in uploading and storing large files? Use our infrastructure! After all, it&#8217;s free… Let us foot the costs and the headache for you.</li>
<li><strong>Integration speed</strong> – By utilizing our file upload infrastructure you can literally add a couple of lines of code to your website and immediately be uploading and sharing large files. Your customers, clients and friends will be able to send you an unlimited amount of files up to 2GB each and it’s all free!</li>
</ul>
<h3>How to use Sizable Send infrastructure to send and share large files:</h3>
<ol>
<li>Create a standard POST file upload script.
<ul>
<li>You do this by creating a standard HTML form and adding an input attribute of “file”. You can do this in any programming language. An example is provided later in this article.</li>
</ul>
</li>
<li>Point the “Action” of the HTML form to our servers:
<ul>
<li>If the file is between 0MB and 480MB in size make the “Action” of the form point to “http://www.sizablesend.com/scripts/upload.php”.</li>
<li>If the file is between 481MB and 2000MB in size make the “Action” of the form point to “http://largefiles.sizablesend.com/scripts/upload.php”.</li>
</ul>
</li>
<li>Make sure that your upload form has the required form attributes listed as “required” in Table 1A below.</li>
<li>That’s it!!!</li>
</ol>
<h3>Table 1A – File uploader attributes:</h3>
<table border="1" cellspacing="5" cellpadding="5">
<tbody>
<tr>
<td><strong>Parameter</strong></td>
<td width="25"></td>
<td><strong>Description</strong></td>
<td width="25"></td>
<td><strong>Sample Value</strong></td>
<td width="25"></td>
<td><strong>Required</strong></td>
</tr>
<tr>
<td>sess_id</td>
<td></td>
<td>A randomly generated session ID, you can generate this value at   <a href="http://api.sizablesend.com/v1/GenerateSessionID/">http://api.sizablesend.com/v1/GenerateSessionID/</a>.</td>
<td></td>
<td>6j5bkhg4tf7on6qb0qm5f5bao3</td>
<td></td>
<td>Yes</td>
</tr>
<tr>
<td>U</td>
<td></td>
<td>The name of the file uploader. DO NOT change this value, set a &#8220;hidden&#8221; form variable of ID &#8220;U&#8221; with value of &#8220;Remote&#8221;.</td>
<td></td>
<td>Remote</td>
<td></td>
<td>Yes</td>
</tr>
<tr>
<td>CBV</td>
<td></td>
<td>The end users web browser type and version.</td>
<td></td>
<td>Chrome 7.0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>CBOS</td>
<td></td>
<td>The end users operating system type and version.</td>
<td></td>
<td>Win7</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>SenderEmail</td>
<td></td>
<td>The email address of the sender of the file(s).</td>
<td></td>
<td>Email@Domain.com</td>
<td></td>
<td>Yes</td>
</tr>
<tr>
<td>RecipientEmail</td>
<td></td>
<td>The email address of the recipient of the file(s).</td>
<td></td>
<td>Email@Domain.com</td>
<td></td>
<td>Yes</td>
</tr>
<tr>
<td>RecipientEmail2</td>
<td></td>
<td>An optional email address for an additional recipient of the file(s).</td>
<td></td>
<td>Email@Domain.com</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>RecipientEmail3</td>
<td></td>
<td>An optional email address for an additional recipient of the file(s).</td>
<td></td>
<td>Email@Domain.com</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>RecipientEmail4</td>
<td></td>
<td>An optional email address for an additional recipient of the file(s).</td>
<td></td>
<td>Email@Domain.com</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>RecipientEmail5</td>
<td></td>
<td>An optional email address for an additional recipient of the file(s).</td>
<td></td>
<td>Email@Domain.com</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>SenderMessage</td>
<td></td>
<td>A custom message to be included in the file download notification email.</td>
<td></td>
<td>This is a message</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>EmailMeACopy</td>
<td></td>
<td>A boolean variable that determines if the sender of the file(s) is ALSO sent a file download notification email. This email is sent in addition to the email sent to the recipient of the file(s). Basically it&#8217;s like a confirmation email letting the sender of the file(s) know they were send successfully.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>EmailMeDLConfs</td>
<td></td>
<td>A boolean variable that determines if the sender of the file(s) is sent an email each time their file(s) are downloaded.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>AutoDeleteUpload</td>
<td></td>
<td>A boolean variable that determines if the file is automatically deleted after it is downloaded once.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>Password</td>
<td></td>
<td>A text string that is a password to protect the file.</td>
<td></td>
<td>password1</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>PasswordProtectUpload</td>
<td></td>
<td>A boolean variable that determines if the sent file(s) are password protected.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>IncludePasswordInEmail</td>
<td></td>
<td>A boolean variable that determines if the set password is also included in the file download notification email sent to the recipient of the file(s).</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeTwitterMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to post the file to Twitter with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeFacebookMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to post the file to Facebook with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeLinkedInMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to post the file to LinkedIn with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeDeliciousMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to bookmark the file to Delicious with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeStumbleUponMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to post the file to Stumble Upon with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeBloggerMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to post the file to Blogger with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeWordPressMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to post the file to WordPress with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeYahooMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to bookmark the file to Yahoo with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeGoogleMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to bookmark the file to Google with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
</tbody>
</table>
<h3>Sample file upload form:</h3>
<pre class="code">&lt;form id="uploader" name="uploader" method="post" action="http://www.sizablesend.com/scripts/upload.php"&gt;
&lt;input name="sess_id" id="sess_id" type="hidden" value="{You need to generate this dynamically at http://api.sizablesend.com/v1/GenerateSessionID/}" /&gt;
&lt;input name="U" id="U" type="hidden" value="Remote" /&gt;
&lt;input name="SenderEmail" id="SenderEmail" type="text" /&gt;
&lt;input name="RecipientEmail" id="RecipientEmail" type="text" /&gt;
&lt;input name="Files" id="Files" type="file" /&gt;
&lt;input name="Submit" type="submit" value="Submit" /&gt;
&lt;/form&gt;</pre>
<h3>Sample file upload script return:</h3>
<p>By default the upload script will return two values, a short link and a standard link, both will link to the file download page. Below is an example of what is returned after a file is successfully uploaded:</p>
<pre class="code">http://twelio.com/oodwm3&lt;||&lt;&gt;||&gt;https://www.sizablesend.com/file/wiyjrp/nevis.ttf&lt;||&lt;&gt;||&gt;</pre>
<p>You&#8217;ll notice that the links are separated by the characters &#8220;&lt;||&lt;&gt;||&gt;&#8221; &#8211; this is done to differentiate between the two returned values. They are included solely to help differentiate between multiple returned values. You&#8217;ll also notice that the download links are returned in a certain order. They will always be returned in the following format: Short download link&lt;||&lt;&gt;||&gt;Regular download link&lt;||&lt;&gt;||&gt;Additional values, such as Twitter and Facebook sharing links, an example of this is below:</p>
<pre class="code">http://twelio.com/kxyuig&lt;||&lt;&gt;||&gt;https://www.sizablesend.com/file/p34nrd/nevis.ttf&lt;||&lt;&gt;||&gt;&lt;tr&gt;&lt;td&gt;&lt;div id="posttotwitter"&gt;Post to Twitter:&lt;/div&gt;&lt;/td&gt;&lt;td&gt;&lt;a onclick="_gaq.push(['_trackEvent', 'File Syndicated', 'Twitter Syndication Click']);" target="_blank" href="http://www.addthis.com/bookmark.php?v=250&amp;winname=addthis&amp;pub=streamlinedfusion&amp;lng=en-US&amp;s=twitter&amp;url=https://www.sizablesend.com/file/p34nrd/nevis.ttf&amp;title=SizableSend.com Free File Download - Filename: nevis.ttf (0.01 MB)"&gt;Click here&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;div id="posttofacebook"&gt;Post to Facebook:&lt;/div&gt;&lt;/td&gt;&lt;td&gt;&lt;a onclick='_gaq.push(['_trackEvent', 'File Syndicated', 'Facebook Syndication Click']);" target="_blank" href="http://www.addthis.com/bookmark.php?v=250&amp;winname=addthis&amp;pub=streamlinedfusion&amp;lng=en-US&amp;s=facebook&amp;url=https://www.sizablesend.com/file/p34nrd/nevis.ttf&amp;title=SizableSend.com Free File Download - Filename: nevis.ttf (0.01 MB)"&gt;Click here&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;div id="posttostumbleupon"&gt;Post to Stumble Upon:&lt;/div&gt;&lt;/td&gt;&lt;td&gt;&lt;a onclick='_gaq.push(['_trackEvent', 'File Syndicated', 'Stumble Upon Syndication Click']);" target="_blank" href="http://www.addthis.com/bookmark.php?v=250&amp;winname=addthis&amp;pub=streamlinedfusion&amp;lng=en-US&amp;s=stumbleupon&amp;url=https://www.sizablesend.com/file/p34nrd/nevis.ttf&amp;title=SizableSend.com Free File Download - Filename: nevis.ttf (0.01 MB)"&gt;Click here&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;</pre>
<p>You&#8217;ll notice that the social sharing links are formatted in HTML table tags, this is done only to help with presentation, you can ignore these HTML tags.</p>
]]></content:encoded>
			<wfw:commentRss>http://help.sizablesend.com/using-our-file-upload-infrastructure-with-your-file-upload-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding a File Uploader to Your Website</title>
		<link>http://help.sizablesend.com/adding-a-file-uploader-to-your-website/</link>
		<comments>http://help.sizablesend.com/adding-a-file-uploader-to-your-website/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 23:36:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Instructions]]></category>
		<category><![CDATA[Embed]]></category>
		<category><![CDATA[File Upload]]></category>
		<category><![CDATA[File Upload Script]]></category>
		<category><![CDATA[File Uploader]]></category>
		<category><![CDATA[iFrame]]></category>

		<guid isPermaLink="false">http://help.sizablesend.com/?p=266</guid>
		<description><![CDATA[Sizable Send now allows you to embed our custom file uploader onto your website! And like virtually every other file upload service we offer, it's 100% free to use.
To use our custom file uploader on your website simply copy and paste the following code into your webpage source code:]]></description>
			<content:encoded><![CDATA[<p>Sizable Send now allows you to embed our <strong>custom file uploader</strong> onto your website! And like virtually every other file upload service we offer, it&#8217;s 100% free to use.</p>
<p>To use our custom file uploader on your website simply copy and paste the following code into your webpage source code:</p>
<pre class="code">&lt;iframe src="http://embed.sizablesend.com/iframe/v1/" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:700px; height:500px;" allowTransparency="true"&gt;&lt;/iframe&gt;</pre>
<p>This code will embed our unformatted file upload module. What do we mean by &#8220;Unformatted&#8221;? Basically the file uploader is bare bones with no fancy CSS stylings.</p>
<p>If you want to customize your file uploader with a custom CSS style sheet you will want to change the code to look something like this:</p>
<pre class="code">&lt;iframe src="http://embed.sizablesend.com/iframe/v1/?CustomCSS=http://www.MyDomain.com/CustomUploaderStyle.css" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:700px; height:500px;" allowTransparency="true"&gt;&lt;/iframe&gt;</pre>
<p>With the <strong>CustomCSS</strong> query string parameter you can specify any stylesheet you want; do note however that this custom stylesheet will override ALL other styles of the file uploader. This allows you to fully customize the look and feel of the embedded file uploader.</p>
<p>You can also specify the Sender Email Address and/or the Recipient Email Address &#8211; thus not allowing the end user to choose. If the querystring parameters <strong>SenderEmail</strong> and/or <strong>RecipientEmail</strong> are specified, their corresponding input boxes will NOT appear, example:</p>
<pre class="code">&lt;iframe src="http://embed.sizablesend.com/iframe/v1/?CustomCSS=http://www.MyDomain.com/CustomUploaderStyle.css&amp;RecipientEmail=customer.relations@sfusion.com&amp;SenderEmail=customer.relations@sfusion.com" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:700px; height:500px;" allowTransparency="true"&gt;&lt;/iframe&gt;</pre>
<p>Below is a summary of the query string parameters you can customize:</p>
<table border="1" cellspacing="4" cellpadding="4">
<tbody>
<tr>
<td><strong>Parameter</strong></td>
<td></td>
<td><strong>Description</strong></td>
<td></td>
<td><strong>Sample Value</strong></td>
<td></td>
<td><strong>Required</strong></td>
</tr>
<tr>
<td>CustomCSS</td>
<td></td>
<td>This will import a custom CSS stylesheet that will overide the default styles of your file uploader.</td>
<td></td>
<td>http://Domain.com/CSS.css</td>
<td align="center"></td>
<td align="center">Optional</td>
</tr>
<tr>
<td>SenderEmail</td>
<td></td>
<td>This will specify the email address the Download Notification Email comes from. If specified the default box for a user to enter in the Sender Email Address will be hidden.</td>
<td></td>
<td>Email@Domain.com</td>
<td align="center"></td>
<td align="center">Optional</td>
</tr>
<tr>
<td>RecipientEmail</td>
<td></td>
<td>This will specify who the Download Notification Email is sent to. If specified the default box for a user to enter in the Recipient Email Address will be hidden.</td>
<td></td>
<td>Email@Domain.com</td>
<td align="center"></td>
<td align="center">Optional</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://help.sizablesend.com/adding-a-file-uploader-to-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sizable Send Error: I/O Error</title>
		<link>http://help.sizablesend.com/sizable-send-io-error/</link>
		<comments>http://help.sizablesend.com/sizable-send-io-error/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 03:51:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Error Messages]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Freeze]]></category>
		<category><![CDATA[I/O Error]]></category>
		<category><![CDATA[Internet Connection]]></category>
		<category><![CDATA[Large Files]]></category>
		<category><![CDATA[Upload Fails]]></category>

		<guid isPermaLink="false">http://help.sizablesend.com/?p=255</guid>
		<description><![CDATA[An "I/O Error" can occur when your internet connection mementarily goes out, your computer is too overloaded/busy, your web browser stops responding or too many packet errors happen during file upload. To stop the error: Try the following one at a time in order. Try the file upload again, restart your web browser, restart your computer, restart your router/modem. For more detailed explanations of the latter continue reading.]]></description>
			<content:encoded><![CDATA[<p>Because of the recent advancements in the reliability of high speed internet connections and computer operating systems this error will rarely occur. Nonetheless it sometimes will, especially when <strong><a href="http://www.sizablesend.com/">uploading large files</a></strong> (files larger than 250MBs); although the reasons for it occuring can vary no matter the size of file. Let us explain:</p>
<div class="help"><strong>In short, WHY does the error occur</strong>: An &#8220;I/O Error&#8221; can occur when your internet connection mementarily goes out, your computer is too overloaded/busy, your web browser stops responding or too many packet errors happen during file upload.
</div>
<div class="success"><strong>In short, to STOP the error</strong>: Try the following one at a time in order. Try the file upload again, restart your web browser, restart your computer, restart your router/modem. More detailed explanations of the latter are listed below. If nothing works <a href="#comment">post a comment</a> below and we will contact you directly to help further.</div>
<p>Continue reading for a more detailed explanation of the &#8220;I/O Error&#8221;:</p>
<h2>WHAT is an &#8220;I/O Error&#8221; error?</h2>
<ul>
<li> An I/O Error, commonly referred to as an &#8220;In/Out Error&#8221; is an error that occurs when there is a problem <em>writing</em>(the &#8220;In&#8221; part of the error) or <em>reading</em>(the &#8220;Out&#8221; part of the error). <em>Writing</em> happens as we save the uploaded file data to our servers and <em>Reading</em> happens as we continually and progressively read the uploaded file data on our servers comparing it against the saved file on your computer; essentially making sure the version on our servers matches the version on your computer.</li>
<li>It can transpire when you are uploading files to our servers and a &#8220;glitch&#8221; with the file upload process occurs. Continue reading for what we consider a &#8220;glitch&#8221;.</li>
</ul>
<h2>WHY does an &#8220;I/O Error&#8221; occur?</h2>
<ul>
<li>The error (&#8220;glitch&#8221;) will occur when the file upload process is inturupped.  (see below for a analogy; highlighted in a yellow box)</li>
<li>The following are possible reasons a file upload could become interrupted:
<ul>
<li><strong>Your internet connections goes out</strong> &#8211; This is the most common reason an I/O Error occurs; it is also the hardest issue to troubleshoot since often when your internet connections goes out you will never know it because it only goes out for a split second. When the &#8220;connection is dropped&#8221; even if for a split second, this is enough to corrupt the file upload and will require you to start the large file upload over. Luckily this, while the most common reason for the &#8220;I/O Error&#8221;, is itself something that doesn&#8217;t often occur.</li>
<li><strong>Your web browser stops responding</strong> &#8211; This usually happens in Windows, especially on old or spyware/virus infected computers. When a browser stops responding, even for a split second, it will cause the file upload to fail.</li>
<li><strong>Your computer freezes</strong> &#8211; Again, even if this happens for a brief moment it will cause the file upload to fail.</li>
<li><strong>Your file is corrupted</strong> &#8211; A file that has a virus, is infected with spyware/ad-ware or is corrupted in general will cause an I/O Error. Sizable Send will not accept corrupted files of any type as a safety measure for our end users downloading the files.</li>
<li><strong>You have too many &#8220;packet errors&#8221;</strong> &#8211; Every file, small or large, is split into millions/billions of &#8220;data packets&#8221; when it&#8217;s uploaded to our <a href="http://blog.sizablesend.com/blazing-fast-file-uploads-and-downloads/">high speed file download</a> servers. Although our system is designed to cope with multiple packet errors during file upload, too many errors will cause the upload to fail. Some reasons for packet errors occurring are:
<ul>
<li>High network congestion &#8211; basically if you have tons of people/devices on a network and are everyone is doing a lot at once, packet errors can occur.</li>
<li>Old routers or networking equipment &#8211; Think of routers/switches/networking equipment as the traffic director on a very busy 4-way traffic interection. If that intersection is very very busy and that traffic director can&#8217;t cope with the load there are bound to be accidents. Older networking equipment often can&#8217;t cope with high load or &#8220;traffic&#8221; and this can cause packet errors or &#8220;accidents&#8221; to occur.</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="tip">
<h5>Here is an analogy for why an I/O Error happens:</h5>
<p>Pretend you&#8217;re at the bank and giving the teller money to deposit, counting each bill one by one to the teller. Suddendy imaging the teller that you are counting your money too gets up and walks away and a new teller sits down. Are you going to keep counting out your money to this new teller who has no idea over what has already been counted? NO! You are going to start over and start counting again. This is similar to why an I/O Error occurs in that the &#8220;money&#8221; is equivalent to the &#8220;file&#8221; and the &#8220;teller&#8221; is equivalent to our &#8220;servers&#8221; and &#8220;starting to count from beginning&#8221; is equivilant to &#8220;starting the file upload over&#8221;, we throw the I/O Error basically letting you know that something went wrong and you need to start the <a href="http://www.sizablesend.com/file-upload/send-huge-files/">file upload</a> over again.</p>
</div>
<h4>Why does an &#8220;I/O Error&#8221; usually occur with larger files?</h4>
<ul>
<li><strong>Uploading large files</strong> simply takes longer than uploading small files and therefore there is a higher probability of an I/O Error occurring.</li>
</ul>
<h2>HOW can I avoid/stop an &#8220;I/O Error&#8221;?</h2>
<ul>
<li>Remember, the I/O Error rarely occurs to in the first place, so 99.999% of the time simply trying to upload the file again is all that needs be done. If that doesn&#8217;t work try the following one at a time in order:
<ol>
<li>Restart your web browser and try uploading the file again.</li>
<li>Restart your computer and try uploading the file again</li>
<li>Restart your router/modem/networking equipment and try the file upload again. NOTE: if you have multiple devices, unplug them all then plug them back in in the following order: Your modem, router, switches, anything else. Make sure to let each item fully boot up before you power up the next device. If you dont know whether a device is fully booted up or not, just wait 2 minutes for each device before mo.</li>
</ol>
</li>
</ul>
<p><a href="#comment">Post a comment</a> below if none of these suggestions fix the issue and we will contact you directly to help you further.</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://help.sizablesend.com/sizable-send-io-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Branded File Uploader &#8211; Custom Email Notifications</title>
		<link>http://help.sizablesend.com/custom-branded-file-uploader-custom-email-notifications/</link>
		<comments>http://help.sizablesend.com/custom-branded-file-uploader-custom-email-notifications/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 15:24:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Branded Uploader]]></category>
		<category><![CDATA[Common Questions]]></category>
		<category><![CDATA[Branded File Uploader]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Options]]></category>
		<category><![CDATA[SMTP]]></category>

		<guid isPermaLink="false">http://help.sizablesend.com/?p=251</guid>
		<description><![CDATA[After you choose a custom branded file uploader from one of our many templates, you will be presented with a list of customization options. One of those options is to customize the email address that file upload notifications come from. By default the file upload notifications come from DoNotReply@SizableSend.com, however if you would rather emails come [...]]]></description>
			<content:encoded><![CDATA[<p>After you choose a <a href="http://www.sizablesend.com/custom-branded-uploaders/">custom branded file uploader</a> from one of our many <a href="http://www.sizablesend.com/features/custom-branding/templates/">templates</a>, you will be presented with a list of <a href="http://www.sizablesend.com/features/custom-branding/options/">customization options</a>. One of those options is to customize the email address that file upload notifications come from.</p>
<p>By default the file upload notifications come from <a href="mailto:DoNotReply@SizableSend.com">DoNotReply@SizableSend.com</a>, however if you would rather emails come from something like <a href="mailto:YourEmail@YourCompanyName.com">YourEmail@YourCompanyName.com</a> that can be arranged depending on the <a href="http://www.sizablesend.com/features/custom-branding/packages/">custom file upoader package</a> you select.</p>
<p>To do this we will need your SMTP server connection details and account credentials.</p>
<h3>What SMTP information do we need?</h3>
<ul>
<li>A username, e.g. <a href="mailto:DoNotReply@SizableSend.com">DoNotReply@SizableSend.com</a> (the username is usually the email address)</li>
<li>A password, e.g. 1234</li>
<li>The SMTP server, e.g. SMTP.ServerName.com</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://help.sizablesend.com/custom-branded-file-uploader-custom-email-notifications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Do I Enable JavaScript in My Browser</title>
		<link>http://help.sizablesend.com/how-do-i-enable-javascript-in-my-browser/</link>
		<comments>http://help.sizablesend.com/how-do-i-enable-javascript-in-my-browser/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 04:55:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Uploading]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Minimum Requirements]]></category>
		<category><![CDATA[Netscape Navigator]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://help.sizablesend.com/?p=212</guid>
		<description><![CDATA[SizableSend.com requires you to have JavaScript enabled for the file uploader to work. Below are instructions on how to do this in the most common browsers: Internet Explorer (6.0) Select &#8216;Tools&#8217; from the top menu Choose &#8216;Internet Options&#8217; Click on the &#8216;Security&#8217; tab Click on &#8216;Custom Level&#8217; Scroll down until you see section labled &#8216;Scripting&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>SizableSend.com <a href="/sizable-send-minimum-requirements/">requires</a> you to have JavaScript enabled for the file uploader to work. Below are instructions on how to do this in the most common browsers:</p>
<p><strong>Internet Explorer (6.0)</strong><br />
<img src="http://help.sizablesend.com/wp-content/uploads/2010/09/IE_java_script_enabled.gif" alt="javascript not enabled" title="IE_java_script_enabled" width="353" height="402" class="alignright size-full wp-image-225" /></p>
<ol>
<li>Select &#8216;Tools&#8217; from the top menu</li>
<li>Choose &#8216;Internet Options&#8217;</li>
<li>Click on the &#8216;Security&#8217; tab</li>
<li>Click on &#8216;Custom Level&#8217;</li>
<li>Scroll down until you see section labled &#8216;Scripting&#8217;</li>
<li>Under &#8216;Active Scripting&#8217;, select &#8216;Enable&#8217; and click OK</li>
</ol>
<p><strong>Netscape Navigator (4.8)</strong></p>
<ol>
<li>Select &#8216;Edit&#8217; from the top menu</li>
<li>Choose &#8216;Preferences&#8217;</li>
<li>Choose &#8216;Advanced&#8217;</li>
<li>Choose &#8216;Scripts &amp; Plugins&#8217;</li>
<li>Select the &#8216;Enable JavaScript&#8217; checkbox and click OK</li>
</ol>
<p><strong>Mozilla Firefox (1.0)</strong></p>
<ol>
<li>Select &#8216;Tools&#8217; from the top menu</li>
<li>Choose &#8216;Options&#8217;</li>
<li>Choose &#8216;Web Features&#8217; from the left navigation</li>
<li>Select the checkbox next to &#8216;Enable JavaScript&#8217; and click OK</li>
</ol>
<p><strong>Mozilla Firefox (1.5)</strong></p>
<ol>
<li>Select &#8216;Tools&#8217; from the top menu</li>
<li>Choose &#8216;Options&#8217;</li>
<li>Choose &#8216;Content&#8217; from the top navigation</li>
<li>Select the checkbox next to &#8216;Enable JavaScript&#8217; and click OK</li>
</ol>
<p><strong>Apple Safari (1.0)</strong></p>
<ol>
<li>Select &#8216;Safari&#8217; from the top menu</li>
<li>Choose &#8216;Preferences&#8217;</li>
<li>Choose &#8216;Security&#8217;</li>
<li>Select the checkbox next to &#8216;Enable JavaScript&#8217;</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://help.sizablesend.com/how-do-i-enable-javascript-in-my-browser/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Common Uploading Errors</title>
		<link>http://help.sizablesend.com/common-uploading-errors/</link>
		<comments>http://help.sizablesend.com/common-uploading-errors/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 04:23:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uploading]]></category>
		<category><![CDATA[Minimum Requirements]]></category>

		<guid isPermaLink="false">http://help.sizablesend.com/?p=93</guid>
		<description><![CDATA[99.999% of the time you won&#8217;t experience errors with the file upload process, but that .001% of the time when you do it can be VERY frustrating. Below is a list of some common errors that can occur during the uploading process: The lists are split into two general categories based on the size of [...]]]></description>
			<content:encoded><![CDATA[<div class="tip">99.999% of the time you won&#8217;t experience errors with the file upload process,<br />
but that .001% of the time when you do it can be VERY frustrating.</div>
<h3>Below is a list of some common errors that can occur during the uploading process:</h3>
<p>The lists are split into two general categories based on the size of the file(s) you are uploading. Why? Because file size is directly related to the length of time it takes to upload a file. And the longer it takes to upload a file the greater chance (albeit very small) that an error will occur. However do note: You will NEVER be limited by us on the <a href="/why-is-sizable-send-so-fast/">speed at which you can upload a file</a>. <a href="http://blog.sizablesend.com/blazing-fast-file-uploads-and-downloads/">We pay top dollar for the fastest bandwidth money can buy</a> and the only thing that would be causing your file to upload/download slow is the speed of your internet connection.</p>
<p><strong>NOTE: This article does NOT deal with <a href="/email-issues/">email errors</a>.</strong></p>
<div class="error">
<h3>Errors on files 0-500MB in size</h3>
<p>Luckily files in this size range only throw errors about .0001% of the time. This is because these relatively smaller files can be uploaded fast and browser/internet errors (explained later) rarely have a chance to occur.</p>
</div>
<div class="indent_div">
<h5>Common errors on the <span style="text-decoration: underline;">client side</span> for files <span style="text-decoration: underline;">0-500MB in size</span></h5>
<div class="indent_div">
<p class="tip">These are errors that are caused by you, your computer, web browser, configuration settings or internet connection.</p>
<div class="error">
<p><a name="0-500MB-errors-cs"></a></p>
<h6>Possible Errors:</h6>
<ul>
<li>There is no “start upload” button or a “send” button.</li>
<li>Your internet connection briefly disconnects or experiences <a href="http://en.wikipedia.org/wiki/Packet_loss">packet loss</a>.</li>
<li>The file uploader loses access to the file you are uploading. Maybe because you moved/deleted it or are editing it or possibly the file permissions may have changed.</li>
<li>Your Anti-virus sees SizableSend.com as a malicious site.</li>
<li>Your firewall is blocking SizableSend.com.</li>
<li>Your browser freezes and &#8220;stops responding&#8221;.</li>
<li>You don&#8217;t have the most recent version of the Adobe Flash Player.</li>
<li>You web browser doesn&#8217;t have JavaScript enabled.</li>
<li>You accidentally close the browser window.</li>
</ul>
</div>
<div class="success">
<p><a name="0-500MB-solutions-cs"></a></p>
<h6>Possible Solutions:</h6>
<ul>
<li><strong>No “start upload” button or a “send” button.</strong> See this article: <a href="/i-dont-see-a-start-upload-button-or-a-send-button/">I dont see a “start upload” button or a “send” button</a>.</li>
<li><strong>Internet connection issues</strong>: Try resetting your router then uploading the file again.</li>
<li><strong>File access issues</strong>: Don&#8217;t mess with the files you&#8217;re uploading as you&#8217;re uploading them.</li>
<li><strong>Anti-virus issues</strong>: Add SizableSend.com as a &#8220;Approved Website&#8221;.</li>
<li><strong>Firewall issues</strong>: Add a firewall rule that &#8220;white-lists&#8221; SizableSend.com.</li>
<li><strong>Browser freezes</strong>: Try uploading your files in a browser with nothing else opened in it. Just a single tab for SizableSend.com</li>
<li><strong>Flash Player version</strong>: Get the most recent version of <a href="http://get.adobe.com/flashplayer/">Flash Player here</a>.</li>
<li><strong>JavaScript disabled</strong>: <a href="/how-do-i-enable-javascript-in-my-browser/">Enable JavaScript in your browser</a>.</li>
<li><strong>Accidental browser closing</strong>: Try not to do it again and go ahead and resend the file.</li>
</ul>
</div>
</div>
<h5>Common errors on the <span style="text-decoration: underline;">server side</span> for files <span style="text-decoration: underline;">0-500MB in size</span></h5>
<div class="indent_div">
<p class="tip">These are errors that are caused by our proprietary upload application, the servers we host it on or bugs in our code.</p>
<div class="error">
<p><a name="0-500MB-errors-ss"></a></p>
<h6>Possible Errors:</h6>
<ul>
<li>You didn&#8217;t enter &#8220;Your Email&#8221; email address.</li>
<li>You didn&#8217;t enter a &#8220;Recipient&#8217;s Email&#8221; email address.</li>
<li>The server loses connection to your upload session.</li>
<li>Too many advanced options specified. (This error rarely happens and usually when your browser is out of memory)</li>
</ul>
</div>
<div class="success">
<p><a name="0-500MB-solutions-ss"></a></p>
<h6>Possible Solutions:</h6>
<ul>
<li><strong>Didn&#8217;t enter &#8220;Your Email&#8221;</strong>: Enter &#8220;Your Email&#8221; before you start uploading.</li>
<li><strong>Didn&#8217;t enter &#8220;Recipient&#8217;s Email&#8221;</strong>: Enter &#8220;Recipient&#8217;s Email&#8221; before you start uploading.</li>
<li><strong>Connection issues</strong>: Refresh the browser and try uploading again.</li>
<li><strong>Too many advanced options</strong>: Don&#8217;t specify any &#8220;Advanced Options&#8221; or &#8220;Syndicate&#8221; options. Just send the file with default options specified.</li>
</ul>
</div>
</div>
</div>
<div class="error">
<h3>Errors on files 500-2200MB in size</h3>
<p>Errors with uploading files larger than 500MB can be tricky to debug because when something fails it isn’t always on our end.</p>
<p>For example: sometimes your browser can timeout or throw an error, the file may be partially corrupted and more often than not, the browser just gives up if it doesn’t hear back from our servers in a timely enough matter during the file upload… If we could fix the latter issue on our end we would but it is a browser dependent bug.</p>
</div>
<div class="indent_div">
<h5>Common errors on the <span style="text-decoration: underline;">client side</span> for files <span style="text-decoration: underline;">500-2200MB in size</span></h5>
<div class="indent_div">
<p class="tip">These are errors that are caused by you, your computer, web browser, configuration settings or internet connection.</p>
<div class="error">
<h6>Possible Errors:</h6>
<ul>
<li>See &#8220;<a href="http://help.sizablesend.com/common-uploading-errors/?preview=true&amp;preview_id=93&amp;preview_nonce=852f82ca65#0-500MB-errors-cs">Errors on files 0-500MB in size – Client Side</a>” above, the same issues apply to 500-2200MB files.</li>
<li>File isn&#8217;t sending, browser times out and stops uploading the file when it&#8217;s partially through the upload, e.g. it stops at 50% completion.</li>
<li>Your file is stuck uploading at 100% and has been stuck on 100% for quite some time.</li>
</ul>
</div>
<div class="success">
<h6>Possible Solutions:</h6>
<ul>
<li>See “<a href="http://help.sizablesend.com/common-uploading-errors/?preview=true&amp;preview_id=93&amp;preview_nonce=852f82ca65#0-500MB-solutions-cs">Solutions on files 0-500MB in size – Client Side</a>” above, the same solutions apply to 500-2200MB files.</li>
<li><strong>Partial upload completion</strong>: Try another browser like Internet Explorer and see if the same issue occurs. If the issue continues, please <a href="#comment">post a comment</a> below or <a href="mailto:customer.relations@sfusion.com">email us</a>.</li>
<li><strong>File stuck at 100%</strong>: See this article: <a href="/my-file-is-stuck-uploading-at-100/">My file is stuck uploading at 100%</a>.</li>
</ul>
</div>
</div>
<h5>Common errors on the <span style="text-decoration: underline;">server side</span> for files <span style="text-decoration: underline;">500-2200MB in size</span></h5>
<div class="indent_div">
<p class="tip">These are errors that are caused by our proprietary upload application, the servers we host it on or bugs in our code.</p>
<div class="error">
<h6>Possible Errors:</h6>
<ul>
<li>See “<a href="http://help.sizablesend.com/common-uploading-errors/?preview=true&amp;preview_id=93&amp;preview_nonce=852f82ca65#0-500MB-errors-ss">Errors on files 0-500MB in size – Server Side</a>” above, the same issues apply to 500-2200MB files.</li>
<li>File successfully uploaded and your screen looks <a href="/what-does-a-completed-file-upload-look-like/">similar to this</a>, but when you click the download link it says: &#8220;We&#8217;re sorry, this file no longer exists &#8211; The file associated with this link has expired*&#8221;.</li>
<li>File successfully uploaded and your screen looks <a href="/what-does-a-completed-file-upload-look-like/">similar to this</a>, but when you click the download link it says: &#8220;We&#8217;re sorry, this file no longer exists &#8211; The file associated with this link has expired*&#8221;, AND The &#8220;File Size&#8221; says: &#8220;0.00MB&#8221;.</li>
</ul>
</div>
<div class="success">
<h6>Possible Solutions:</h6>
<ul>
<li>See “<a href="http://help.sizablesend.com/common-uploading-errors/?preview=true&amp;preview_id=93&amp;preview_nonce=852f82ca65#0-500MB-solutions-ss">Solutions on files 0-500MB in size – Server Side</a>” above, the same solutions apply to 500-2200MB files.</li>
<li><strong>Successful upload, but file is expired</strong>: Remember because the files need to &#8220;<a href="/my-file-is-stuck-uploading-at-100/">double upload</a>&#8221; very large files can take some time to transfer to our high <a href="http://blog.sizablesend.com/blazing-fast-file-uploads-and-downloads/">speed download servers</a>, so be patient. If however you feel you have waited long enough and you are still getting the error your best bet is to try again and this time upload the files in Internet Explorer. If the issue continues, please <a href="#comment">post a comment</a> below or <a href="mailto:customer.relations@sfusion.com">email us</a>.</li>
<li><strong>Successful upload, but file is expired AND file size is 0.00MB</strong>: This means somewhere in the upload process the file was lost, this could be due to a number of things however the file can usually be found by our techs. Thus you can either try the file upload again, which usually solves the problem, or if the issue continues, please <a href="#comment">post a comment</a> below or <a href="mailto:customer.relations@sfusion.com">email us</a>.</li>
</ul>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://help.sizablesend.com/common-uploading-errors/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do I Send Multiple Files at Once</title>
		<link>http://help.sizablesend.com/how-do-i-send-multiple-files-at-once/</link>
		<comments>http://help.sizablesend.com/how-do-i-send-multiple-files-at-once/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 02:57:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common Questions]]></category>
		<category><![CDATA[Sending Large Files]]></category>
		<category><![CDATA[Compressed File]]></category>
		<category><![CDATA[Files]]></category>
		<category><![CDATA[MAC]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[Pictures]]></category>
		<category><![CDATA[Send Multiple Files]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Zip]]></category>

		<guid isPermaLink="false">http://help.sizablesend.com/?p=176</guid>
		<description><![CDATA[There are two ways you can send multiple files using Sizable Send. In the following article we will go over both: Select and Upload Multiple Files: Go to SizableSend.com, enter your email, and the email of the recipient you want to send the multiple files to. Click the Select Files button. Select up to 10(ten) files to [...]]]></description>
			<content:encoded><![CDATA[<p>There are two ways you can send multiple files using Sizable Send. In the following article we will go over both:</p>
<h3>Select and Upload Multiple Files:</h3>
<p><img src="http://help.sizablesend.com/wp-content/uploads/2010/09/send-multiple-files-300x221.jpg" alt="Select and Upload Multiple Files" title="send-multiple-files" width="300" height="221" class="alignright size-medium wp-image-195" /></p>
<ol>
<li>Go to <a href="http://www.sizablesend.com/">SizableSend.com</a>, enter your email, and the email of the recipient you want to <strong>send the multiple files </strong>to.</li>
<li>Click the <strong>Select Files</strong> button.</li>
<li><strong>Select up to 10(ten) files</strong> to send, each file can be <strong>up to 2.2GB in size</strong>;
<ul>
<li>To <a href="http://blog.sizablesend.com/multiple-simultaneous-file-uploads/">upload multiple files</a> at once, <strong>Ctrl + Click</strong> items in the browse files window.</li>
<li>You can also queue up additional large files while others files are uploading.</li>
</ul>
</li>
<li>Click the <strong>Open</strong> button in the browse files window, that’s it! <strong>Uploading will </strong><strong><a href="/i-dont-see-a-start-upload-button-or-a-send-button/">start automatically</a></strong>. The recipient will be sent a secure download link to the files.</li>
</ol>
<h3>Zip All Files Then Upload a Single Zip File:</h3>
<p><img class="alignright size-medium wp-image-172" title="send-zip-file" src="http://help.sizablesend.com/wp-content/uploads/2010/09/send-zip-file-300x221.jpg" alt="Zip all Files Then Upload a Single Zip File" width="300" height="221" /></p>
<ol>
<li><strong>Zip all files</strong>:
<ul>
<li>Instructions on: <a href="/how-to-zip-multiple-files-on-a-mac/">How to zip multiple files of a MAC</a></li>
<li>Instructions on: <a href="/how-to-zip-multiple-files-on-a-pc/">How To Zip Multiple Files on a PC</a></li>
</ul>
</li>
<li>Go to <a href="http://www.sizablesend.com/">SizableSend.com</a>, enter your email, and the email of the recipient you want to <strong>send the compressed file of multiple files </strong>to.</li>
<li>Click the <strong>Select File</strong>s button.</li>
<li><strong>Select the folder</strong> you just zipped to send, each zip file can be <strong>up to 2.2GB in size</strong>; you can send multiple compressed zip files if you would like.</li>
<li>Click the Open button in the browse files window, that’s it! <strong>Uploading will start automatically</strong>. The recipient will be sent a secure download link to the compressed zip files.</li>
</ol>
<h4>Related Articles:</h4>
<ul>
<li><a href="/how-do-i-send-multiple-video-files-at-once/">How do I Send Multiple Video Files at Once</a></li>
<li><a href="/how-do-i-send-multiple-mp3-files-at-once/">How do I Send Multiple Mp3 Files at Once</a></li>
<li><a href="/how-do-i-send-all-the-pictures-in-a-folder/">How Do I Send All The Pictures in a Folder</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://help.sizablesend.com/how-do-i-send-multiple-files-at-once/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do I Send Multiple Video Files at Once</title>
		<link>http://help.sizablesend.com/how-do-i-send-multiple-video-files-at-once/</link>
		<comments>http://help.sizablesend.com/how-do-i-send-multiple-video-files-at-once/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 02:53:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common Questions]]></category>
		<category><![CDATA[Sending Large Files]]></category>
		<category><![CDATA[Compressed File]]></category>
		<category><![CDATA[MAC]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[Send Multiple Files]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Zip]]></category>

		<guid isPermaLink="false">http://help.sizablesend.com/?p=174</guid>
		<description><![CDATA[There are two ways you can send multiple video files using Sizable Send. In the following article we will go over both: Select and Upload Multiple Files: Go to SizableSend.com, enter your email, and the email of the recipient you want to send the multiple videos to. Click the Select Files button. Select up to 10(ten) video [...]]]></description>
			<content:encoded><![CDATA[<p>There are two ways you can send multiple video files using Sizable Send. In the following article we will go over both:</p>
<h3>Select and Upload Multiple Files:</h3>
<p><img class="alignright size-medium wp-image-184" title="send-multiple-video-files" src="http://help.sizablesend.com/wp-content/uploads/2010/09/send-multiple-video-files-300x221.jpg" alt="Select and Upload Multiple Video Files" /></p>
<ol>
<li>Go to <a href="http://www.sizablesend.com/">SizableSend.com</a>, enter your email, and the email of the recipient you want to <strong>send the multiple videos </strong>to.</li>
<li>Click the <strong>Select Files</strong> button.</li>
<li><strong>Select up to 10(ten) video files</strong> to send, each file can be <strong>up to 2.2GB in size</strong>;
<ul>
<li>To <a href="http://blog.sizablesend.com/multiple-simultaneous-file-uploads/">upload multiple files</a> at once, <strong>Ctrl + Click</strong> items in the browse files window.</li>
<li>You can also queue up additional large movie files while others files are uploading.</li>
</ul>
</li>
<li>Click the <strong>Open</strong> button in the browse files window, that’s it! <strong>Uploading will </strong><strong><a href="/i-dont-see-a-start-upload-button-or-a-send-button/">start automatically</a></strong>. The recipient will be sent a secure download link to the video files.</li>
</ol>
<h3>Zip All Files Then Upload a Single Zip File:</h3>
<p><img class="alignright size-medium wp-image-172" title="send-zip-file" src="http://help.sizablesend.com/wp-content/uploads/2010/09/send-zip-file-300x221.jpg" alt="Zip all Files Then Upload a Single Zip File" width="300" height="221" /></p>
<ol>
<li><strong>Zip all files</strong>:
<ul>
<li>Instructions on: <a href="/how-to-zip-multiple-files-on-a-mac/">How to zip multiple files of a MAC</a></li>
<li>Instructions on: <a href="/how-to-zip-multiple-files-on-a-pc/">How To Zip Multiple Files on a PC</a></li>
</ul>
</li>
<li>Go to <a href="http://www.sizablesend.com/">SizableSend.com</a>, enter your email, and the email of the recipient you want to <strong>send the compressed file of multiple videos </strong>to.</li>
<li>Click the <strong>Select File</strong>s button.</li>
<li><strong>Select the folder</strong> you just zipped to send, each zip file can be <strong>up to 2.2GB in size</strong>; you can send multiple compressed video zip files if you would like.</li>
<li>Click the Open button in the browse files window, that’s it! <strong>Uploading will start automatically</strong>. The recipient will be sent a secure download link to the compressed zip video files.</li>
</ol>
<h4>Related Articles:</h4>
<ul>
<li><a href="/how-do-i-send-all-the-pictures-in-a-folder/">How Do I Send All The Pictures in a Folder</a></li>
<li><a href="/how-do-i-send-multiple-mp3-files-at-once/">How do I Send Multiple Mp3 Files at Once</a></li>
<li><a href="/how-do-i-send-multiple-files-at-once/">How do I Send Multiple Files at Once</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://help.sizablesend.com/how-do-i-send-multiple-video-files-at-once/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How do I Send Multiple Mp3 Files at Once</title>
		<link>http://help.sizablesend.com/how-do-i-send-multiple-mp3-files-at-once/</link>
		<comments>http://help.sizablesend.com/how-do-i-send-multiple-mp3-files-at-once/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 02:37:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common Questions]]></category>
		<category><![CDATA[Sending Large Files]]></category>
		<category><![CDATA[Compressed File]]></category>
		<category><![CDATA[MAC]]></category>
		<category><![CDATA[Mp3]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[Send Multiple Files]]></category>
		<category><![CDATA[Zip]]></category>

		<guid isPermaLink="false">http://help.sizablesend.com/?p=151</guid>
		<description><![CDATA[There are two ways you can send multiple music files using Sizable Send. In the following article we will go over both: Select and Upload Multiple Files: Go to SizableSend.com, enter your email, and the email of the recipient you want to send the multiple mp3s to. Click the Select Files button. Select up to 10(ten) music [...]]]></description>
			<content:encoded><![CDATA[<p>There are two ways you can send multiple music files using Sizable Send. In the following article we will go over both:</p>
<h3>Select and Upload Multiple Files:</h3>
<p><img class="alignright size-medium wp-image-168" title="send-multiple-music-files" src="http://help.sizablesend.com/wp-content/uploads/2010/09/send-multiple-music-files-300x221.jpg" alt="Select and Upload Multiple Music Files" /></p>
<ol>
<li>Go to <a href="http://www.sizablesend.com/">SizableSend.com</a>, enter your email, and the email of the recipient you want to <strong>send the multiple mp3s</strong> to.</li>
<li>Click the <strong>Select Files</strong> button.</li>
<li><strong>Select up to 10(ten) music files</strong> to send, each file can be <strong>up to 2.2GB in size</strong>;
<ul>
<li>To <a href="http://blog.sizablesend.com/multiple-simultaneous-file-uploads/">upload multiple files</a> at once, <strong>Ctrl + Click</strong> items in the browse files window.</li>
<li>You can also queue up additional large files while others files are uploading.</li>
</ul>
</li>
<li>Click the <strong>Open</strong> button in the browse files window, that’s it! <strong>Uploading will </strong><strong><a href="/i-dont-see-a-start-upload-button-or-a-send-button/">start automatically</a></strong>. The recipient will be sent a secure download link to the music files.</li>
</ol>
<h3>Zip All Files Then Upload a Single Zip File:</h3>
<p><img class="alignright size-medium wp-image-172" title="send-zip-file" src="http://help.sizablesend.com/wp-content/uploads/2010/09/send-zip-file-300x221.jpg" alt="Zip all Files Then Upload a Single Zip File" width="300" height="221" /></p>
<ol>
<li><strong>Zip all files</strong>:
<ul>
<li>Instructions on: <a href="/how-to-zip-multiple-files-on-a-mac/">How to zip multiple files of a MAC</a></li>
<li>Instructions on: <a href="/how-to-zip-multiple-files-on-a-pc/">How To Zip Multiple Files on a PC</a></li>
</ul>
</li>
<li>Go to <a href="http://www.sizablesend.com/">SizableSend.com</a>, enter your email, and the email of the recipient you want to <strong>send the compressed file of multiple mp3s</strong> to.</li>
<li>Click the <strong>Select File</strong>s button.</li>
<li><strong>Select the folder</strong> you just zipped to send, each zip file can be <strong>up to 2.2GB in size</strong>; you can send multiple compressed zip files if you would like.</li>
<li>Click the Open button in the browse files window, that’s it! <strong>Uploading will start automatically</strong>. The recipient will be sent a secure download link to the compressed zip music files.</li>
</ol>
<h4>Related Articles:</h4>
<ul>
<li><a href="/how-do-i-send-all-the-pictures-in-a-folder/">How Do I Send All The Pictures in a Folder</a></li>
<li><a href="/how-do-i-send-multiple-video-files-at-once/">How do I Send Multiple Video Files at Once</a></li>
<li><a href="/how-do-i-send-multiple-files-at-once/">How do I Send Multiple Files at Once</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://help.sizablesend.com/how-do-i-send-multiple-mp3-files-at-once/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Zip Multiple Files on a PC</title>
		<link>http://help.sizablesend.com/how-to-zip-multiple-files-on-a-pc/</link>
		<comments>http://help.sizablesend.com/how-to-zip-multiple-files-on-a-pc/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 02:22:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Preparing Files to Send]]></category>
		<category><![CDATA[Q & A]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[Pictures]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Zip]]></category>

		<guid isPermaLink="false">http://help.sizablesend.com/?p=155</guid>
		<description><![CDATA[There are many reasons you would want to zip multiple files on a PC(Windows), like: Zipping multiple video files to send in a single file Zipping multiple pictures or a folder of pictures to send as a single file Zipping multiple music files or a folder of music to send as a single file Zipping [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>There are many reasons you would want to zip multiple files on a PC(Windows), like:</p>
<ul>
<li>Zipping <strong><a href="/how-do-i-send-multiple-video-files-at-once/">multiple video files</a></strong> to send in a single file</li>
<li>Zipping <strong><a href="/how-do-i-send-all-the-pictures-in-a-folder/">multiple pictures</a></strong> or a folder of pictures to send as a single file</li>
<li>Zipping <strong><a href="/how-do-i-send-multiple-mp3-files-at-once/">multiple music files</a></strong> or a folder of music to send as a single file</li>
<li>Zipping <strong><a href="/how-do-i-send-multiple-files-at-once/">multiple files</a></strong> of multiple types or many files of a specific type into a single file to send</li>
</ul>
<p><img class="alignright size-medium wp-image-163" title="zip-files-on-pc" src="http://help.sizablesend.com/wp-content/uploads/2010/09/zip-files-on-pc1-300x204.gif" alt="How To Zip Multiple=" /></p>
<h3>Here is how you ZIP Files (Compressed Files) in One Click:</h3>
<ul>
<li>Right-click a file.</li>
<li>Point to <strong>Send To</strong> on the shortcut menu.</li>
<li>Then click <strong>Compressed (zipped) Folder</strong>.</li>
<li>To open the file just double click it and it will decompress.</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://help.sizablesend.com/how-to-zip-multiple-files-on-a-pc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

