<?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>CTCDesign</title>
	<atom:link href="https://www.ctcdesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.ctcdesign.com</link>
	<description>A Fort Collins Web Design Company</description>
	<lastBuildDate>Sat, 16 Aug 2014 16:48:36 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Server Code Snippets</title>
		<link>https://www.ctcdesign.com/server-code-snippets/</link>
		
		<dc:creator><![CDATA[Charles]]></dc:creator>
		<pubDate>Sun, 16 Jun 2013 18:10:54 +0000</pubDate>
				<category><![CDATA[Latest News]]></category>
		<guid isPermaLink="false">http://www.ctcdesign.com/?p=771</guid>

					<description><![CDATA[Here are some of my favorite snippets for maintaining my CentOS Server. Repair, test, and optimize all MySQL databases via SSH: Get a listing of file sizes recursively to see if there are only a few files eating up disk space. Tested in CentOS 6: Find files older than X number of days and delete&#8230; <a class = "more-link" href = "https://www.ctcdesign.com/server-code-snippets/">Read More &#187;</a>]]></description>
										<content:encoded><![CDATA[<p>Here are some of my favorite snippets for maintaining my CentOS Server.</p>
<p>Repair, test, and optimize all MySQL databases via SSH:</p>
<pre class="brush: php; title: ; notranslate">

mysqlcheck --all-databases -r #repair
mysqlcheck --all-databases -a #analyze
mysqlcheck --all-databases -o #optimize 

</pre>
<hr />
<p>Get a listing of file sizes recursively to see if there are only a few files eating up disk space. Tested in CentOS 6:</p>
<pre class="brush: php; title: ; notranslate">

du -k | sort -n | perl -ne 'if ( /^(\d+)\s+(.*$)/){$l=log($1+.1);$m=int($l/log(1024)); printf (&quot;%6.1f\t%s\t%25s %s\n&quot;,($1/(2**(10*$m))),((&quot;K&quot;,&quot;M&quot;,&quot;G&quot;,&quot;T&quot;,&quot;P&quot;)&#x5B;$m]),&quot;*&quot;x (1.5*$l),$2);}'

</pre>
<hr />
<p>Find files older than X number of days and delete them. Remove the -delete to only list them. X number of days changed with the +7</p>
<pre class="brush: php; title: ; notranslate">

find /folder/to/check/recursively -type f -mtime +7 -delete -print

</pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Create an Email Forward in cPanel</title>
		<link>https://www.ctcdesign.com/create-an-email-forward-in-cpanel/</link>
		
		<dc:creator><![CDATA[Charles]]></dc:creator>
		<pubDate>Mon, 20 May 2013 23:46:35 +0000</pubDate>
				<category><![CDATA[Latest News]]></category>
		<guid isPermaLink="false">http://www.ctcdesign.com/?p=745</guid>

					<description><![CDATA[Sometimes you just want to receive email to an address without the headache of maintaining another account. Email forwards can take care of that for you and they are really easy to setup in cPanel. A good example of this would be having a seperate email for each city you work in or to cover&#8230; <a class = "more-link" href = "https://www.ctcdesign.com/create-an-email-forward-in-cpanel/">Read More &#187;</a>]]></description>
										<content:encoded><![CDATA[<p>Sometimes you just want to receive email to an address without the headache of maintaining another account. Email forwards can take care of that for you and they are really easy to setup in cPanel. A good example of this would be having a seperate email for each city you work in or to cover some of the more standard addresses that customers might type in without actually looking them up such as support@your-domain.com or sales@your-domain.com.</p>
<p><strong>Step 1</strong> &#8211; Log in to your cPanel account by pointing your browser to cpanel.your-domain.com Enter your username and password, you should get these credentials from your hosting company. </p>
<p><a href="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-Login1.gif"><img fetchpriority="high" decoding="async" src="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-Login1-300x274.gif" alt="cPanel-Login" width="300" height="274" class="aligncenter size-medium wp-image-747" srcset="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-Login1-300x274.gif 300w, https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-Login1-158x145.gif 158w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>Step 2</strong> &#8211; Find the box labeled “Mail” and click the “Forwarders” icon.</p>
<p><a href="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-forward.gif"><img decoding="async" src="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-forward-300x102.gif" alt="cPanel-forward" width="300" height="102" class="aligncenter size-medium wp-image-746" srcset="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-forward-300x102.gif 300w, https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-forward-225x77.gif 225w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>Step 3</strong> &#8211; You will see a list of existing forwards. If you wanted to delete one then this would be the place to do it. Right now we want to create a new one so click the &#8220;Add Forwarder&#8221; button.</p>
<p><a href="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-forwarder.gif"><img decoding="async" src="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-forwarder-300x128.gif" alt="cPanel-X-forwarder" width="300" height="128" class="aligncenter size-medium wp-image-748" srcset="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-forwarder-300x128.gif 300w, https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-forwarder-225x96.gif 225w, https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-forwarder-655x280.gif 655w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>Step 4</strong> &#8211; Fill in the first part of the new email address(example: test) and choose the domain this address will be under. Next fill in the forward to email address field with the full address of the account where you want to get the mail. Make sure the radio button next to that field is selected and click &#8220;Add Forwarder&#8221;</p>
<p><a href="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-forwarder-details.gif"><img decoding="async" src="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-forwarder-details-300x124.gif" alt="cPanel-X-forwarder-details" width="300" height="124" class="aligncenter size-medium wp-image-749" srcset="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-forwarder-details-300x124.gif 300w, https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-forwarder-details-225x93.gif 225w, https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-forwarder-details-680x280.gif 680w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>That&#8217;s pretty much it, once the mail server receives an email to that address it will turn around and send it to the forwarding address.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Create a New Email Address in cPanel</title>
		<link>https://www.ctcdesign.com/creating-a-new-email-address-in-cpanel/</link>
		
		<dc:creator><![CDATA[Charles]]></dc:creator>
		<pubDate>Mon, 20 May 2013 20:06:27 +0000</pubDate>
				<category><![CDATA[Latest News]]></category>
		<guid isPermaLink="false">http://www.ctcdesign.com/?p=726</guid>

					<description><![CDATA[An important aspect of any business is to have an email address that is associated with your domain name. When a potential customer customer visits your website they should not see an MSN or Yahoo web mail address, it makes your company look, for lack of a better word, &#8220;temporary&#8221;. Think of it this way,&#8230; <a class = "more-link" href = "https://www.ctcdesign.com/creating-a-new-email-address-in-cpanel/">Read More &#187;</a>]]></description>
										<content:encoded><![CDATA[<p>An important aspect of any business is to have an email address that is associated with your domain name. When a potential customer customer visits your website they should not see an MSN or Yahoo web mail address, it makes your company look, for lack of a better word, &#8220;temporary&#8221;. Think of it this way, what if you were contacting a financial company asking about a credit card. If the contact for new accounts was john@firstbank.com you wouldn&#8217;t think twice about it but what if their email address was john@yahoo.com? Would you send your financial details to that person? Probably not&#8230;</p>
<p>Luckily setting up a new email address for your domain name is incredibly easy if you have a cPanel host and today I&#8217;m going to show you how to do it.</p>
<p><strong>1.</strong> Log in to your cPanel account, you can usually get to your cPanel account by pointing your browser to cpanel.your-domain.com You will have to put in your username and password, you should get these credentials from your hosting company. </p>
<p><a href="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-Login.gif"><img decoding="async" src="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-Login-300x274.gif" alt="cPanel-Login" width="300" height="274" class="aligncenter size-medium wp-image-727" srcset="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-Login-300x274.gif 300w, https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-Login-158x145.gif 158w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>2.</strong> Find the box labeled &#8220;Mail&#8221; and click the &#8220;Email Accounts&#8221; icon.</p>
<p><a href="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-mail-box.gif"><img decoding="async" src="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-mail-box-300x102.gif" alt="cPanel-mail-box" width="300" height="102" class="aligncenter size-medium wp-image-728" srcset="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-mail-box-300x102.gif 300w, https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-mail-box-225x77.gif 225w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>3.</strong> Enter the first part of the email address you would like to use (example: test) and choose the domain name you would like to use:</p>
<p><a href="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-addemail.gif"><img decoding="async" src="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-addemail-300x121.gif" alt="cPanel-X-addemail" width="300" height="121" class="aligncenter size-medium wp-image-730" srcset="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-addemail-300x121.gif 300w, https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-addemail-225x91.gif 225w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>4.</strong> Password security is crucial to having problem free email, in cPanel there is a button labeled &#8220;Password Generator&#8221; that will create a very secure password. Once your password is in place click &#8220;Create Account&#8221;</p>
<p><a href="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-password.gif"><img decoding="async" src="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-password-300x104.gif" alt="cPanel-X-password" width="300" height="104" class="aligncenter size-medium wp-image-731" srcset="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-password-300x104.gif 300w, https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-password-225x78.gif 225w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>5.</strong> Configure your email program to check your new email address. In the list of email accounts you&#8217;ve created you will see a &#8220;More&#8221; button that you can click on. A new menu will appear, choose &#8220;Configure Email Client&#8221; from the menu.</p>
<p><a href="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-configure.gif"><img decoding="async" src="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-configure-300x49.gif" alt="cPanel-X-configure" width="300" height="49" class="aligncenter size-medium wp-image-732" srcset="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-configure-300x49.gif 300w, https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-configure-225x36.gif 225w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>6.</strong> You will see a list of the most popular email checking programs, click on the name of yours and there will be a set of instructions specific to that program.</p>
<p><a href="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-autoconfigure.gif"><img decoding="async" src="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-autoconfigure-300x169.gif" alt="cPanel-X-autoconfigure" width="300" height="169" class="aligncenter size-medium wp-image-733" srcset="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-autoconfigure-300x169.gif 300w, https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-autoconfigure-225x127.gif 225w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>6.1</strong> If you don&#8217;t see your email client in the list then you need to check with the website of the software your using or the help section to learn to manually configure your new email account. The manual settings are at the bottom of the configure page.</p>
<p><a href="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-manualconfigure.gif"><img decoding="async" src="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-manualconfigure-300x138.gif" alt="cPanel-X-manualconfigure" width="300" height="138" class="aligncenter size-medium wp-image-734" srcset="https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-manualconfigure-300x138.gif 300w, https://www.ctcdesign.com/wp-content/uploads/2013/05/cPanel-X-manualconfigure-225x104.gif 225w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>Conclusion</strong></p>
<p>That&#8217;s it, you now have a professional looking email address that is tied to your business and ready for service. </p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>WordPress Code Snippets</title>
		<link>https://www.ctcdesign.com/wordpress-code-snippets/</link>
		
		<dc:creator><![CDATA[Charles]]></dc:creator>
		<pubDate>Thu, 01 Sep 2011 18:57:18 +0000</pubDate>
				<category><![CDATA[Latest News]]></category>
		<guid isPermaLink="false">http://demo.studiopress.com/genesis/?p=20</guid>

					<description><![CDATA[Here&#8217;s a list of my favorite and most used code snippets for WordPress. Modify something in all posts of a wordpress site via phpMyAdmin: UPDATE wp_posts SET post_content = replace(post_content, 'some text here', 'some new text here');]]></description>
										<content:encoded><![CDATA[<p>Here&#8217;s a list of my favorite and most used code snippets for WordPress.</p>
<p>Modify something in all posts of a wordpress site via phpMyAdmin:</p>
<pre class="brush: php; title: ; notranslate">
UPDATE wp_posts SET post_content = replace(post_content, 'some text here', 'some new text here');
</pre>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
