<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Reduce Volusion Excess Bandwidth Fees</title>
	<atom:link href="http://lexipixel.com/wordpress/ecommerce/reduce-volusion-excess-bandwidth-fees/feed" rel="self" type="application/rss+xml" />
	<link>http://lexipixel.com/wordpress/ecommerce/reduce-volusion-excess-bandwidth-fees</link>
	<description>Web Developer / Web Designer Info</description>
	<lastBuildDate>Fri, 03 Feb 2012 06:01:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Randy Harris</title>
		<link>http://lexipixel.com/wordpress/ecommerce/reduce-volusion-excess-bandwidth-fees/comment-page-1#comment-851</link>
		<dc:creator>Randy Harris</dc:creator>
		<pubDate>Fri, 03 Feb 2012 06:01:38 +0000</pubDate>
		<guid isPermaLink="false">http://lexipixel.com/wordpress/?p=187#comment-851</guid>
		<description>Volusion has &quot;free&quot; built in Akamai CDN... but I question if it&#039;s effective (or even free).  I turned off CDN on the last remote image serving job I did.  It seems to me that updating 9,500 servers with images, all to save the backbone traffic of serving the images directly [from the origin server] is more of a waste of bandwidth... and I am not sure that Volusion isn&#039;t charging customers for the bandwith required to feed the CDN.  The customer felt the images actually displayed faster with no CDN, &lt;em&gt;(and they have offices on both sides of the Atlantic).&lt;/em&gt;

FWIW -- that customer was charged +$500 in excess bandwidth fees the first month his store went live -- and he wanted to clone the store for two additional markets.  The work I did will save him ((+$500 * 3) * 12) per year .. or roughly +$18k/yr that he never anticipated being charged when he signed up with Volusion.

I got a call this afternoon from another Volusion store owner -- they are using 200GB excess bandwidth and being charged $4.00/GB, (+$800/mo). Volusion is clobbering store owners with the bandwidth fees.

It seems adding CDN and other &quot;features&quot; is just a way to complicate the image hosting and put more profit in Volusions pocket.

*** &lt;strong style=&quot;color:red;&quot;&gt;NOTICE TO ANYONE CONSIDERING USING VOLUSION:&lt;/strong&gt; Make sure you know what your bandwidth usage will be before investing a lot of time and money into building your business on Volusion&#039;s platform!!!! ****</description>
		<content:encoded><![CDATA[<p>Volusion has &#8220;free&#8221; built in Akamai CDN&#8230; but I question if it&#8217;s effective (or even free).  I turned off CDN on the last remote image serving job I did.  It seems to me that updating 9,500 servers with images, all to save the backbone traffic of serving the images directly [from the origin server] is more of a waste of bandwidth&#8230; and I am not sure that Volusion isn&#8217;t charging customers for the bandwith required to feed the CDN.  The customer felt the images actually displayed faster with no CDN, <em>(and they have offices on both sides of the Atlantic).</em></p>
<p>FWIW &#8212; that customer was charged +$500 in excess bandwidth fees the first month his store went live &#8212; and he wanted to clone the store for two additional markets.  The work I did will save him ((+$500 * 3) * 12) per year .. or roughly +$18k/yr that he never anticipated being charged when he signed up with Volusion.</p>
<p>I got a call this afternoon from another Volusion store owner &#8212; they are using 200GB excess bandwidth and being charged $4.00/GB, (+$800/mo). Volusion is clobbering store owners with the bandwidth fees.</p>
<p>It seems adding CDN and other &#8220;features&#8221; is just a way to complicate the image hosting and put more profit in Volusions pocket.</p>
<p>*** <strong style="color:red;">NOTICE TO ANYONE CONSIDERING USING VOLUSION:</strong> Make sure you know what your bandwidth usage will be before investing a lot of time and money into building your business on Volusion&#8217;s platform!!!! ****</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://lexipixel.com/wordpress/ecommerce/reduce-volusion-excess-bandwidth-fees/comment-page-1#comment-850</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Fri, 03 Feb 2012 05:12:44 +0000</pubDate>
		<guid isPermaLink="false">http://lexipixel.com/wordpress/?p=187#comment-850</guid>
		<description>Nice post, thanks for the useful javascript rewrite code! What about using a CDN with Volusion? 

[NOTE:promotional text about specific cloud service removed]</description>
		<content:encoded><![CDATA[<p>Nice post, thanks for the useful javascript rewrite code! What about using a CDN with Volusion? </p>
<p>[NOTE:promotional text about specific cloud service removed]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randy Harris</title>
		<link>http://lexipixel.com/wordpress/ecommerce/reduce-volusion-excess-bandwidth-fees/comment-page-1#comment-833</link>
		<dc:creator>Randy Harris</dc:creator>
		<pubDate>Fri, 30 Dec 2011 08:25:02 +0000</pubDate>
		<guid isPermaLink="false">http://lexipixel.com/wordpress/?p=187#comment-833</guid>
		<description>Here&#039;s some new and improved Javascript that will replace more of the images automatically using the &lt;em&gt;getElementsByTagName()&lt;/em&gt; method--

&lt;code&gt;&lt;script type=&quot;text/javascript&quot;&gt;
function getImages()  {
  var ThisDomain=document.domain;
  var ImgServer=&#039;www.image-server-domain-name.com&#039;;
  var images = document.getElementsByTagName(&quot;IMG&quot;);
  var numOfImages = images.length;
  var origImage;
  for(i=0;i&lt;numOfImages;i++) {
    origImage = images[i].src;
    if(origImage.indexOf(&#039;/v/vspfiles/photos/&#039;) != -1) {
      NewImgSrc = origImage.replace(ThisDomain,ImgServer);
      document.getElementsByTagName(&quot;img&quot;)[i].src =NewImgSrc;
    }
  }
}
window.onload = getImages;
&lt;/script&gt;&lt;/code&gt;

Replace &quot;&lt;strong&gt;image-server-domain-name&lt;/strong&gt;&quot; with the actual domain name of your image server.</description>
		<content:encoded><![CDATA[<p>Here&#8217;s some new and improved Javascript that will replace more of the images automatically using the <em>getElementsByTagName()</em> method&#8211;</p>
<p><code>&lt;script type="text/javascript"&gt;<br />
function getImages()  {<br />
  var ThisDomain=document.domain;<br />
  var ImgServer='www.image-server-domain-name.com';<br />
  var images = document.getElementsByTagName("IMG");<br />
  var numOfImages = images.length;<br />
  var origImage;<br />
  for(i=0;i&lt;numOfImages;i++) {<br />
    origImage = images[i].src;<br />
    if(origImage.indexOf('/v/vspfiles/photos/') != -1) {<br />
      NewImgSrc = origImage.replace(ThisDomain,ImgServer);<br />
      document.getElementsByTagName("img")[i].src =NewImgSrc;<br />
    }<br />
  }<br />
}<br />
window.onload = getImages;<br />
&lt;/script&gt;</code></p>
<p>Replace &#8220;<strong>image-server-domain-name</strong>&#8221; with the actual domain name of your image server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randy Harris</title>
		<link>http://lexipixel.com/wordpress/ecommerce/reduce-volusion-excess-bandwidth-fees/comment-page-1#comment-832</link>
		<dc:creator>Randy Harris</dc:creator>
		<pubDate>Fri, 30 Dec 2011 08:18:06 +0000</pubDate>
		<guid isPermaLink="false">http://lexipixel.com/wordpress/?p=187#comment-832</guid>
		<description>NOTE: Anyone using this fix on Volusion v.11 will need to disable the new CDN (Content Distribution Network) feature. 

Go to Settings &gt; Maintenance &gt; Disable CDN.

We have done this on several Volusion sites with absolutely no impact to the speed that pages or images display, (in fact we&#039;ve had customers who say the images appear faster without CDN in general).  So long as you use a quality hosting company for the image server, (one with fast connections to the internet), you and your customers should have no problem.</description>
		<content:encoded><![CDATA[<p>NOTE: Anyone using this fix on Volusion v.11 will need to disable the new CDN (Content Distribution Network) feature. </p>
<p>Go to Settings > Maintenance > Disable CDN.</p>
<p>We have done this on several Volusion sites with absolutely no impact to the speed that pages or images display, (in fact we&#8217;ve had customers who say the images appear faster without CDN in general).  So long as you use a quality hosting company for the image server, (one with fast connections to the internet), you and your customers should have no problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake R.</title>
		<link>http://lexipixel.com/wordpress/ecommerce/reduce-volusion-excess-bandwidth-fees/comment-page-1#comment-831</link>
		<dc:creator>Jake R.</dc:creator>
		<pubDate>Tue, 06 Dec 2011 07:37:39 +0000</pubDate>
		<guid isPermaLink="false">http://lexipixel.com/wordpress/?p=187#comment-831</guid>
		<description>Our first month using Volusion they charged us over $800 for extra data transfer on what should have been a $100 month plan.  Our second month they tried to charge an extra $1100. The more we spent on marketing, the more traffic we got, the more Volusion charged us. We had to pause my Google ads until we could figure it out. Volusion nearly drove us out of business. I complained and they knocked off a couple hundred dollars and suggested we reduce the quality of our images and make them smaller to save money. Save money????? They were ripping us off and telling me to use crappy photos for my high end products. Someone suggested we contact BrandLabs about reducing our bandwidth.  Brand Labs wanted to charge over $5000. Luckily I found this site and hired Randy. For $1200 he did his magic and now we use even larger higher resolution images and haven&#039;t had any over charges from Volusion since. He was a pleasure to work with and explained everything he did so we can manage our own store going forward.  Shame on Volusion and Brand Labs. You can trust Randy to do anything in Volusion. While he was working on our site he helped solve a few other issues. Thanks again Randy and feel free to use us as a referral, we would recommend you to anyone!</description>
		<content:encoded><![CDATA[<p>Our first month using Volusion they charged us over $800 for extra data transfer on what should have been a $100 month plan.  Our second month they tried to charge an extra $1100. The more we spent on marketing, the more traffic we got, the more Volusion charged us. We had to pause my Google ads until we could figure it out. Volusion nearly drove us out of business. I complained and they knocked off a couple hundred dollars and suggested we reduce the quality of our images and make them smaller to save money. Save money????? They were ripping us off and telling me to use crappy photos for my high end products. Someone suggested we contact BrandLabs about reducing our bandwidth.  Brand Labs wanted to charge over $5000. Luckily I found this site and hired Randy. For $1200 he did his magic and now we use even larger higher resolution images and haven&#8217;t had any over charges from Volusion since. He was a pleasure to work with and explained everything he did so we can manage our own store going forward.  Shame on Volusion and Brand Labs. You can trust Randy to do anything in Volusion. While he was working on our site he helped solve a few other issues. Thanks again Randy and feel free to use us as a referral, we would recommend you to anyone!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

