<?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>websitedesignby.com</title>
	<atom:link href="http://www.websitedesignby.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.websitedesignby.com</link>
	<description>Web Site Design and Programming - Naples, Florida</description>
	<lastBuildDate>Wed, 16 Jun 2010 13:02:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress Website Development Work Flow: wp-config.php</title>
		<link>http://www.websitedesignby.com/programming/wordpress-website-development-work-flow-wp-config-php/</link>
		<comments>http://www.websitedesignby.com/programming/wordpress-website-development-work-flow-wp-config-php/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 12:59:00 +0000</pubDate>
		<dc:creator>Ross</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.websitedesignby.com/?p=642</guid>
		<description><![CDATA[When I am working on a website I have a local development version that I program and test locally. When an update is implemented, it is tested locally before it is copied to the live server. Wordpress sites are treated no differently. Here is how you can make the wp-config.php portable to work in your [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.websitedesignby.com/wp-content/uploads/local_live_sign1.jpg" alt="" title="local_live_sign" width="300" height="257" class="alignnone size-full wp-image-667" align="right" style="padding:10px;" />When I am working on a website I have a local development version that I program and test locally. When an update is implemented, it is tested locally before it is copied to the live server. Wordpress sites are treated no differently. Here is how you can make the wp-config.php portable to work in your live and local environment. Simply replace the variables below with the actual information for your web site and you will be have a wp-config.php that can happily thrive in both environments. </p>
<p>I defined an additional constant &#8216;LIVE&#8217; that I can refer to elsewhere in my code to determine if I am on the live server or not.</p>
<p><strong>wp-config.php</strong></p>
<div class="code">
<?php<br />
<span class="highlight"><br />
if($_SERVER['HTTP_HOST']==&#8217;livedomain.com&#8217; || $_SERVER['HTTP_HOST']==&#8217;www.livedomain.com&#8217;){</p>
<div class="indent">
	define(&#8216;DB_NAME&#8217;, &#8216;db_name_live&#8217;);    // The name of the database<br />
	define(&#8216;DB_USER&#8217;, &#8216;mysql_username_live&#8217;);     // Your MySQL username<br />
	define(&#8216;DB_PASSWORD&#8217;, &#8216;mysql_password_live&#8217;); // &#8230;and password<br />
	define(&#8216;DB_HOST&#8217;, &#8216;localhost&#8217;);    // db host<br />
	define(&#8216;DB_CHARSET&#8217;, &#8216;utf8&#8242;);<br />
	define(&#8216;DB_COLLATE&#8217;, &#8221;);<br />
	define(&#8216;AUTH_KEY&#8217;, &#8216;put your unique phrase here&#8217;);<br />
	define(&#8216;SECURE_AUTH_KEY&#8217;, &#8216;put your unique phrase here&#8217;);<br />
	define(&#8216;LOGGED_IN_KEY&#8217;, &#8216;put your unique phrase here&#8217;);<br />
	define(&#8216;LIVE&#8217;, true);
</div>
<p>}else{</p>
<div class="indent">
	define(&#8216;DB_NAME&#8217;, &#8216;name_of_db_local&#8217;);    // The name of the database<br />
	define(&#8216;DB_USER&#8217;, &#8216;mysql_username_local&#8217;);     // Your MySQL username<br />
	define(&#8216;DB_PASSWORD&#8217;, &#8216;mysql_password_local&#8217;); // &#8230;and password<br />
	define(&#8216;DB_HOST&#8217;, &#8216;localhost&#8217;);    // db host<br />
	define(&#8216;DB_CHARSET&#8217;, &#8216;utf8&#8242;);<br />
	define(&#8216;DB_COLLATE&#8217;, &#8221;);<br />
	define(&#8216;AUTH_KEY&#8217;, &#8216;put your unique phrase here&#8217;);<br />
	define(&#8216;SECURE_AUTH_KEY&#8217;, &#8216;put your unique phrase here&#8217;);<br />
	define(&#8216;LOGGED_IN_KEY&#8217;, &#8216;put your unique phrase here&#8217;);<br />
	define(&#8216;LIVE&#8217;, false);
</div>
<p>}<br />
</span><br />
// You can have multiple installations in one database if you give each a unique prefix<br />
$table_prefix  = &#8216;wp_&#8217;;   // Only numbers, letters, and underscores please!</p>
<p>// Change this to localize WordPress.  A corresponding MO file for the<br />
// chosen language must be installed to wp-content/languages.<br />
// For example, install de.mo to wp-content/languages and set WPLANG to &#8216;de&#8217;<br />
// to enable German language support.<br />
define (&#8216;WPLANG&#8217;, &#8221;);</p>
<p>/* That&#8217;s all, stop editing! Happy blogging. */</p>
<p>if ( !defined(&#8216;ABSPATH&#8217;) )<br />
	define(&#8216;ABSPATH&#8217;, dirname(__FILE__) . &#8216;/&#8217;);<br />
require_once(ABSPATH . &#8216;wp-settings.php&#8217;);<br />
?></p>
</div>
<h3>MySQL Queries</h3>
<p>Another thing to be conscious of when moving between a live and local server environment with Wordpress are couple of records in the wp_options table of the database. The <em>siteurl</em> and <em>liveurl</em> records will be different in your local environment and live environment. If you copy your database from one to the other, just run the appropriate query below (with the <em>liveurl</em> and <em>localurl</em> variables changed to your actual data) depending on if you are copying from local to live or live to local.</p>
<h3>Live to Local Query</h3>
<p>Run query on local database.</p>
<div class="code">
UPDATE wp_options SET option_value=&#8217;http://localurl.com&#8217; WHERE option_name=&#8217;siteurl&#8217; ;</p>
<p>UPDATE wp_options SET option_value=&#8217;http://localurl.com&#8217; WHERE option_name=&#8217;home&#8217;
</p></div>
<h3>Local to Live Query</h3>
<p>Run query on live database.</p>
<div class="code">
UPDATE wp_options SET option_value=&#8217;<em>http://liveurl.com</em>&#8216; WHERE option_name=&#8217;siteurl&#8217; ;</p>
<p>UPDATE wp_options SET option_value=&#8217;http://liveurl.com&#8217; WHERE option_name=&#8217;home&#8217;
</p></div>
<p>If you have any questions or suggestions, your comments are welcome below.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.websitedesignby.com%2Fprogramming%2Fwordpress-website-development-work-flow-wp-config-php%2F&amp;linkname=Wordpress%20Website%20Development%20Work%20Flow%3A%20wp-config.php"><img src="http://www.websitedesignby.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.websitedesignby.com/programming/wordpress-website-development-work-flow-wp-config-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What is this Wave you speak of?</title>
		<link>http://www.websitedesignby.com/apis/what-is-this-wave-you-speak-of/</link>
		<comments>http://www.websitedesignby.com/apis/what-is-this-wave-you-speak-of/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 12:27:59 +0000</pubDate>
		<dc:creator>Ross</dc:creator>
				<category><![CDATA[APIs]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[google code]]></category>
		<category><![CDATA[google wave]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.websitedesignby.com/?p=609</guid>
		<description><![CDATA[
If you do a lot of Emailing back in forth as I often do, you may want to try Google Wave. Google Wave is still an invitation-only beta (Gmail was an invitation-only beta from 2004-2007 years before being released to the public), so you will need an invite to start using it. I have about [...]]]></description>
			<content:encoded><![CDATA[<p>
If you do a lot of Emailing back in forth as I often do, you may want to try Google Wave.<img src="http://www.websitedesignby.com/wp-content/uploads/tim.jpg" alt="Tim the Enchanter" title="Tim the Enchanter" width="100" height="99" class="size-full wp-image-610" align="left" style="margin-right:10px;" /> Google Wave is still an invitation-only beta <em>(Gmail was an invitation-only beta from 2004-2007 years before being released to the public)</em>, so you will need an invite to start using it. I have about 10 invites left, so you can drop me a note and I will send you one if you are interested in trying it and promise to post something nice in <a href="http://www.websitedesignby.com/wave/">my wave</a>. Google Wave is hard to describe as I am quite a wave newbie myself. It is an amalgamation of Email, chat, bulletin board, shared document and a live meeting.</p>
<p><a href="http://www.websitedesignby.com/wave/"><img src="http://www.websitedesignby.com/wp-content/uploads/google_wave.jpg" alt="Google Wave" title="Google Wave" width="239" height="205" align="right" /></a>Since wave is currently the bleeding edge of technology, you will need a couple things besides an invite to make your web browser Wave ready. First of all I recommend using <a href="http://www.mozilla.com/firefox">Firefox</a>, so if you don&#8217;t have that web browser go ahead and install it. Next go install <a href="http://gears.google.com/" target="_blank">gears</a>. Ok you should be all set! Now go visit <a href="http://www.websitedesignby.com/wave/">my wave</a> and try it out.</p>
<p>You will probably need to watch some of the videos and read the instructions at <a href="http://wave.google.com/about.html" target="_blank">wave.google.com/about.html</a>. If you have other resources and links, please share them in <a href="http://www.websitedesignby.com/wave/">my wave</a>. I am still a little perplexed by it all myself, but see some potential here. Who knows, maybe this thing will be really useful when it gets out of beta in 2013.</p>
<p>Thanks <a href="http://blog.zenika.com/index.php?post/2010/01/27/Google-Wave-Embedded-API-the-missing-tutorial">blog.zenika.com</a> for sorting out the details.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.websitedesignby.com%2Fapis%2Fwhat-is-this-wave-you-speak-of%2F&amp;linkname=What%20is%20this%20Wave%20you%20speak%20of%3F"><img src="http://www.websitedesignby.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.websitedesignby.com/apis/what-is-this-wave-you-speak-of/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Girl From Jersey</title>
		<link>http://www.websitedesignby.com/portfolio/a-girl-from-jersey/</link>
		<comments>http://www.websitedesignby.com/portfolio/a-girl-from-jersey/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 20:39:33 +0000</pubDate>
		<dc:creator>Ross</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[photogallery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://www.websitedesignby.com/?p=595</guid>
		<description><![CDATA[
This site was custom developed for &#8216;A Girl From Jersey&#8217; creations: unique coastal gifts available for wholesale to  retailers.
The Problem
When Joanne initially approached me, she had a basic site that a friend had created using WordPress. She did not feel the site was a true representation of the quality of her work and did [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.agirlfromjersey.com" target="_blank"><img class="alignnone size-full wp-image-596" title="agfj_portfolio" src="http://www.websitedesignby.com/wp-content/uploads/agfj_portfolio.jpg" border="1" alt="A Girl From Jersey" width="700" height="528" /></a></p>
<p>This site was custom developed for &#8216;A Girl From Jersey&#8217; creations: unique coastal gifts available for wholesale to  retailers.</p>
<h2>The Problem</h2>
<p>When Joanne initially approached me, she had a basic site that a friend had created using WordPress. She did not feel the site was a true representation of the quality of her work and did not have the level of professionalism she wanted to portray her business. It was also difficult for her to maintain as she only had a few pages of content but needed the ability to upload multiple photos into various categories and themes. The way the site was set up was not optimized for the photo gallery type setup she needed. I figured I could give her WordPress template a makeover and install a photo gallery plug-in. After researching plug-ins for galleries I did not find the perfect one I was looking for. Specifically we to be able to upload products and associate multiple categories and themes to each photo. On the front end we wanted visitors to be able to browse a category and have the photos separated and sorted by theme and when browsing a theme, separated and sorted by category. Seemed simple enough, however I never found what we were looking for.</p>
<h2>The Solution</h2>
<p>In thinking about the design and needing to move forward with the project I decided to build the content management system myself.</p>
<h2>The Result</h2>
<blockquote><p>
Dear Ross,</p>
<p>Thank you so much for all of your efforts on my new website.  The process has been enjoyable from start to finish. I&#8217;ve been able to express my present and future needs to you, which you have taken and turned into a beautiful website that meets my current needs and can expand as my business does.  I don&#8217;t know which I appreciate more:  the website that is visible to all visitors or the part that only I see.  As an artist/manufacturer, I get paid for the produts I sell, not for the number of hours I put into maintaining my website.  So the easier it is for me to upload photos of new work, the sooner I can get back to painting.  And the behind-the-scenes tools you have given me to maintain my site do just that.  They are wonderful!!!  I didn&#8217;t need to take classes, buy special software or enter into a 2-yr commitment; you&#8217;ve made updating my site as easy as sending an email with an attachment!!  I look forward to using your services in the future as my business grows and will gladly recommend you.  It has been a pleasure!  Thank you!</p>
<p>Joanne Murphy
</p></blockquote>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.websitedesignby.com%2Fportfolio%2Fa-girl-from-jersey%2F&amp;linkname=A%20Girl%20From%20Jersey"><img src="http://www.websitedesignby.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.websitedesignby.com/portfolio/a-girl-from-jersey/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adobe Flash CS5 is Coming&#8230;</title>
		<link>http://www.websitedesignby.com/flash/adobe-flash-cs5-is-coming/</link>
		<comments>http://www.websitedesignby.com/flash/adobe-flash-cs5-is-coming/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 12:11:56 +0000</pubDate>
		<dc:creator>Ross</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Action Script]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Creative Suite]]></category>
		<category><![CDATA[cs5]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.websitedesignby.com/?p=574</guid>
		<description><![CDATA[I am much more excited about the release of CS5 than I was for the launch of the iPad. This one looks like it might actually be worthy of the hype.]]></description>
			<content:encoded><![CDATA[<p>I am looking forward to the launch of Adobe CS5. Although I have never been an early adopter of major software releases, preferring to read others feedback and take my time to understand the benefit of new features before shelling out hundreds of dollars, this release has my attention.</p>
<p><strong>Adobe Flash CS5</strong><br />
I just got through watching a sneak peak of Flash CS5 at <a href="http://www.gotoandlearn.com" target="_blank">gotoAndLearn.com</a> and it looks like Adobe is hitting the <em>suite</em> spot when it comes to what developers are looking for.</p>
<p>Text handling and fonts have always been a weak point when working in Flash. I am impressed with the features in CS5 that address text flow, better multi-lingual character support and the new font palette.</p>
<p>Flash has established itself as the most popular video streaming platform on the web today. Being able to scrub the video on the stage and add ActionScript cuepoints will be extremely useful timesavers.</p>
<p>Flash&#8217;s real power lies in it&#8217;s powerful ActionScript programming language that gives developers the freedom to shape the user experience without limits. Code snippets and a host of new features make it easier for programmers to control Flash using ActionScript. The XML-based source files are interesting too. From what I can tell at this early stage it looks like Flash is opening up their traditionally closed, complied SWF files for developers to be able to edit it&#8217;s properties and library items on the fly. Not only will this help with using version control, but also unlocks some interesting possibilities with custom content management systems.</p>
<p>The most hype about this release is centered around it&#8217;s <strong>wide distribution</strong> feature. In a nutshell, Adobe wants to allow a project created in Flash to be deployable across any platform (web, desktop, mobile, tablet). Ahead of this release Apple has announced it will not support applications developed using 3rd party (Adobe) software on the operating system running their widely popular iPhones, iTouches and iPads.  This latest plot twist in the friction between Apple and Adobe definitely puts a crimp into this feature. However even without the Apple devices this feature will make it easier for developers to port their applications created in Flash to other popular mobile devices running Google&#8217;s Android, Windows and others. </p>
<p>I am much more excited about the release of Adobe&#8217;s CS5 than I was for the launch of the iPad. This one looks like it might actually be worthy of the hype.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.websitedesignby.com%2Fflash%2Fadobe-flash-cs5-is-coming%2F&amp;linkname=Adobe%20Flash%20CS5%20is%20Coming%26%238230%3B"><img src="http://www.websitedesignby.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.websitedesignby.com/flash/adobe-flash-cs5-is-coming/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Big Boy EXPO photos</title>
		<link>http://www.websitedesignby.com/general/big-boy-expo-photos/</link>
		<comments>http://www.websitedesignby.com/general/big-boy-expo-photos/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 14:11:51 +0000</pubDate>
		<dc:creator>Ross</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[big boy expo]]></category>
		<category><![CDATA[expo]]></category>
		<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://www.websitedesignby.com/?p=569</guid>
		<description><![CDATA[I posted photos from the Big Boy EXPO in Estero, Florida on Flickr and FaceBook.

View them on FaceBook
View them on Flickr
]]></description>
			<content:encoded><![CDATA[<p>I posted photos from the Big Boy EXPO in Estero, Florida on Flickr and FaceBook.<br />
<a href="http://www.facebook.com/album.php?aid=151262&#038;id=280579684484"><br />
View them on FaceBook</a></p>
<p><a href="http://www.flickr.com/photos/22435897@N00/sets/72157623543264892/show/">View them on Flickr</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.websitedesignby.com%2Fgeneral%2Fbig-boy-expo-photos%2F&amp;linkname=Big%20Boy%20EXPO%20photos"><img src="http://www.websitedesignby.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.websitedesignby.com/general/big-boy-expo-photos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Big Boy Show &#8211; Germain Arena 2/14, 2/15 2010</title>
		<link>http://www.websitedesignby.com/general/big-boy-show-germain-arena-214-215-2010/</link>
		<comments>http://www.websitedesignby.com/general/big-boy-show-germain-arena-214-215-2010/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 11:38:43 +0000</pubDate>
		<dc:creator>Ross</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[big boy expo]]></category>
		<category><![CDATA[big boy show]]></category>
		<category><![CDATA[exhibitions]]></category>
		<category><![CDATA[expo]]></category>
		<category><![CDATA[show trade show]]></category>

		<guid isPermaLink="false">http://www.websitedesignby.com/?p=528</guid>
		<description><![CDATA[I think everyone involved would agree the show was major a success this year. It was a pleasure participating this year and meeting so many of you at the show. I really was impressed at the number of activities and attractions, the amount of visitors and the quality of the exhibitors. If I didn&#8217;t get [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bigboyshow.com" target="_blank"><img src="http://www.websitedesignby.com/wp-content/uploads/bigboy_banner1.jpg" alt="Big Boy Show" title="bigboy_banner" width="326" height="162" align="left" style="padding-right:10px;padding-bottom:10px" /></a>I think everyone involved would agree the show was major a success this year. It was a pleasure participating this year and meeting so many of you at the show. I really was impressed at the number of activities and attractions, the amount of visitors and the quality of the exhibitors. If I didn&#8217;t get a chance to talk to you at the show please <a href="http://www.websitedesignby.com/profile/">drop me a line</a> and we can talk about your experience at the show. See you in Charlotte in September and back at Germain in October!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.websitedesignby.com%2Fgeneral%2Fbig-boy-show-germain-arena-214-215-2010%2F&amp;linkname=Big%20Boy%20Show%20%26%238211%3B%20Germain%20Arena%202%2F14%2C%202%2F15%202010"><img src="http://www.websitedesignby.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.websitedesignby.com/general/big-boy-show-germain-arena-214-215-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PayPal &#8211; Authorize.net &#8211; Google Checkout</title>
		<link>http://www.websitedesignby.com/uncategorized/paypal-authroize-net-google-checkout/</link>
		<comments>http://www.websitedesignby.com/uncategorized/paypal-authroize-net-google-checkout/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 15:46:17 +0000</pubDate>
		<dc:creator>Ross</dc:creator>
				<category><![CDATA[APIs]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[authorize.net]]></category>
		<category><![CDATA[Google Checkout]]></category>
		<category><![CDATA[PayPal]]></category>

		<guid isPermaLink="false">http://www.websitedesignby.com/?p=448</guid>
		<description><![CDATA[There are multiple options when accepting payment online. This post will focus on 3 of the most popular payment methods: PayPal, Authorize.net, Google Checkout and the possibilities that exist for using all 3.

PayPal offers 3 methods to use their service to accept payment online: Express Checkout, Website Payments Standard and Website Payments Pro.
PayPal Express Checkout
PayPal [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.websitedesignby.com/wp-content/uploads/paypal_auth_net_google.gif" alt="Accepting Payment Online" title="paypal_auth_net_google" width="185" height="185" align="right" />There are multiple options when accepting payment online. This post will focus on 3 of the most popular payment methods: PayPal, Authorize.net, Google Checkout and the possibilities that exist for using all 3.</p>
<p><img src="http://www.websitedesignby.com/wp-content/uploads/paypal.gif" alt="" title="paypal" width="112" height="35" class="alignnone size-full wp-image-508" /><br />
PayPal offers 3 methods to use their service to accept payment online: Express Checkout, Website Payments Standard and Website Payments Pro.</p>
<h3>PayPal Express Checkout</h3>
<p>PayPal Express Checkout allows visitors to pay using their PayPal account. The visitor must have a PayPal account to use Express checkout. This option will be chosen by a visitor who is comfortable using PayPal versus entering their credit card information. If you have Website Payments Pro or Website Payments Standard integrated it is required to offer Express Checkout as a payment option. PayPal Express Checkout may also be offered in addition to Authorize.net, Google Checkout or any other merchant service you may use.</p>
<h3>PayPal Website Payments Standard</h3>
<p>When a customer pays using website Payments Standard they temporarily leave your web site and go to PayPal to enter their credit card information. This process is relatively painless but may not be ideal depending on your situation. The benefits of using PayPal Website Payments Standard include: easy set up, no monthly fee and a SSL (Secure Socket Layer) is not required on your site since the actual shopping cart and checkout page is hosted on PayPal and not your web site. </p>
<h3>PayPal Website Payments Pro</h3>
<p>PayPal Website Payments Pro is PayPal&#8217;s merchant service that allows you to accept credit cards directly on your site. The funds from the transaction will go to your PayPal account. As with most merchant accounts there is a monthly fee associated with Website Payments Pro (currently $30.). PayPal Express Checkout must be included as a payment option with PayPal Website Payments Pro.</p>
<p><img src="http://www.websitedesignby.com/wp-content/uploads/authorize_net.gif" alt="Authorize.net" title="authorize_net" width="180" height="47" class="alignnone size-full wp-image-489" /><br />
Authorize.net provides a payment gateway for you to accept credit cards directly on your web site. The benefits of Authorize.net include low cost and direct integration using a trusted merchant service provider. Authorize.net can be used to process credit cards in addition to offering PayPal Express Checkout and Google Checkout.</p>
<p>There are a variety of ways to integrate with Authorize.net. Typically Web Site Design By, LLC will integrate Authorize.net directly with a shopping cart or custom checkout application on your web site. We are an an Authorized.net affiliate reseller. Please use the button below to start your application process. Start now by creating a login.<br />
<a href="https://ems.authorize.net/oap/home.aspx?SalesRepID=39&#038;ResellerID=15319"><img src="http://www.authorize.net/images/reseller/oap_sign_up.gif" height="38" width="135" border="0" /></a></p>
<p><img src="http://www.websitedesignby.com/wp-content/uploads/google_checkout.gif" alt="Google Checkout" title="google_checkout" width="253" height="41" class="alignnone size-full wp-image-491" /><br />
Google provides another payment option for shoppers who prefer to checkout using Google Checkout. Visitors must have a Google Checkout Account or register for one to pay using Google Checkout. With Google Checkout, Google simply stores the visitors credit card information and transfers the funds to your bank. There is a fee associated with each transaction.  Google Checkout can be implemented in addition to PayPal and Authorize.net.</p>
<p><a href="/profile">Tell us</a> about your specific plans for accepting payments online and we will help you implement the best possible solution.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.websitedesignby.com%2Funcategorized%2Fpaypal-authroize-net-google-checkout%2F&amp;linkname=PayPal%20%26%238211%3B%20Authorize.net%20%26%238211%3B%20Google%20Checkout"><img src="http://www.websitedesignby.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.websitedesignby.com/uncategorized/paypal-authroize-net-google-checkout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Authorize.net</title>
		<link>http://www.websitedesignby.com/e-commerce/authorize-net/</link>
		<comments>http://www.websitedesignby.com/e-commerce/authorize-net/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 11:46:15 +0000</pubDate>
		<dc:creator>Ross</dc:creator>
				<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[authorize.net]]></category>
		<category><![CDATA[merchant service]]></category>
		<category><![CDATA[payment gateway]]></category>
		<category><![CDATA[PayPal]]></category>
		<category><![CDATA[shopping cart]]></category>

		<guid isPermaLink="false">http://www.websitedesignby.com/?p=443</guid>
		<description><![CDATA[I have been using authorize.net as a merchant service provider for many years. They provide a payment gateway that enables you to authorize, settle, and manage credit card and electronic check payments. Their payment gateway can be integrated into your web site to accept payment online, or you can use their virtual terminal to process [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using authorize.net as a merchant service provider for many years. They provide a payment gateway that enables you to authorize, settle, and manage credit card and electronic check payments. Their payment gateway can be integrated into your web site to accept payment online, or you can use their virtual terminal to process credit cards manually.</p>
<p>Are you ready to get started with your authorize.net application process?<br />
<a href="https://ems.authorize.net/oap/home.aspx?SalesRepID=39&#038;ResellerID=15319"><img src="http://www.authorize.net/images/reseller/oap_sign_up.gif" height="38" width="135" border="0" alt="sign up now" /></a></p>
<p>If you would like more information about authorize.net or accepting credit cards on your web site please <a href="http://www.websitedesignby.com/profile">contact us</a>.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.websitedesignby.com%2Fe-commerce%2Fauthorize-net%2F&amp;linkname=Authorize.net"><img src="http://www.websitedesignby.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.websitedesignby.com/e-commerce/authorize-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Big Boy EXPO &#8211; 2009</title>
		<link>http://www.websitedesignby.com/portfolio/big-boy-expo-2009/</link>
		<comments>http://www.websitedesignby.com/portfolio/big-boy-expo-2009/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 20:42:08 +0000</pubDate>
		<dc:creator>Ross</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[big boy expo]]></category>
		<category><![CDATA[big boy show]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[estero]]></category>
		<category><![CDATA[exhibitions]]></category>
		<category><![CDATA[expo]]></category>
		<category><![CDATA[Florida]]></category>
		<category><![CDATA[ft myers]]></category>
		<category><![CDATA[naples]]></category>

		<guid isPermaLink="false">http://www.websitedesignby.com/?p=398</guid>
		<description><![CDATA[

This was a re-design of an existing web site for the Big Boy Show. In addition to a new look and feel, we selected a better domain name for branding built the site on drupal, a robust content management system for easy updates and future expansion.


Dear Ross,
Thank you for updating the Big Boy EXPO web [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bigboyshow.com" target="_blank"><img src="http://www.websitedesignby.com/wp-content/uploads/bigboy_700.jpg" alt="Big Boy EXPO" title="bigboy_700" width="700" height="480" class="alignleft size-full wp-image-399" /></a></p>
<p>
This was a re-design of an existing web site for the Big Boy Show. In addition to a new look and feel, we selected a better domain name for branding built the site on <a href="http://www.drupal.org" target="_blank">drupal</a>, a robust content management system for easy updates and future expansion.
</p>
<blockquote><p>
Dear Ross,</p>
<p>Thank you for updating the Big Boy EXPO web site. I love the new layout and the ability to easily update the images and copy whenever necessary. My clients are excited about the new design for the fact that I can incorporate images of the latest exhibits featured at the show, and the Vimeo gives visitors the opportunity to view the many activities that we offer for their entertainment.</p>
<p>Marlene Rivello<br />
President<br />
Big Boy EXPOS, Inc.
</p></blockquote>
<p>
<a href="http://www.bigboyshow.com" target="_blank">View Project</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.websitedesignby.com%2Fportfolio%2Fbig-boy-expo-2009%2F&amp;linkname=Big%20Boy%20EXPO%20%26%238211%3B%202009"><img src="http://www.websitedesignby.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.websitedesignby.com/portfolio/big-boy-expo-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NatureSong 2009 Redesign</title>
		<link>http://www.websitedesignby.com/apis/229/</link>
		<comments>http://www.websitedesignby.com/apis/229/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 23:32:31 +0000</pubDate>
		<dc:creator>Ross</dc:creator>
				<category><![CDATA[APIs]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PayPal]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[UPS]]></category>

		<guid isPermaLink="false">http://www.websitedesignby.com/?p=229</guid>
		<description><![CDATA[

naturesong.net was redesigned in 2009 to address some issues with the shopping cart, integrate a reseller login so resellers can log in and purchase CDs at a discount and NET 30 payment terms and generally update the look and feel of the site.


The shopping cart and content management system is completely custom. I decided to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.naturesong.net" target="_blank"><img src="http://www.websitedesignby.com/wp-content/uploads/naturesong_700.jpg" alt="Nature Song 2009" title="naturesong.net" width="700" height="542" class="size-medium wp-image-230" /></a></p>
<p>
<a href="http://www.naturesong.net" target="_blank">naturesong.net</a> was redesigned in 2009 to address some issues with the shopping cart, integrate a reseller login so resellers can log in and purchase CDs at a discount and NET 30 payment terms and generally update the look and feel of the site.
</p>
<p>
The shopping cart and content management system is completely custom. I decided to create a custom system for this site because I had a clear vision of how it should work. The owner, Bill Leverick, wanted to be able to easily update the CDs available for sale. I knew there were off-the-shelf shopping carts and content management systems I could probably have used or customized. Because these products had an &#8216;audio sample&#8217; component to them that we needed to attach and be able to associate audio files with multiple products, I decided to build it myself. The site integrates PayPal Website Payments Pro for it&#8217;s merchant service provider and the UPS API to get shipping information from UPS in real-time for orders with quantities above 2 CDs. The AJAX overlay for each product uses the jQuery framework to handle the JavaScript effects.
</p>
<p>
In retrospect I am happy with my decision to go completely custom with this site. It allowed me to develop exactly what the client was looking for without excess functionality that he didn&#8217;t want or need and might have confused the process. It also allowed me to address his fine-tuning requests quickly and not have to compromise because of an off-the-shelf software limitation.
</p>
<p>
Here is a quote from the owner:</p>
<blockquote><p>Ross,<br />
I just logged on to check out the new NatureSong site that you activated today. I am very pleased not only with the graphics, but with the built in ability for me to make necessary changes to the products. You have done a great job and I would heartily recommend you to anyone. Please feel free to use this site and my other web site, <a href="http://www.capcodnewenglandgiftshow.com" target="_blank">Cape Cod &#038; New England Gift Show</a> as examples of your work.<br />
Thanks,<br />
Bill Leverick</p></blockquote>
<p><a href="http://www.naturesong.net" target="_blank">View Project</a></p>
<p><span style="font-size:10px;">The original site I developed in 1998 can be seen <a href="http://www.websitedesignby.com/addesignconcepts/2005/portfolio/flash/naturesong/index_flash.html" target="_blank">here</a>.</span></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.websitedesignby.com%2Fapis%2F229%2F&amp;linkname=NatureSong%202009%20Redesign"><img src="http://www.websitedesignby.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.websitedesignby.com/apis/229/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
