<?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>Chad Von Lind &#187; Website Designer, WordPress Programmer &amp; Theme Developer &#8211; Chad Von Lind</title>
	<atom:link href="http://vonlind.com/tag/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://vonlind.com</link>
	<description>Web Design Specialist, WordPress, CMS and eCommerce</description>
	<lastBuildDate>Mon, 17 Oct 2011 18:27:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Install WordPress On a Local Server</title>
		<link>http://vonlind.com/2009/04/install-wordpress-on-a-local-server/</link>
		<comments>http://vonlind.com/2009/04/install-wordpress-on-a-local-server/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 19:07:02 +0000</pubDate>
		<dc:creator>Chad Von Lind</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://vonlind.com?p=191</guid>
		<description><![CDATA[In this tutorial, we&#8217;ll go through the process of setting up a server on your local computer. This will allow you to run PHP &#038; MySQL applications, such as WordPress, directly on your machine. As I have yet resisted joining the ranks of the Mac cult, we&#8217;ll be using PC server software. I am aware [...]]]></description>
			<content:encoded><![CDATA[<p class="intro">In this tutorial, we&#8217;ll go through the process of setting up a server on your local computer. This will allow you to run PHP &#038; MySQL applications, such as WordPress, directly on your machine.</p>
<p>As I have yet resisted joining the ranks of the <a href="http://vonlind.com/wp-content/uploads/2009/04/apple-cult.jpg">Mac cult</a>, we&#8217;ll be using PC server software. I am aware of <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a>, <a href="http://www.wampserver.com/en/">WAMP</a>, and I personally use <a href="http://vertrigo.sourceforge.net/">VertrigoServ</a> for no other reason than it is the only one I&#8217;ve tried. (Mac cultists can use <a href="http://www.mamp.info/">MAMP</a>.)</p>
<h3>This Tutorial Is Based On <a href="http://vertrigo.sourceforge.net/">VertrigoServ</a></h3>
<p>They say that cleanliness is next to godliness, and in that vein let us install our server in a organized location. On my desktop, I actually use a whole separate hard drive to store my server. If you don&#8217;t have the luxury of a dedicated HDD, then your local disk or C:\ will be fine.</p>
<h3>01. Installing The Server</h3>
<p>Create the following directory: <code>C:\usr\</code>. Then run the server installer, and be sure to install the software in the <code>C:\usr\</code> location.  If you installed the VertrigoServ software, then the &#8220;public web&#8221; files will be located in <code>C:\usr\www\</code>. So let&#8217;s <a href="http://wordpress.org/download">download</a> and install WordPress inside <code>C:\usr\www\wordpress\</code> and then be sure to fire the server up after installation.</p>
<h3>02. Setup The Database</h3>
<p>So we&#8217;ll need to have a database created before we can install WordPress. In your web browser, navigate to <a href="http://localhost/phpmyadmin">http://localhost/phpmyadmin</a> and login. There should be the default user and password if this is your first time. Find it by clicking the VertrigoServ icon in the bottom right tray, and selecting &#8220;Help and Readme&#8221;. Be sure to change your passwords once you get in. Default login is root/vertrigo.</p>
<p>Now that we&#8217;re in PHPmyAdmin, let&#8217;s create a database for our local WordPress install. Type in your desired database name, and hit the &#8220;Create&#8221; button.</p>
<p><img src="http://vonlind.com/wp-content/uploads/2009/04/wpdb-create.jpg" alt="wpdb-create" title="wpdb-create" width="500" height="172" class="alignnone size-full wp-image-199" /></p>
<h3>03. Installing WordPress</h3>
<p>With the database created, we can now input our database details into the <code>wp-config.php</code> file of our WP install.</p>
<div class="wp_syntax">
<div class="code">
<pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// ** MySQL settings ** //</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;">'database_name'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>    <span style="color: #666666; font-style: italic;">// The name of the database from step 2</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;">'root'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>     <span style="color: #666666; font-style: italic;">// Vertrigo uses root as the default username</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;">'vertrigo_password'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// the password used to get into your local phpmyadmin</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>    <span style="color: #666666; font-style: italic;">// 99% chance you won't need to change this value</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'DB_CHARSET'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'utf8'</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;">'DB_COLLATE'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre>
</div>
</div>
<p>Now we can pull open our browser, and navigate to <a href="http://localhost/wordpress">http://localhost/wordpress</a> and begin the installation of WordPress.</p>
<p class="info">The <code>http://localhost/</code>  address looks into the <code>\usr\www\</code> directory. So whatever the name of the directory we installed in, is what we&#8217;ll need to punch in after localhost/. For example, if I installed an application in <code>\usr\cms\</code>, I will need to navigate to http://localhost/cms in order to pull up that site.</p>
<p><img src="http://vonlind.com/?ak_action=api_record_view&#038;id=191&#038;type=feed" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://vonlind.com/2009/04/install-wordpress-on-a-local-server/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Show Hidden Files in Dreamweaver</title>
		<link>http://vonlind.com/2009/04/show-hidden-files-in-dreamweaver/</link>
		<comments>http://vonlind.com/2009/04/show-hidden-files-in-dreamweaver/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 00:24:19 +0000</pubDate>
		<dc:creator>Chad Von Lind</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[dreamweaver]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://vonlind.com?p=201</guid>
		<description><![CDATA[Are you tired of not being able to see the .htaccess and other apache files on the server side? No sweat. Let&#8217;s just navigate to the Files section in our sidebar. Click the &#8220;Options&#8221; icon, and navigate to View > Show Hidden Files.]]></description>
			<content:encoded><![CDATA[<p>Are you tired of not being able to see the .htaccess and other apache files on the server side? No sweat. Let&#8217;s just navigate to the Files section in our sidebar.</p>
<p>Click the &#8220;Options&#8221; icon, and navigate to View > Show Hidden Files.</p>
<p><img src="http://vonlind.com/wp-content/uploads/2009/04/hidden-files-dreamweaver.jpg" alt="hidden files in dreamweaver" title="hidden files in dreamweaver" width="500" height="351" class="alignnone size-full wp-image-205" /><img src="http://vonlind.com/?ak_action=api_record_view&#038;id=201&#038;type=feed" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://vonlind.com/2009/04/show-hidden-files-in-dreamweaver/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
	</channel>
</rss>

