<?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>Superlative Internet</title>
	<atom:link href="http://www.supint.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.supint.com</link>
	<description>WordPress Development &#124; Seattle Website Design &#124; Superlative Internet</description>
	<lastBuildDate>Sun, 01 Apr 2012 22:25:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>WordPress Times Out With Too Many Pages?</title>
		<link>http://www.supint.com/portfolio/wordpress-times-out-with-too-many-pages/</link>
		<comments>http://www.supint.com/portfolio/wordpress-times-out-with-too-many-pages/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 17:43:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=351</guid>
		<description><![CDATA[This one had me pulling my hair out for a few days.  I was developing a client site in WordPress.  This site had 500 products and I chose to use Pages (instead of Posts) for the products, mostly because it allowed for a better URL structure, especially because there were product categories and sub-categories.  The [...]]]></description>
			<content:encoded><![CDATA[<p><strong><img class="alignleft size-full wp-image-355" title="bald-matt" src="http://www.supint.com/wp-content/uploads/2011/08/bald-matt.jpg" alt="wordpress permalinks caused me to pull out my hair!" width="276" height="183" />This one had me pulling my hair out for a few days.  </strong></p>
<p>I was developing a client site in WordPress.  This site had 500 products and I chose to use Pages (instead of Posts) for the products, mostly because it allowed for a better URL structure, especially because there were product categories and sub-categories.  The URLs would look nice &#8212; www.site.com/category/sub-category/product-name/</p>
<blockquote>
<p style="padding-left: 30px;"><strong>Spoiler!<br />
</strong><em>No time to read the entire post?</em>  Just update your permalinks to <strong>/%year%/%postname%/</strong> and that will fix the issue.  If your site is running too slowly to edit the permalinks, edit the database directly.  I use phpMyAdmin.  Search the wp_options table field name for %LIKE% = permalink and edit the value to /%year%/%postname%/<strong><br />
</strong></p>
</blockquote>
<p>All was going well in development until we hit around 400 pages.  Then the site started running <em>reaaaaaallllly</em> slowly, and even timing out with a PHP fatal error like this:</p>
<p><strong>Maximum execution time of 30 seconds exceeded in /wp-includes/rewrite.php on line 835</strong></p>
<p>WTF!  Could this be a plugin issue?  Or something wrong in our custom coded theme?  I didn&#8217;t think so&#8230; but what else could it be?  Surely WordPress can handle a website with thousands of pages, right?</p>
<p>My first thought was &#8220;there must be something wrong with the server.&#8221;  We did have a separate sub-domain for the site dev.site.com so that was a variable worth looking into.  Also, I had just started using a <a href="/hostgator" target="_blank">new VPS from Host Gator</a> running Fast CGI (I usually run PHP as an Apache module) so that could also be the cause.  Fun, I get to figure this out! [sarcasm]</p>
<p>No luck with tweaking the server settings, although Host Gator support does get an A for effort.  And I even updated the php.ini memory_limit from 64M to 128M thinking that this could be the root of the issue.  Nuts.</p>
<p>Turns out that good ol&#8217; permalinks is the cause of this problem.  For those that don&#8217;t know, permalinks allow you to customize the URL for your WordPress site.  Very useful for search engine optimization (SEO).  In classic obscure fashion that us web developers have grown used to (thanks to IE6 debugging and for the truly old skool, Netscape Navigator 4 hacking), the solution is to add something <strong>other than /%postname%/</strong> to the start of your site&#8217;s permalinks.</p>
<p>I&#8217;ve found that both of the following work equally well:</p>
<ul>
<li>/%year%/%postname%/</li>
<li>/blog/%year%/%monthnum%/%postname%/</li>
</ul>
<p>Not only will this bring your many-paged-Wordpress-website back to life, it will <strong>not</strong> affect your Pages URLs.  In this case, the permalink structure only applies to your Posts.  Yay!!!</p>
<p>Hopefully this breakdown will save a few hairs on your head.  I wish I had found out about it earlier <img src='http://www.supint.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Many thanks to the following which helped me out:</p>
<ul>
<li><a href="http://www.google.com/" target="_blank">www.google.com </a></li>
<li><a href="http://wordpress.org/support/topic/too-many-pages-custom-permalinks-fatal-error" target="_blank">http://wordpress.org/support/topic/too-many-pages-custom-permalinks-fatal-error</a></li>
<li><a href="http://wordpress.org/support/topic/permalinks-doesnt-scale" target="_blank">http://wordpress.org/support/topic/permalinks-doesnt-scale</a></li>
<li><a href="http://ottopress.com/2010/category-in-permalinks-considered-harmful/" target="_blank">http://ottopress.com/2010/category-in-permalinks-considered-harmful/</a> &#8211; <strong>great technical explanation here!</strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/wordpress-times-out-with-too-many-pages/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Automatically Import WordPress Blog to Facebook Page</title>
		<link>http://www.supint.com/portfolio/how-to-automatically-import-wordpress-blog-to-facebook-page/</link>
		<comments>http://www.supint.com/portfolio/how-to-automatically-import-wordpress-blog-to-facebook-page/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 16:55:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Video Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=329</guid>
		<description><![CDATA[This 3 minute video tutorial shows you how to connect a WordPress blog to your Facebook Page.  All blog posts will be automatically imported to your Facebook Page Wall. This video demonstrates automatically importing WordPress to your Facebook Page, the same principles apply for automatically posting to your personal Faceebook Wall, as well as automatically [...]]]></description>
			<content:encoded><![CDATA[<p>This 3 minute video tutorial shows you how to connect a WordPress blog to your Facebook Page.  All blog posts will be automatically imported to your Facebook Page Wall.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="390" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/_rxdBRd-Udw?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="390" src="http://www.youtube.com/v/_rxdBRd-Udw?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>This video demonstrates automatically importing WordPress to your  Facebook Page, the same principles apply for automatically posting to  your personal Faceebook Wall, as well as automatically posting from  other blogging platforms such as Blogger, Blogspot, Moveable Type,  TypePad, Open Diary, Live Journal, Xanga, Dead Journal, MySpace, Tumblr  and other blogging websites.</p>
<p><em><strong>Update: </strong>Following the steps in this video tutorial will  link each post on your Facebook Wall to the Notes section of your  Facebook account.  Admittedly, this is not ideal.  The ideal solution  would link to the actual post on your blog.  To accomplish this and link  each post back to the originating blog, I recommend using the <a href="http://wordpress.org/extend/plugins/wordbooker/" target="_blank">Wordbooker plugin for WordPress</a>.</em></p>
<h2>Video Transcript:</h2>
<p><strong>How to Automatically Import WordPress Blog to Facebook Page</strong><strong> </strong></p>
<p>A  really neat feature of Facebook allows you to import your blog  directly  onto your Facebook wall. This is a great way to save yourself  all the effort  of having to do that manually and plus being able to  take advantage of  Facebook and the huge user base that they have. So  I’m gonna show you  how to do that in this video tutorial.</p>
<p>And  a couple of things we need to clarify. First off, is typically  when you  log in to Facebook you log in as yourself, and then this  tutorial is  showing you how to do that for a Facebook page not your  Facebook  personal account. So one of the neat things Facebook has  recently added  is your ability to browse Facebook as a page. So you  click on this thing  and then we&#8217;ll just go to one of these pages that I  manage. Right here,  you just click switch. And now I am essentially  browsing Facebook as  this page, Yoga.</p>
<p>So  the next thing is the Notes application, you have to use the  Notes  application in order to import your blog feed. So first you find  out if  we have the Notes application installed. You add it, you go to  apps, and  when you see it right here, Notes, click edit settings and in  this case  it is available which means I haven’t added it yet so I  click add. It’s  now been added. We also wanna check the additional  permissions and make  sure that this box is checked because it will  import your blog feed to  your Notes and then publish it to your Wall.  So click okay to save that.</p>
<p>Go  back to our page and now you&#8217;ll see Notes is down here. So you  think  you could just click on Notes and there will be some link around  here  that says import my blog feed but it doesn’t, you actually have to  go in  search for Notes, it is really obscure and then you will see  down here  on the left, edit import settings, click that. It will bring  you to this  page where you can import a blog and so what you do is you  like to get  the blog feed, the full URL and copy and paste it right  here and then  that’s how you tell Facebook to import a blog.</p>
<p>So  here&#8217;s my blog. And then I have the blog feed which for WordPress  is  just the word &#8220;feed&#8221; after wherever your blog is installed. And in  my  case, this brings up this Google reader but this is what we are  looking  for, this URL, so you just copy that, go back here, paste it.  Be sure  you mark that check box and then click start importing. It  usually takes  maybe about 20 or 30 seconds. What it’s doing is  verifying that blog  feed as a valid feed and then it’s starting to do  the import. So let’s  wait while it’s loading. And once Facebook has  connected to your blog  feed you will see all your recent blog post  showing here on your Wall.</p>
<p>So  that&#8217;s how you do it. Be sure when you’re done you don’t forget  to  switch back to your user so you can go back to browsing Facebook as   yourself and not your page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/how-to-automatically-import-wordpress-blog-to-facebook-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing TourVista Shortcode</title>
		<link>http://www.supint.com/portfolio/testing-tourvista-shortcode/</link>
		<comments>http://www.supint.com/portfolio/testing-tourvista-shortcode/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 05:31:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=311</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<script src="http://www.tourvista.com/embed/account.php?id=559"></script>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/testing-tourvista-shortcode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R&amp;G Brenner Income Tax Consultants</title>
		<link>http://www.supint.com/portfolio/rg-brenner-income-tax-consultants/</link>
		<comments>http://www.supint.com/portfolio/rg-brenner-income-tax-consultants/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 00:07:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=296</guid>
		<description><![CDATA[R&#038;G Brenner Income Tax Consultants www.rgbrenner.com R&#038;G Brenner is the oldest and largest privately owned income tax preparation business in America. With clients all around the world, their website plays a vital role in their marketing and ability to communicate with clients. Superlative was hired to upgrade the functionality and update the look and feel [...]]]></description>
			<content:encoded><![CDATA[<div class="portfolio-photo"><a href="http://www.rgbrenner.com/"><img class="alignnone size-full wp-image-60" title="R&#038;G Brenner" src="http://www.supint.com/wp-content/uploads/2010/04/r-and-g-brenner-com.jpg" alt="R&#038;G Brenner" width="300" height="275" /></a></div>
<div class="portfolio-content">
<div class="portfolio-title">R&#038;G Brenner Income Tax Consultants</div>
<div class="portfolio-url"><a href="http://www.rgbrenner.com/">www.rgbrenner.com</a></div>
<div class="portfolio-description">R&#038;G Brenner is the oldest and largest privately owned income tax preparation business in America.  With clients all around the world, their website plays a vital role in their marketing and ability to communicate with clients.</div>
<div class="portfolio-description">Superlative was hired to upgrade the functionality and update the look and feel of R&#038;G Brenner&#8217;s web site.  The solution was to create a custom theme for WordPress content management system.  Doing so enabled the client to manage the website content in-house without having to know HTML or other code, and take advantage of the many other benefits of a website powered by WordPress.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/rg-brenner-income-tax-consultants/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Your Website CMS (Content Management System)</title>
		<link>http://www.supint.com/portfolio/using-your-website-cms-content-management-system/</link>
		<comments>http://www.supint.com/portfolio/using-your-website-cms-content-management-system/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 19:46:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Video Tutorials]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[photo gallery]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=284</guid>
		<description><![CDATA[The following video tutorials demonstrate using a CMS (Content Management System) to quickly and easily update your website as created by Superlative Internet. Edit a page on your website: Create a new blog post on your website/blog: Managing the photo gallery slideshow:]]></description>
			<content:encoded><![CDATA[<p>The following video tutorials demonstrate using a CMS (Content Management System) to quickly and easily update your website as created by Superlative Internet.</p>
<h1>Edit a page on your website:</h1>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/4Z7lboRYLJM&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/4Z7lboRYLJM&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h1>Create a new blog post on your website/blog:</h1>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/YZ45nMRl3Yg&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/YZ45nMRl3Yg&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h1>Managing the photo gallery slideshow:</h1>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/YcPSadjftUQ&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/YcPSadjftUQ&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/using-your-website-cms-content-management-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Emails not showing up? They are probably being mistakenly tagged as Spam.</title>
		<link>http://www.supint.com/portfolio/emails-not-showing-up-they-are-probably-being-mistakenly-tagged-as-spam/</link>
		<comments>http://www.supint.com/portfolio/emails-not-showing-up-they-are-probably-being-mistakenly-tagged-as-spam/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 19:43:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Video Tutorials]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=282</guid>
		<description><![CDATA[If your email is not coming through, check your Spam folder. This tutorial shows you how to check if Gmail Spam filters are mistakenly tagging valid emails as spam, and how to fix it.]]></description>
			<content:encoded><![CDATA[<div id="watch-video-details-inner-less">
<div><span>If your email is not coming through, check your Spam folder. This tutorial shows you how to check if Gmail Spam filters are mistakenly tagging valid emails as spam, and how to fix it. </span></div>
</div>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/-YP_xEjkUGU&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/-YP_xEjkUGU&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/emails-not-showing-up-they-are-probably-being-mistakenly-tagged-as-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TourVista Virtual Tours</title>
		<link>http://www.supint.com/portfolio/tourvista-virtual-tours/</link>
		<comments>http://www.supint.com/portfolio/tourvista-virtual-tours/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 18:47:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.supint.com/new/?p=3</guid>
		<description><![CDATA[TourVista Virtual Tours www.tourvista.com TourVista is changing the way real estate is marketed online. Through the use of custom technology created by Superlative, TourVista&#8217;s users are able to generate a website for their property, including the extremely useful interactive floor plans. In addition, Superlative has created myriad customizations to TourVista&#8217;s website and administrative features, allowing [...]]]></description>
			<content:encoded><![CDATA[<div class="portfolio-photo"><a href="http://www.tourvista.com/"><img class="alignnone size-full wp-image-60" title="tourvista-virtual-tours" src="http://www.supint.com/wp-content/uploads/2009/07/tourvista-virtual-tours.jpg" alt="tourvista-virtual-tours" width="300" height="275" /></a></div>
<div class="portfolio-content">
<div class="portfolio-title">TourVista Virtual Tours</div>
<div class="portfolio-url"><a href="http://www.tourvista.com/">www.tourvista.com</a></div>
<div class="portfolio-description">TourVista is changing the way real estate is marketed online. Through the use of custom technology created by Superlative, TourVista&#8217;s users are able to generate a website for their property, including the extremely useful interactive floor plans.</div>
<div class="portfolio-description">In addition, Superlative has created myriad customizations to TourVista&#8217;s website and administrative features, allowing TourVista to better manage its customers and its business processes.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/tourvista-virtual-tours/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scan Design Furniture</title>
		<link>http://www.supint.com/portfolio/scan-design-furniture/</link>
		<comments>http://www.supint.com/portfolio/scan-design-furniture/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 05:24:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=39</guid>
		<description><![CDATA[Scan Design Furniture www.scan-design.com Scan Design offers contemporary furniture at a variety of locations in the Pacific Northwest.  Their new website needed to better showcase their furniture online and drive traffic into their retail stores.  In addition, they also wanted to be able to manage the website content in-house for convenience and cost-savings. Our solution [...]]]></description>
			<content:encoded><![CDATA[<div class="portfolio-photo"><a href="http://www.scan-design.com/"><img class="alignnone size-full wp-image-50" title="scan-design-furniture" src="http://www.supint.com/wp-content/uploads/2009/07/scan-design-furniture.jpg" alt="scan-design-furniture" width="300" height="275" /></a></div>
<div class="portfolio-content">
<div class="portfolio-title">Scan Design Furniture</div>
<div class="portfolio-url"><a href="http://www.scan-design.com/">www.scan-design.com</a></div>
<div class="portfolio-description">Scan Design offers contemporary furniture at a variety of locations in the Pacific Northwest.  Their new website needed to better showcase their furniture online and drive traffic into their retail stores.  In addition, they also wanted to be able to manage the website content in-house for convenience and cost-savings.</div>
<div class="portfolio-description">Our solution was to build their new website on an e-commerce platform, serving information from a database and allowing them to manage the content internally.  An email newsletter was also setup, enabling Scan Design to stay in close contact with their target audience on a monthly basis.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/scan-design-furniture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pandora Bracelet Builder</title>
		<link>http://www.supint.com/portfolio/pandora-bracelet-builder/</link>
		<comments>http://www.supint.com/portfolio/pandora-bracelet-builder/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 06:54:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=82</guid>
		<description><![CDATA[Pandora Bracelet Builder View the demo video c&#8217;est la Vie challenged Superlative with the Pandora Bracelet Builder.  The objective was to create an interactive tool where visitors could build a bracelet online and order it directly from c&#8217;est la Vie&#8217;s website. Superlative pushed Flash technology to the max, integrating it with a ColdFusion-powered shopping cart [...]]]></description>
			<content:encoded><![CDATA[<div class="portfolio-photo"><a href="http://www.supint.com/portfolio/pandora-bracelet-builder/"><img class="alignnone size-full wp-image-83" title="cest-la-vie-catalog-pandora-builder" src="http://www.supint.com/wp-content/uploads/2009/07/cest-la-vie-catalog-pandora-builder.jpg" alt="cest-la-vie-catalog-pandora-builder" width="300" height="275" /></a></div>
<div class="portfolio-content">
<div class="portfolio-title">Pandora Bracelet Builder</div>
<div class="portfolio-url"><a href="http://www.supint.com/portfolio/pandora-bracelet-builder/">View the demo video</a></div>
<div class="portfolio-description">c&#8217;est la Vie challenged Superlative with the Pandora Bracelet Builder.  The objective was to create an interactive tool where visitors could build a bracelet online and order it directly from c&#8217;est la Vie&#8217;s website.</div>
<div class="portfolio-description">Superlative pushed Flash technology to the max, integrating it with a ColdFusion-powered shopping cart application. End users were able to create customized jewelry by simply dragging and dropping each item onto a virtual bracelet.</div>
</div>
<div style="clear:both;"></div>
<div style="margin:20px auto;">
<object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/i4L0cfvS-bI&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/i4L0cfvS-bI&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/pandora-bracelet-builder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trim Inc Clothing</title>
		<link>http://www.supint.com/portfolio/trim-inc-clothing/</link>
		<comments>http://www.supint.com/portfolio/trim-inc-clothing/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 04:37:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=260</guid>
		<description><![CDATA[Trim Inc Clothing www.trimincclothing.com Trim Inc is a Southern California based apparel company committed to bringing clothing and accessories with high quality, comfort and design. Trim has a strong commitment to the community by supporting programs such as youth physical fitness and music programs. Trim&#8217;s founding Partners believe in giving back to programs that have [...]]]></description>
			<content:encoded><![CDATA[<div class="portfolio-photo"><a href="http://www.trimincclothing.com/"><img class="alignnone size-full wp-image-50" title="trim-inc-clothing" src="http://www.supint.com/wp-content/uploads/2009/07/trim-inc-clothing.jpg" alt="trim-inc-clothing" width="300" height="275" /></a></div>
<div class="portfolio-content">
<div class="portfolio-title">Trim Inc Clothing</div>
<div class="portfolio-url"><a href="http://www.trimincclothing.com/">www.trimincclothing.com</a></div>
<div class="portfolio-description">Trim Inc is a Southern California based apparel company committed to bringing clothing and accessories with high quality, comfort and design. Trim has a strong commitment to the community by supporting programs such as youth physical fitness and music programs. Trim&#8217;s founding Partners believe in giving back to programs that have influenced their lives.</div>
<div class="portfolio-description">Their e-commerce website was built to order with a focus on a simple user experience from shopping their virtual shelves through the checkout process.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/trim-inc-clothing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

