<?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>ToddSantoro.com Designs &#187; Columbus, Ohio website design ToddSantoro.com Designs</title>
	<atom:link href="http://toddsantoro.com/tag/setup/feed/" rel="self" type="application/rss+xml" />
	<link>http://toddsantoro.com</link>
	<description>Columbus, Ohio Web Site Design</description>
	<lastBuildDate>Wed, 11 Apr 2012 18:02:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>How to set up a wordpress blog in 5 simple steps</title>
		<link>http://toddsantoro.com/how-to-set-up-a-wordpress-blog-in-5-simple-steps/</link>
		<comments>http://toddsantoro.com/how-to-set-up-a-wordpress-blog-in-5-simple-steps/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 23:44:57 +0000</pubDate>
		<dc:creator>todd</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Tutorials]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://toddsantoro.com/wordpress/?p=575</guid>
		<description><![CDATA[I just got off the phone with a friend who really does not know much about web design...]]></description>
			<content:encoded><![CDATA[<h3>Setting up a WordPress site in no time flat</h3>
<p><img class="alignleft size-medium wp-image-906" title="wordpress-logo-300x282" src="http://toddsantoro.com/wp-content/uploads/2009/12/wordpress-logo-300x282-127x120.png" alt="wordpress logo grunge" width="127" height="120" />I just got off the phone with a friend who really does not know much about web design and we got him set up with a WordPress blog in 5 simple steps. After talking with him I decided to write a tutorial on how to set up a WordPress website. This tutorial will take about 15 minutes if you don&#8217;t count file transfer time (FTP).</p>
<h3>What you will need:</h3>
<ul>
<li>A FTP program like <a href="http://filezilla-project.org/">FileZilla</a> (I use Dreamweaver and FileZilla)</li>
<li>A web hosting company (Obviously&#8230; I use <a href="http://mediatemple.net">Media Temple</a>)</li>
<li>A Text editor (I use Dreamweaver but you can use anything)</li>
</ul>
<h3>What this Tutorial will accomplish:</h3>
<ul>
<li>You will have a basic WordPress website running</li>
</ul>
<h3>Let&#8217;s get started&#8230;</h3>
<p><strong>Step #1.</strong> Download and unzip the latest version of <a href="http://wordpress.org/download/">WordPress</a> (This tutorial uses v. 2.9) into a local folder on your computer (remember where you unzipped it to)</p>
<p><strong>Step #2.</strong> Create a database on your server and take note of those settings. Most hosting companies provide help documents on how to do this. Its should be really simple.</p>
<p><strong>Step #3.</strong> Open up this file: <strong>wp-config-sample.php</strong> and SAVE AS <strong>wp-config.php </strong>right off the bat. Then edit the lines of code that talk about your database. Remember those settings I said to keep handy. You will need them here.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//  MySQL settings - You can get this info from your web host  //</span>
<span style="color: #666666; font-style: italic;">// The name of the database for WordPress //</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'DB_NAME'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'put_your_database_name_here'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// MySQL database username //</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'DB_USER'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'user_name_here'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// MySQL database password //</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'DB_PASSWORD'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'your_password_here'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// MySQL hostname 99% chance you will not have to change this value.  Some hosting providers like mine require something different.  This is something that anyone at the hosting company will know.//</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'DB_HOST'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'localhost'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Down a little further you will see the Unique Keys.  FILL THESE WITH UNIQUE CHARACTERS LIKE:<br />
<strong>86dfg79835g6%^$R@!^7^Hn76h&amp;*!@Yhnd*@^#8yem </strong>They should all be different from each other and help with the security of your blog. Please do not use the ones provided in these examples and make sure to keep the single quotes around each value.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'AUTH_KEY'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">':dr+%/5V4sAUG-gg%aS*v;&amp;amp;xGhd%{YKC^Z7KKGh j&amp;gt;k[.Nf$y7iGKdJ3c*[Kr5Bg'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'SECURE_AUTH_KEY'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'TufWOuA _.t&amp;gt;#+hA?^|3RfGTm&amp;gt;@*+S=8\&quot;\'+\&quot;}]&amp;lt;m#+}V)p:Qi?jXLq,&amp;lt;h\\`39m_('</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'LOGGED_IN_KEY'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'S~AACm4h1;T^\&quot;qW3_8Zv!Ji=y|)~5i63JI |Al[(&amp;lt;YS&amp;lt;2V^$T])=8Xh2a:b:}U_E'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'NONCE_KEY'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'k1+EOc-&amp;amp;w?hG8j84&amp;gt;6L9v\&quot;6C89NH?ui{*3\\(t09mumL/fFP_!K$JCEkLuy ={x{0'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>For more security I like to change the table prefix from <strong>wp_ </strong>to something else.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// You can have multiple installations in one database if you give each a unique table prefix</span>
<span style="color: #000088;">$table_prefix</span>  <span style="color: #339933;">=</span> <span style="color: #0000ff;">'r235_'</span><span style="color: #339933;">;</span>   <span style="color: #666666; font-style: italic;">// Only numbers, letters, and underscores please!</span></pre></div></div>

<p><strong>Step #4. </strong>Fire up your FTP program and upload all of the files including the 3 directories to your web server.  This is where a lot of your time will be spent.</p>
<p><strong>Step #5.</strong> Open up your favorite web browser and type your site&#8217;s address in the address bar and add <strong>/wp-admin/install.php. </strong>i.e. www.exampleurl.com/wp-admin/install.php or www.exampleulr.com/blog/wp-admin/install.php if you place WordPress in another directory like <strong>blog. </strong>Fill in the simple info WordPress asks for and your good to go!<strong><br />
</strong></p>
<h3>That&#8217;s it!  You have now set up your first WordPress site.</h3>
]]></content:encoded>
			<wfw:commentRss>http://toddsantoro.com/how-to-set-up-a-wordpress-blog-in-5-simple-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

