<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>E-Moxie Website Design &amp; Development Resources</title>
	
	<link>http://www.e-moxie.com/resources</link>
	<description>Customer Resources, FAQ and Tips</description>
	<lastBuildDate>Sat, 07 Nov 2009 02:54:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/emoxie" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="emoxie" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Baltimore PHP Group</title>
		<link>http://www.e-moxie.com/resources/news/baltimore-php-group/</link>
		<comments>http://www.e-moxie.com/resources/news/baltimore-php-group/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 02:53:38 +0000</pubDate>
		<dc:creator>Matt Pramschufer</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.e-moxie.com/resources/?p=444</guid>
		<description><![CDATA[Just a little FYI that we will be continuing to organize the Baltimore PHP Group.  We have decided to migrate form www.meetup.com and switch it to it&#8217;s own domain www.baltimorephp.org.  Over the next couple of months we will be developing the baltimore website developers group site and would like to know if you [...]]]></description>
			<content:encoded><![CDATA[<p>Just a little FYI that we will be continuing to organize the Baltimore PHP Group.  We have decided to migrate form www.meetup.com and switch it to it&#8217;s own domain <a href="http://www.baltimorephp.org" target="_blank">www.baltimorephp.org</a>.  Over the next couple of months we will be developing the <a href="http://www.e-moxie.com">baltimore website developers</a> group site and would like to know if you have any requests or comments.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Baltimore+PHP+Group+http://migss.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.e-moxie.com/resources/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.e-moxie.com/resources/news/baltimore-php-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Window When User Leaves Site</title>
		<link>http://www.e-moxie.com/resources/tips/open-window-when-user-leaves-site/</link>
		<comments>http://www.e-moxie.com/resources/tips/open-window-when-user-leaves-site/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 16:19:49 +0000</pubDate>
		<dc:creator>Matt Pramschufer</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.e-moxie.com/resources/?p=436</guid>
		<description><![CDATA[We just ran into a situation where we had a legitimate reason to display a popup window when a visitor was leaving a website either by closing the browser window or by navigating to an external site.  After much searching we found there was no solution that would work 100%, even this solution does not [...]]]></description>
			<content:encoded><![CDATA[<p>We just ran into a situation where we had a legitimate reason to display a popup window when a visitor was leaving a website either by closing the browser window or by navigating to an external site.  After much searching we found there was no solution that would work 100%, even this solution does not work 100% but we got it close enough that we are happy with it.</p>
<h3>The Problem</h3>
<p>We want to pop open a window which contains a  survey when a visitor leaves the site either by external link or by closing the browser window.</p>
<h4>Solution #1 &#8211; External Links</h4>
<p>This is the easy one.  We simply create a class and tag each external link on the site with class=&#8221;external&#8221;.  ( We know that we could have used a[target="_blank"], but didn&#8217;t work for our situation)</p>
<h4>Code</h4>
<blockquote><p><strong>JS</strong><br />
<code><br />
$(document).ready(function() {<br />
     $('a.external').click(function(){ alert('Display Survey') });<br />
});<br />
</code><br />
<strong>HTML</strong><br />
<code><br />
&lt;a href="http://www.google.com" class="external"&gt;Visit Google&lt;/a&gt;<br />
</code>
</p></blockquote>
<h3>Solution #2 &#8211; On Browser Close</h3>
<p>Since there is no function specifically for when a user clicks the close browser button it makes this a bit tough to achieve this task.  We know we needed to use $(window).unload but that would always throw our alert every time we left a page.  Below is what we came up with.</p>
<h4>Code</h4>
<blockquote><p><strong>JS</strong><br />
<code><br />
var internalLink = false;<br />
$(document).ready(function() {<br />
     $('a').not('.external').click(function(){ internalLink = true; });<br />
});</p>
<p>$(window).unload(<br />
     function () {<br />
          if(!internalLink){<br />
               alert('Display Survey');<br />
          }<br />
     }<br />
);<br />
</code>
</p></blockquote>
<h3>Final Thoughts</h3>
<p>So combining both of these solutions worked and got us to about 95% success rate for reaching our goal.  The only downfall that we came up with is that if a viewer presses the refresh button the alert is thrown.  If anyone has any thoughts on how to work around this please post a comment and let us know.</p>
<p>We hope this snippet can save someone a couple hours of digging on the internet!</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Open+Window+When+User+Leaves+Site+http://x7x4c.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.e-moxie.com/resources/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.e-moxie.com/resources/tips/open-window-when-user-leaves-site/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Verizon to Block Port 25</title>
		<link>http://www.e-moxie.com/resources/website-hosting-faq/verizon-to-block-port-25/</link>
		<comments>http://www.e-moxie.com/resources/website-hosting-faq/verizon-to-block-port-25/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 14:06:57 +0000</pubDate>
		<dc:creator>Matt Pramschufer</dc:creator>
				<category><![CDATA[Website Hosting FAQ]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[website hosting]]></category>

		<guid isPermaLink="false">http://www.e-moxie.com/resources/?p=428</guid>
		<description><![CDATA[As a work around for this issue E-Moxie has opened Port 26 for sending email.  For those using E-Moxie email thru an email client, such as Outlook, open up your outgoing mail settings and change your outgoing (SMTP) port from 25 to 26.  If you have issues please contact support(@)e-moxie.com.]]></description>
			<content:encoded><![CDATA[<h3><strong>Email sent to Verizon Customers</strong></h3>
<blockquote><p><span style="font-family: Arial;"><span style="font-size: 10.5pt;">Dear Verizon Online Customer,<br />
</span></span><span style="font-size: xx-small;"><span style="font-family: Geneva, Verdana, Helvetica, Arial;"><span style="font-size: 9pt;"><br />
</span></span></span><span style="font-family: Arial;"><span style="font-size: 10.5pt;">Verizon Online will soon be making changes to our network to further strengthen the security of our customers‚ email messages and our network and to help prevent spam.<br />
</span></span><span style="font-size: xx-small;"><span style="font-family: Geneva, Verdana, Helvetica, Arial;"><span style="font-size: 9pt;"><br />
</span></span></span><span style="font-family: Arial;"><span style="font-size: 10.5pt;">We have blocked incoming email from Port 25, which is the default port used by email programs to connect to email servers and to send email, for some time now.  We are now taking the additional step of blocking outgoing e-mail messages from Port 25 to help ensure that our network is not used by spammers. Depending on whether you use a web-based email service or an email program such as Microsoft Outlook®, you may need to make changes to your computer settings to ensure that your ability to send email is not interrupted. </span></span><span style="font-size: xx-small;"><span style="font-family: Geneva, Verdana, Helvetica, Arial;"><span style="font-size: 9pt;"> </span></span></span></p>
<p><span style="font-family: Arial;"><span style="font-size: 10.5pt;"><strong>If you use a web-based Email service (either <a href="http://Verizon.net/">Verizon.net</a> or a third party email service, such as Gmail, Hotmail, Yahoo, AOL, etc.):<br />
</strong><br />
</span></span><span style="font-size: xx-small;"><span style="font-family: Symbol;"><span style="font-size: 9pt;">· </span></span></span><span style="font-family: Arial;"><span style="font-size: 10.5pt;">If you use a web-based email service to send your email, <strong><span style="text-decoration: underline;">you do not need to do anything</span></strong> as our implementation of Port 25 blocking for outgoing email messages will not affect your ability to send or receive web-based email.</span></span></p>
<p><strong>If you use a third party Email service such as Gmail, Hotmail, Yahoo, AOL and an Email program such as Microsoft Outlook:</strong></p>
<p><strong> </strong><span style="font-size: 10.5pt;"><span style="font-family: Symbol;">· </span><span style="font-family: Arial;">If you use an email service other than <a href="http://Verizon.net/">Verizon.net</a> (such as Gmail, Hotmail, Yahoo, AOL, etc.) to send email through a program like Microsoft Outlook, you will need to make the following modification to your computer settings so that your ability to send email will not be affected:</span></span></p>
<p><span style="font-size: xx-small;"><span style="font-family: Symbol;"><span style="font-size: 9pt;">· </span></span></span><span style="font-family: Arial;"><span style="font-size: 10.5pt;">Change the port number in the „Advanced‰ section of your email program from Port 25 to Port 587.  Detailed instructions on how to change the port settings on your computer can be found at <a href="http://www.verizon.net/port25">www.verizon.net/port25</a> &lt;<a href="http://www.verizon.net/port25">http://www.verizon.net/port25</a>&gt; .</span></span></p>
<p><span style="font-size: xx-small;"><span style="font-family: Symbol;"><span style="font-size: 9pt;">· </span></span></span><span style="font-family: Arial;"><span style="font-size: 10.5pt;">If you‚re using an email provider other than <a href="http://Verizon.net/">Verizon.net</a> (such as Gmail, Hotmail, Yahoo, AOL, etc.) to send email through your email program and you are unable to send email after making the change to Port 587, please contact your email provider for additional information on their recommended port settings.</span></span></p>
<p>The above changes are necessary in order to allow you to continue to send email through your email program after November 3, 2009.</p>
<p>Thank you for being a valued Verizon customer.</p>
<p>Sincerely,<br />
Verizon Online</p></blockquote>
<p><strong>As a work around for this issue E-Moxie has opened Port 26 for sending email.  For those using E-Moxie email thru an email client, such as Outlook, open up your outgoing mail settings and change your outgoing (SMTP) port from 25 to 26.  If you have issues please contact support(@)e-moxie.com.</strong></p>
<div><strong><br />
</strong></div>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Verizon+to+Block+Port+25+http://bagsq.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.e-moxie.com/resources/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.e-moxie.com/resources/website-hosting-faq/verizon-to-block-port-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We’re Hiring!</title>
		<link>http://www.e-moxie.com/resources/jobs/were-hiring/</link>
		<comments>http://www.e-moxie.com/resources/jobs/were-hiring/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 14:40:23 +0000</pubDate>
		<dc:creator>Matt Pramschufer</dc:creator>
				<category><![CDATA[Jobs]]></category>

		<guid isPermaLink="false">http://www.e-moxie.com/resources/?p=389</guid>
		<description><![CDATA[
E-Moxie is a high energy, fast paced, high rewarding company that loves and strives to be on the cutting edge of web technology.  We are a fun, fast paced (yet relaxed) bunch who love what we do, constantly pushing for the best possible product that can be produced.  We are expanding and currently looking for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.e-moxie.com/resources/wp-content/uploads/2009/08/now-hiring2.gif" rel="shadowbox[post-389];player=img;"><img class="aligncenter size-full wp-image-421" title="now-hiring" src="http://www.e-moxie.com/resources/wp-content/uploads/2009/08/now-hiring2.gif" alt="now-hiring" width="680" height="170" /></a></p>
<p>E-Moxie is a high energy, fast paced, high rewarding company that loves and strives to be on the cutting edge of web technology.  We are a fun, fast paced (yet relaxed) bunch who love what we do, constantly pushing for the best possible product that can be produced.  We are expanding and currently looking for an experienced web designer and web developer for a full time position that is only available in our Fallston office.</p>
<h3>Positions Available</h3>
<p><a href="/resources/jobs/skilled-website-designer-needed/"><strong>Website Designer</strong></a><br />
We are looking for a designer that knows the web.  Someone who understands and appreciates clean, polished, user-focused websites.   You should be able to multi-task and work on several projects at a time.   If this job peaks your interest please <a href="/resources/jobs/skilled-website-designer-needed/">read more</a>.<br />
<strong> </strong></p>
<p><a href="/resources/jobs/php-website-developer-wanted/"><strong>Website Developer</strong></a><br />
If you are a closet nerd who spends your time hunkered down in front a computer screen writing some wicked badass code, this may be the position for you.  We are looking for someone who loves to be on the cutting edge of technology, can meet strict deadlines, communicate ideas and issues effectively, and most of all likes to have fun.  If you think you can handle those couple of items please <a href="/resources/jobs/php-website-developer-wanted/">read more.</a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=We%E2%80%99re+Hiring%21+http://zghsc.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.e-moxie.com/resources/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.e-moxie.com/resources/jobs/were-hiring/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Skilled Website Designer Needed</title>
		<link>http://www.e-moxie.com/resources/jobs/skilled-website-designer-needed/</link>
		<comments>http://www.e-moxie.com/resources/jobs/skilled-website-designer-needed/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 14:36:22 +0000</pubDate>
		<dc:creator>Matt Pramschufer</dc:creator>
				<category><![CDATA[Jobs]]></category>

		<guid isPermaLink="false">http://www.e-moxie.com/resources/?p=399</guid>
		<description><![CDATA[We are looking for a designer that knows the web.  Someone who understands and appreciates clean, polished, user-focused websites.   You should be able to multi-task and work on several projects at a time.]]></description>
			<content:encoded><![CDATA[<h1>Website Designer</h1>
<p><strong>Salary is negotiable, and is based on past work experience, and industry experience</strong></p>
<h2>General Qualifications:</h2>
<p>✓    Rock-solid in HTML, CSS and JavaScript<br />
✓    Experience with Eclipse and SVN<br />
✓    Fluent in Adobe Creative Suite as it pertains to web design<br />
✓    Understand the importance of accessibility<br />
✓    Fundamental knowledge of PHP and MySQL<br />
✓    Strong work ethic</p>
<h2>Summary of Job Functions</h2>
<p>✓    Designing fresh/clean/user friendly websites<br />
✓    Collaborate and work with a design team<br />
✓    Organize and multi-task between several projects<br />
✓    Ability to think on your feet and problem solve issues as they arise<br />
✓    Strong customer service skills with no problem picking up the phone and talking to clients<br />
✓    Not afraid to speak your mind when the time is right</p>
<h2>Benefits of working for E-Moxie</h2>
<p>✓    Work in a fun, laid back atmosphere<br />
✓    Free lunch Fridays (including beer)<br />
✓    Interact with the community through sponsored events<br />
✓    Full health benefits<br />
✓    First time home buyer down payment assistance</p>
<h2>To Apply email the following:</h2>
<p>▪    PDF resumé<br />
▪    Link to portfolio<br />
▪    List of 5 sites that you designed that are in production<br />
▪    Short paragraph as to why should we select you</p>
<p>to <a href="mailto:jobs@e-moxie.com">jobs@e-moxie.com</a> with the subject line &#8220;Website Designer Position&#8221;</p>
<p><strong>Please no phone calls, no work from home, no outsource companies, no telecommuters. This is an IN OFFICE POSITION ONLY.</strong></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Skilled+Website+Designer+Needed+http://rhr79.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.e-moxie.com/resources/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.e-moxie.com/resources/jobs/skilled-website-designer-needed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Website Developer Wanted</title>
		<link>http://www.e-moxie.com/resources/jobs/php-website-developer-wanted/</link>
		<comments>http://www.e-moxie.com/resources/jobs/php-website-developer-wanted/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 14:36:00 +0000</pubDate>
		<dc:creator>Matt Pramschufer</dc:creator>
				<category><![CDATA[Jobs]]></category>

		<guid isPermaLink="false">http://www.e-moxie.com/resources/?p=404</guid>
		<description><![CDATA[If you are a closet nerd who spends your time hunkered down in front a computer screen writing some wicked badass code, this may be the position for you.  We are looking for someone who loves to be on the cutting edge of technology, can meet strict deadlines, communicate ideas and issues effectively, and most of all likes to have fun.]]></description>
			<content:encoded><![CDATA[<h1>Website Developer</h1>
<p><strong>Salary is negotiable, and is based on past work experience, and industry experience</strong></p>
<h2>General Qualifications:</h2>
<p>✓    Proficient in PHP/MySQL development<br />
✓    Experience with jQuery along with AJAX techniques<br />
✓    Strong Object Oriented programming skills<br />
✓    Experience with Eclipse and SVN<br />
✓    Knowledge of server administration (IIS/Apache)<br />
✓    High level of organization, attention to detail. clear communication<br />
✓    Able to meet tight deadlines<br />
✓    Strong work ethic</p>
<h2>Summary of Job Functions</h2>
<p>✓    Learn and support all internal systems<br />
✓    Work by and enforce existing code standards.<br />
✓    Develop new techniques and strategies to successfully implement desired goals<br />
✓    Create code that is clean and scalable<br />
✓    Experience working in a live production environment<br />
✓    Provide technical support to all team members<br />
✓    Ability to work with a team or by yourself with minimal supervision<br />
✓    Organize and multi-task between several projects</p>
<h2>Benefits of working for E-Moxie</h2>
<p>✓    Work in a fun, laid back atmosphere<br />
✓    Free lunch Fridays (including beer)<br />
✓    Interact with the community through sponsored events<br />
✓    Full health benefits<br />
✓    First time home buyer down payment assistance</p>
<h2>To Apply email the following:</h2>
<p>▪    PDF resumé<br />
▪    Link to portfolio<br />
▪    List of 5 sites that you developed that are in production<br />
▪    Short paragraph as to why should we select you</p>
<p><strong>to <a href="mailto:jobs@e-moxie.com">jobs@e-moxie.com</a> with the subject line &#8220;PHP Website Developer Position&#8221; </strong></p>
<p><strong>Please no phone calls, no work from home, no outsource companies, no telecommuters. This is an IN OFFICE POSITION ONLY.</strong></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=PHP+Website+Developer+Wanted+http://wpc88.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.e-moxie.com/resources/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.e-moxie.com/resources/jobs/php-website-developer-wanted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TIP: Copy folder WITHOUT hidden .svn</title>
		<link>http://www.e-moxie.com/resources/tips/tip-copy-folder-without-hidden-svn/</link>
		<comments>http://www.e-moxie.com/resources/tips/tip-copy-folder-without-hidden-svn/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 16:46:46 +0000</pubDate>
		<dc:creator>Matt Pramschufer</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Tip]]></category>

		<guid isPermaLink="false">http://www.e-moxie.com/resources/?p=377</guid>
		<description><![CDATA[A tip for MAC/Linux users using SVN.
One of the issues that I was running into when developing websites using SVN was that I wanted to copy an existing folder from one site to another one but when copying the folders would continue to have the hidden .svn folders.  For all that use SVN you know [...]]]></description>
			<content:encoded><![CDATA[<h3>A tip for MAC/Linux users using SVN.</h3>
<p>One of the issues that I was running into when developing websites using SVN was that I wanted to copy an existing folder from one site to another one but when copying the folders would continue to have the hidden .svn folders.  For all that use SVN you know what I mean.</p>
<p>Normally what I did was just copy the folder and then go in and manually remove all of the hidden .svn folders.  That was okay for a folder or two, but when I needed to copy a folder which contained several sub folders it became a complete pain.  After a little bit of searching I found a solution for those on a MAC or using Linux.</p>
<p>Open up a terminal and type the following.</p>
<blockquote><p>rsync -aC &#8211;exclude .svn TARGET FOLDER DESTINATION FOLDER</p></blockquote>
<div><em><strong>Note: there are two hyphens before exclude. (That tripped me up for a bit).</strong></em></div>
<div><em><br />
</em></div>
<div>Hope that helps someone.</div>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=TIP%3A+Copy+folder+WITHOUT+hidden+.svn+http://npgyp.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.e-moxie.com/resources/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.e-moxie.com/resources/tips/tip-copy-folder-without-hidden-svn/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>13 Steps to a Successful Website Launch</title>
		<link>http://www.e-moxie.com/resources/news/13-steps-to-a-successful-website-launch/</link>
		<comments>http://www.e-moxie.com/resources/news/13-steps-to-a-successful-website-launch/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 17:47:25 +0000</pubDate>
		<dc:creator>Matt Pramschufer</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.e-moxie.com/resources/?p=344</guid>
		<description><![CDATA[We all have been there, the client pushes for a launch date that is about 3 days before everyone had planned on.  It is now Friday at 3:00pm and you are being pulled in all directions trying to get everything ready for the big launch.  You keep asking yourself, &#8220;Did I forget anything?&#8221; &#8220;What else [...]]]></description>
			<content:encoded><![CDATA[<p>We all have been there, the client pushes for a launch date that is about 3 days before everyone had planned on.  It is now Friday at 3:00pm and you are being pulled in all directions trying to get everything ready for the big launch.  You keep asking yourself, &#8220;Did I forget anything?&#8221; &#8220;What else do I need to do?&#8221;  Hopefully you pulled through and made the launch a successful one without anyone knowing otherwise, but for those who were not as lucky I hope this list can save you some headaches on your next big launch.</p>
<div id="attachment_348" class="wp-caption aligncenter" style="width: 527px"><a href="http://www.e-moxie.com/resources/wp-content/uploads/2009/02/thanks-boss.jpg" rel="shadowbox[post-344];player=img;"><img class="size-full wp-image-348" title="Thanks Boss" src="http://www.e-moxie.com/resources/wp-content/uploads/2009/02/thanks-boss.jpg" alt="Thanks Boss" width="517" height="305" /></a><p class="wp-caption-text">Thanks Boss</p></div>
<h3>General Advice for All Website Launches</h3>
<p><strong>Avoid the temptation to prematurely launch the website.</strong> Even if a client is breathing down your neck, trying to push for a fast launch, and just wants you to publish files&#8230; don&#8217;t.  Instead work as fast as you can, in a methodical other and do not cut any corners.  You are ultimately the one who suffers if you launch the site early and forget to update the navigation thus rendering the site unusable, not the client who forced you to launch early.</p>
<p><strong>Plan to launch early in the day and early in the week.</strong> If you have the liberty of scheduling a time to launch the site, try to shoot for a date early in the week rather than Friday at 3:00.  More often than not if you have that launch at Friday at 3:00 everyone does a quick test and goes home for the weekend.  On Monday you come back to the office with a inbox full of SOS&#8217;s from your client for an error that has been around all weekend.  Even if your traffic is higher on Monday at 10:00am, you will have a better chance of being the first one to pick up on a problem and fix it quickly causing only minimal damage.  An error that goes uncaught for the entire weekend could be very bad news.</p>
<p><strong>Inform the entire team of the launch.</strong> Make it a point to inform every member of the team involved with the website launch of the time and date of the launch BEFORE the actual launching of the website.  By making sure everyone is on the same page about the date and time of the launch it will reduce the risk of someone going out to lunch at that critical moment when they are suppose to be publishing files.</p>
<h4>Website Launch Checklist</h4>
<ol>
<li>Go through entire site and check for spelling and grammatical errors.</li>
<li>Validate all code using W3C Validator  <a href="http://validator.w3.org/">http://validator.w3.org/</a> .  Validate all style sheets using W3C CSS Validator <a href="http://jigsaw.w3.org/css-validator/">http://jigsaw.w3.org/css-validator/</a> .</li>
<li>Check all forms.  If you have a contact form make sure that you have changed your email address, which you used for testing, to the clients requested email address.  Make sure the reply to address on the forms is the clients and not yours.</li>
<li> Test your . htaccess file.  Make sure your website redirects to www, and make sure all existing pages you are replacing have been successfully 301&#8242;ed.</li>
<li>Ensure that any images that have been referenced absolutely have the production URL and not the development URL.  (i.e. html emails)</li>
<li>If any dummy data was added to database or to site while testing make sure to remove prior to launch.</li>
<li>If you are launching an ecommerce website, make sure merchant account is out of TEST mode and DEBUG mode is turned OFF.</li>
<li>If client has requested, install Google Analytics and/or tracking scripts</li>
<li>Make sure all email addresses associated with the website have been setup and tested prior to launching the website. (i.e. <a href="mailto:contact@yourdomain.com">contact@yourdomain.com</a>)</li>
<li>Test website on multiple browsers and on multiple computers if possible.  Make sure site degrades nicely for IE6. <em>(tip: Ask the client what browser they are running along with what toolbars/plugins that they have.  Even though you have built the website for the general public make sure to please your client first.)</em></li>
<li>If you are using <span style="text-decoration: line-through;">SVN </span> a Version Control System (which you should be) follow these last steps.
<ol>
<li>Commit all final files to the repository, including user submitted images and content to the repository to publish for the initial launch. (i.e. FCKeditor/TinyMCE user_files, product images from CMS, uploaded PDFs, etc)</li>
<li>Update/push all of latest files to production server.</li>
</ol>
</li>
<li>If you are using traditional FTP publishing follow these last steps.
<ol>
<li>Create final backup of all files from development server.  Ideally you could go to your hosting control panel and gzip entire site directory to download as one file.</li>
<li>Upload all final files to production level FTP.  Make sure to check your final log to see if any files failed to upload for one reason on another.</li>
</ol>
</li>
<li>Repeat steps 3,4 and 10  Even though you have already done these steps, take the time and do them again.  It can never hurt to do 5 minutes more of testing.</li>
</ol>
<h3>Conclusion</h3>
<p>This list may not work for everyone so if I left something out which you do every time you launch a new site please tell us about it.  We all have to launch sites and we all want them to go as smoothly as possible, the more information that gets shared on successful launches the better.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=13+Steps+to+a+Successful+Website+Launch+http://sfwgh.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.e-moxie.com/resources/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.e-moxie.com/resources/news/13-steps-to-a-successful-website-launch/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Special Offer for &lt;?STYLE members</title>
		<link>http://www.e-moxie.com/resources/news/special-offer-for-style-members/</link>
		<comments>http://www.e-moxie.com/resources/news/special-offer-for-style-members/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 15:53:30 +0000</pubDate>
		<dc:creator>Matt Pramschufer</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.e-moxie.com/resources/?p=326</guid>
		<description><![CDATA[Heather Keegan, the Conference Marketing Manager for  Voices That Matter Conferences is offering <?STYLE members a $200 discount to all that want to attend The Voices That Matter: Web Design Conference.  See post for details.]]></description>
			<content:encoded><![CDATA[<blockquote><p>Heather Keegan, the Conference Marketing Manager for  Voices That Matter Conferences is offering <a href="http://www.linkedin.com/groups?home=&amp;gid=783047&amp;trk=anet_ug_hm&amp;goback=%2Egsm_783047_1_*2_*2_*2_ltod_requests%2Eana_783047_1233847859575_1" target="_blank">&lt;?STYLE members</a> a <strong>$200 discount</strong> to all that want to attend <a href="http://www.voicesthatmatter.com/webdesign2009" target="_blank">The Voices That Matter: Web Design Conference</a>.  See post below for details.</p></blockquote>
<p>&nbsp;</p>
<h1>Save up to $400!</h1>
<p>The Web design industry’s most respected authors and practitioners will be leading discussions at <strong><a href="http://www.voicesthatmatter.com/webdesign2009" target="_blank">The Voices That Matter: Web Design Conference</a></strong>, taking place April 27-30 in San Francisco, CA. Join thought-leaders including:</p>
<ul>
<li> <a href="http://www.webbedenvironments.com/" target="_blank">Jason Cranford Teague</a></li>
<li> <a href="http://www.lab404.com/" target="_blank">Curt Cloninger</a></li>
<li> <a href="http://rhjr.net/" target="_blank">Robert Hoekman Jr.</a></li>
<li> <a href="http://www.sensible.com/" target="_blank">Steve Krug</a></li>
<li> <a href="http://www.eleganthack.com/" target="_blank">Christina Wodtke</a></li>
<li> <a href="http://www.w3conversions.com/" target="_blank">Stephanie Sullivan</a></li>
<li><a href="http://www.quirksmode.org/" target="_blank">Peter-Paul Koch</a></li>
</ul>
<p>and dozens of others for entertaining, inspiring and informative discussions, debates, Q&amp;A sessions, and informal networking activities!</p>
<p>Provide the <a href="http://www.linkedin.com/groups?home=&amp;gid=783047&amp;trk=anet_ug_hm&amp;goback=.gsm_783047_1_*2_*2_*2_ltod_requests.ana_783047_1233847859575_1http://www.linkedin.com/groups?home=&amp;gid=783047&amp;trk=anet_ug_hm&amp;goback=.gsm_783047_1_*2_*2_*2_ltod_requests.ana_783047_1233847859575_1" target="_blank">&lt;?STYLE Web Related</a> priority code, <strong>WBNKLMN</strong>, when registering to save $200! <strong>Register before March 12th and SAVE $400</strong> when the &lt;?STYLE Web Related member savings is combined with early bird pricing!</p>
<p>Register or view conference details including schedule, speakers, networking and more at <a href="http://www.voicesthatmatter.com/webdesign2009" target="_blank">www.voicesthatmatter.com/webdesign2009</a>. If you have any questions about the conference, please don’t hesitate to contact Barbara Gavin, Conference Manager, at <a href="mailto:Barbara.Gavin@PearsonEd.com">Barbara.Gavin@PearsonEd.com</a> or by phone at (617) 848-7026.</p>
<p>We hope to see you at the conerence in San Francisco this April!</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Special+Offer+for+%3C%3FSTYLE+members+http://ya2oa.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.e-moxie.com/resources/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.e-moxie.com/resources/news/special-offer-for-style-members/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who is Liberty Name of America?</title>
		<link>http://www.e-moxie.com/resources/website-hosting-faq/who-are-liberty-name-of-america/</link>
		<comments>http://www.e-moxie.com/resources/website-hosting-faq/who-are-liberty-name-of-america/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 21:20:03 +0000</pubDate>
		<dc:creator>Chris Stone</dc:creator>
				<category><![CDATA[Website Hosting FAQ]]></category>
		<category><![CDATA[domain names]]></category>
		<category><![CDATA[scams]]></category>

		<guid isPermaLink="false">http://www.e-moxie.com/resources/?p=321</guid>
		<description><![CDATA[They are a legitimate business, unfortunately their tactics are really scamy. 
The thing with Liberty Name of America, is if you read the fine print of the terms and conditions they give you, you are authorizing them to transfer the domain.  Luckily for you, we have to unlock the domain before it can be transferred.  [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><span>They are a legitimate business, unfortunately their tactics are really scamy. </span></p>
<p class="MsoNormal"><span>The thing with Liberty Name of America, is if you read the fine print of the terms and conditions they give you, you are authorizing them to transfer the domain.  Luckily for you, we have to unlock the domain before it can be transferred.  The domain renewal through us is $15.00/year.   We will invoice you in about a week for the renewal, and your invoice will be paid via the card that we have on file automatically.</span></p>
<p class="MsoNormal"><span>If you have fallen prey to their scam I would contact Liberty Name of America and cancel your order with them.  If they give you a hassle, you can always dispute the charge with your credit card company.  Just keep in mind in the future, that anything regarding your domain name or website will be coming from E-Moxie.  If you’re unsure about something you receive, feel free to ask.</span></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Who+is+Liberty+Name+of+America%3F+http://x4sde.th8.us" title="Post to Twitter"><img class="nothumb" src="http://www.e-moxie.com/resources/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.e-moxie.com/resources/website-hosting-faq/who-are-liberty-name-of-america/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
