<?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>Web design and development in Toronto</title>
	<atom:link href="http://www.marketcrashers.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.marketcrashers.com</link>
	<description>Marketcrashers</description>
	<lastBuildDate>Thu, 16 Feb 2012 07:15:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Installing WordPress</title>
		<link>http://www.marketcrashers.com/blog/installing-wordpress</link>
		<comments>http://www.marketcrashers.com/blog/installing-wordpress#comments</comments>
		<pubDate>Thu, 07 Jul 2011 02:16:16 +0000</pubDate>
		<dc:creator>Jason Andrade</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://girltuesday.com/?p=71</guid>
		<description><![CDATA[There are actually quite a few variations on the installation of WordPress. &#160;A more complete guide into the various ways of doing this can be found here. &#160;What follows is the procedure which I personally favor, but it may not necessarily be the best one for you. I typically find it faster to simply SSH [...]]]></description>
			<content:encoded><![CDATA[<p>
There are actually quite a few variations on the installation of <a href="http://wordpress.com/" target="_blank">WordPress</a>. &nbsp;A more <a href="http://codex.wordpress.org/Installing_WordPress" target="_blank">complete guide</a> into the various ways of doing this can be found <a href="http://codex.wordpress.org/Installing_WordPress" target="_blank">here</a>. &nbsp;What follows is the procedure which I personally favor, but it may not necessarily be the best one for you.
</p>

<p>
I typically find it faster to simply <a href="http://en.wikipedia.org/wiki/Secure_Shell" target="_blank">SSH</a> into the web server I&#8217;m working on and download the <a href="http://wordpress.com/" target="_blank">WordPress</a> archive file directly onto the server. &nbsp;By default the files in the <a href="http://wordpress.com/" target="_blank">WordPress</a> archive extract to a &quot;wordpress&quot; subdirectory. &nbsp;This is extremely annoying and not at all what the vast majority of people want! &nbsp;You will almost certainly need to move the files into your &quot;web root&quot; directory. &nbsp;I use the following procedure:
</p>

<p class="specialNoteP">
If you click on the commands noted in double quotes (&quot;&quot;) below they will be copied to your operating system&#8217;s clipboard. &nbsp;You can then easily paste them by right-clicking in an <a href="http://en.wikipedia.org/wiki/Secure_Shell" target="_blank">SSH</a> session window.
</p>

<table class="enumeratedPointsTable">

<tr>
<td class="enumeratedPointsTableNumberTD">
1.
</td>
<td class="enumeratedPointsTablePointTD">
Change to the &quot;web root&quot; directory of your site. &nbsp;(eg. &quot;<a class="copyText" href="javascript:void(0);">cd /var/www</a>&quot;)
</td>
</tr>

<tr>
<td class="enumeratedPointsTableNumberTD">
2.
</td>
<td class="enumeratedPointsTablePointTD">
Download the <a href="http://wordpress.com/" target="_blank">WordPress</a> archive file using the command: &quot;<a class="copyText" href="javascript:void(0);">wget http://wordpress.org/latest.tar.gz</a>&quot;.
</td>
</tr>

<tr>
<td class="enumeratedPointsTableNumberTD">
3.
</td>
<td class="enumeratedPointsTablePointTD">
Extract the <a href="http://wordpress.com/" target="_blank">WordPress</a> files from the archive using the command: &quot;<a class="copyText" href="javascript:void(0);">tar -xzvf latest.tar.gz</a>&quot;.
</td>
</tr>

<tr>
<td class="enumeratedPointsTableNumberTD">
4.
</td>
<td class="enumeratedPointsTablePointTD">
Use the command: &quot;<a class="copyText" href="javascript:void(0);">cd wordpress</a>&quot;, to change to the &quot;wordpress&quot; subdirectory.
</td>
</tr>

<tr>
<td class="enumeratedPointsTableNumberTD">
5.
</td>
<td class="enumeratedPointsTablePointTD">
Move the <a href="http://wordpress.com/" target="_blank">WordPress</a> files and directory structure to the &quot;web root&quot; using the command: &quot;<a class="copyText" href="javascript:void(0);">mv * ..</a>&quot;.
</td>
</tr>

<tr>
<td class="enumeratedPointsTableNumberTD">
6.
</td>
<td class="enumeratedPointsTablePointTD">
Fall back to the &quot;web root&quot; directory of your site using the command: &quot;<a class="copyText" href="javascript:void(0);">cd ..</a>&quot;.
</td>
</tr>

<tr>
<td class="enumeratedPointsTableNumberTD">
7.
</td>
<td class="enumeratedPointsTablePointTD">
Use the command: &quot;<a class="copyText" href="javascript:void(0);">rmdir wordpress</a>&quot;, to delete the now empty &quot;wordpress&quot; subdirectory.
</td>
</tr>

</table>

<p>
At this point you&#8217;ve installed <a href="http://wordpress.com/" target="_blank">WordPress</a>, but you must now make sure you&#8217;ve got a MySQL database setup before proceeding. &nbsp;Some web hosting companies helpfully do this step for you when your hosting account is initially created.  It&#8217;s quite common practice for such a pre-created database to have the same name as the second segment of your site&#8217;s domain name (eg &quot;marketcrashers.com&quot; might be supplied with an initial database called &quot;marketcrashers&quot;). &nbsp;The initial user name and password for such a pre-created database will likely match the user name and password of your Linux account on the server. &nbsp;The &quot;<a href="http://codex.wordpress.org/Installing_WordPress#Step_2:_Create_the_Database_and_a_User" target="_blank">Create The Database And A User</a>&quot; section of the wordpress.org guide covers the different ways of checking to see if such a database has already been setup for you and how to create one if it hasn&#8217;t. &nbsp;<b>After</b> you&#8217;ve made sure that a MySQL database has been created for use by <a href="http://wordpress.com/" target="_blank">WordPress</a>, you can proceed to setup the configuration file.
</p>

<table class="enumeratedPointsTable">

<tr>
<td class="enumeratedPointsTableNumberTD">
8.
</td>
<td class="enumeratedPointsTablePointTD">
Download the &quot;wp-config-sample.php&quot; file, which should now be in the web root directory, to your local PC using <a href="http://winscp.net/eng/download.php" target="_blank">WinSCP</a> or some other <a href="http://en.wikipedia.org/wiki/Secure_copy" target="_blank">SCP</a>/<a href="http://en.wikipedia.org/wiki/FTP" target="_blank">FTP</a> client.
</td>
</tr>

<tr>
<td class="enumeratedPointsTableNumberTD">
9.
</td>
<td class="enumeratedPointsTablePointTD">
Rename your local copy of the &quot;wp-config-sample.php&quot; file to &quot;wp-config.php&quot;.
</td>
</tr>

<tr>
<td class="enumeratedPointsTableNumberTD">
10.
</td>
<td class="enumeratedPointsTablePointTD">
Open your local copy of the &quot;wp-config.php&quot; file with a text editor (eg &quot;Notepad&quot;, which ships with Microsoft Windows for free and is accessible via &quot;Start -&gt; Programs -&gt; Accessories -&gt; Notepad&quot;). &nbsp;I personally use <a href="http://www.ultraedit.com/" target="_blank">UltraEdit</a>.
</td>
</tr>

<tr>
<td class="enumeratedPointsTableNumberTD">
11.
</td>
<td class="enumeratedPointsTablePointTD">
Fill in the values for the DB_NAME, DB_USER, and DB_PASSWORD define statements. &nbsp;DB_HOST should probably be set to &#8216;localhost&#8217;. &nbsp;DB_CHARSET should be set to either &#8216;utf8&#8242; or &#8221;(an empty string). &nbsp;DB_COLLATE should be set to an empty string.
</td>
</tr>

<tr>
<td class="enumeratedPointsTableNumberTD">
12.
</td>
<td class="enumeratedPointsTablePointTD">
<a href="https://api.wordpress.org/secret-key/1.1/salt/" target="_blank">Click on this link</a> to visit a wordpress.org hosted page which will automatically generate the security keys for your <a href="http://wordpress.com/" target="_blank">WordPress</a> installation.
</td>
</tr>

<tr>
<td class="enumeratedPointsTableNumberTD">
13.
</td>
<td class="enumeratedPointsTablePointTD">
Highlight the entire block of text displayed in the new browser window and hit Ctrl+C to copy it to your operating system&#8217;s clipboard.  You can now close the wordpress.org browser window.
</td>
</tr>

<tr>
<td class="enumeratedPointsTableNumberTD">
14.
</td>
<td class="enumeratedPointsTablePointTD">
Replace the block of text which is similar to the one in the clipboard by highlighting the old text in your local &quot;wp-config-sample.php&quot; file and hitting Ctrl+V to paste and overwrite.
</td>
</tr>

<tr>
<td class="enumeratedPointsTableNumberTD">
15.
</td>
<td class="enumeratedPointsTablePointTD">
You can now save the file and upload it to the web root directory using <a href="http://winscp.net/eng/download.php" target="_blank">WinSCP</a>.
</td>
</tr>

<tr>
<td class="enumeratedPointsTableNumberTD">
16.
</td>
<td class="enumeratedPointsTablePointTD">
Now complete the installation of <a href="http://wordpress.com/" target="_blank">WordPress</a> by running the install script &quot;/wp-admin/install.php&quot;. &nbsp;For example, if I were installing <a href="http://wordpress.com/" target="_blank">WordPress</a> on Marketcrashers.com I would open &quot;http://www.marketcrashers.com/wp-admin/install.php&quot; in a new browser window.
</td>
</tr>

</table>

<p>
Your basic <a href="http://wordpress.com/" target="_blank">WordPress</a> installation (NOT including <a href="http://themeshaper.com/thematic/" target="_blank">Thematic</a>) should now be complete. &nbsp;Anytime you need to access the administrative GUI in the future just visit the &quot;/wp-admin/&quot; page in a web browser.
</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.marketcrashers.com/blog/installing-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Preparing To Install WordPress And Thematic</title>
		<link>http://www.marketcrashers.com/blog/preparing-to-install-wordpress-and-thematic</link>
		<comments>http://www.marketcrashers.com/blog/preparing-to-install-wordpress-and-thematic#comments</comments>
		<pubDate>Thu, 30 Jun 2011 02:16:50 +0000</pubDate>
		<dc:creator>Jason Andrade</dc:creator>
				<category><![CDATA[Thematic]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://girltuesday.com/?p=77</guid>
		<description><![CDATA[I strongly prefer working with hosting solutions that support the SSH/SCP and FTP protocols. &#160;SSH is a way of remotely logging into your hosting account and having access to a Linux prompt. &#160;SCP is a file transfer protocol which rides on top of SSH. &#160;Chances are, if you have SSH access then you have SCP [...]]]></description>
			<content:encoded><![CDATA[<p>
I strongly prefer working with hosting solutions that support the <a href="http://en.wikipedia.org/wiki/Secure_Shell" target="_blank">SSH</a>/<a href="http://en.wikipedia.org/wiki/Secure_copy" target="_blank">SCP</a> and <a href="http://en.wikipedia.org/wiki/FTP" target="_blank">FTP</a> protocols. &nbsp;<a href="http://en.wikipedia.org/wiki/Secure_Shell" target="_blank">SSH</a> is a way of remotely logging into your hosting account and having access to a Linux prompt. &nbsp;<a href="http://en.wikipedia.org/wiki/Secure_copy" target="_blank">SCP</a> is a file transfer protocol which rides on top of <a href="http://en.wikipedia.org/wiki/Secure_Shell" target="_blank">SSH</a>. &nbsp;Chances are, if you have <a href="http://en.wikipedia.org/wiki/Secure_Shell" target="_blank">SSH</a> access then you have <a href="http://en.wikipedia.org/wiki/Secure_copy" target="_blank">SCP</a> as well. &nbsp;Setting up an <a href="http://en.wikipedia.org/wiki/FTP" target="_blank">FTP</a> service/daemon on your website&#8217;s server will make installing Theme&#8217;s and Plugins a lot easier. &nbsp;Running an <a href="http://en.wikipedia.org/wiki/FTP" target="_blank">FTP</a> daemon can be a security vulnerability for a server on the internet, so it should probably only be enabled when you need it.
</p>
<p>
While it is true that you can transfer files to your web host using the <a href="http://wordpress.com/" target="_blank">WordPress</a> GUI or your host&#8217;s CPanel, I personally prefer to do so using a program called <a href="http://winscp.net/eng/download.php" target="_blank">WinSCP</a> which can use either the <a href="http://en.wikipedia.org/wiki/Secure_copy" target="_blank">SCP</a>(preferred) or <a href="http://en.wikipedia.org/wiki/FTP" target="_blank">FTP</a> protocol.  Basically I&#8217;d recommend creating the files which comprise your website locally on your own computer and then transfer them to your web host.  A local file can be modified using something more powerful than the WordPress GUI editor.  I personally use <a href="http://www.ultraedit.com/" target="_blank">UltraEdit</a>.  This not coincidentally will also ensure you have a backup copy of your site in case something happens to your web server.
</p>
<p>
The ability to remotely log into your web host and have access to a Linux prompt, while not absolutely necessary, can be very useful. &nbsp;I would recommend using <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" target="_blank">PuTTY</a> as your <a href="http://en.wikipedia.org/wiki/Secure_Shell" target="_blank">SSH</a> client. &nbsp;Like <a href="http://winscp.net/eng/download.php" target="_blank">WinSCP</a>, <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" target="_blank">PuTTY</a> is released as open source, and is thus free to use. &nbsp;Notabene, on the <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" target="_blank">PuTTY download page</a> you will probably want the link under the title &quot;A Windows installer for everything except PuTTYtel&quot; if you are running Microsoft Windows.
</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.marketcrashers.com/blog/preparing-to-install-wordpress-and-thematic/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is WordPress And Thematic?</title>
		<link>http://www.marketcrashers.com/blog/what-is-wordpress-and-thematic</link>
		<comments>http://www.marketcrashers.com/blog/what-is-wordpress-and-thematic#comments</comments>
		<pubDate>Thu, 23 Jun 2011 02:15:56 +0000</pubDate>
		<dc:creator>Jason Andrade</dc:creator>
				<category><![CDATA[Thematic]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://girltuesday.com/?p=45</guid>
		<description><![CDATA[WordPress is a content management system (CMS) which is widely used, and is considered by the majority of the corporate world to be the best platform on which to create a professional website. When choosing a CMS there is always a trade-off between precise control over the content displayed and how easy it is add [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://wordpress.com/" target="_blank">WordPress</a> is a <a href="http://en.wikipedia.org/wiki/Content_management_system" target="_blank">content management system</a> (CMS) which is widely used, and is considered by the majority of the corporate world to be the best platform on which to create a professional website.  When choosing a CMS there is always a trade-off between precise control over the content displayed and how easy it is add or modify said content.  One of <a href="http://wordpress.com/" target="_blank">WordPress</a>&#8216;s distinctive features is its customizability using  &#8220;themes&#8221;, which are in essence templates for a standardized appearance of a website&#8217;s pages.  <a href="http://themeshaper.com/thematic/" target="_blank">Thematic</a> is one of the most flexible and powerful themes available.  Like <a href="http://wordpress.com/" target="_blank">WordPress</a>, it is also open source and thus is free for use on anyone&#8217;s website.  There are many &#8220;guides&#8221; which have been posted online for both <a href="http://wordpress.com/" target="_blank">WordPress</a> and <a href="http://themeshaper.com/thematic/" target="_blank">Thematic</a>.  This blog will not attempt to duplicate what others have already written, but will instead only mention those salient points which I&#8217;ve encountered while using these two pieces of software.
</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.marketcrashers.com/blog/what-is-wordpress-and-thematic/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

