<?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>Tutorials</title>
		<atom:link href="http://www.seofaction.com/feed" rel="self" type="application/rss+xml" />
		<link>http://www.seofaction.com</link>
		<description>Just another WordPress site</description>
		<lastBuildDate>Mon, 14 Mar 2011 02:16:34 +0000</lastBuildDate>
		<language>en</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
		<generator>http://wordpress.org/?v=3.1</generator>
		<item>
			<title>SEO Faction Partners With Green Zine</title>
			<link>http://www.seofaction.com/news/seo-faction-partners-with-green-zine</link>
			<comments>http://www.seofaction.com/news/seo-faction-partners-with-green-zine#comments</comments>
			<pubDate>Sat, 12 Mar 2011 21:26:30 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<category><![CDATA[News]]></category>
			<guid isPermaLink="false">http://www.seofaction.com/?p=51</guid>
			<description><![CDATA[A partnership announcement between Green Zine and SEO Faction.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">Summary: <em>SEO Faction has partnered with Green Zine, a new startup, to build an online web presence and market their online magazine.</em></p><p style="text-align: left;">SEO Faction announces a partnership with Green Zine: a new startup that intends on marketing a magazine to those interested in green topics such as recycling and sustainability.</p><p style="text-align: left;">The partnership will include a new web design, Internet marketing, web hosting, and conversion analysis in an effort to build the brand of Green Zine in an already competitive market.</p><p style="text-align: left;">Green Zine has chosen to go the route of online branding in response to the decline of print. While major newspapers and magazines seem to be getting by, niche magazines have had to shut down shop or operate under constrained conditions. Print also carries much more overhead costs that may now be avoided.</p><p style="text-align: left;">The clear alternative was to create an online magazine that offers all of the same functionality of print and then some. Green Zine will have a custom administration panel to write, edit, and administer all portions of their new online magazine.</p><p style="text-align: left;">The project is scheduled to be live Summer of 2011.</p>]]></content:encoded>
			<wfw:commentRss>http://www.seofaction.com/news/seo-faction-partners-with-green-zine/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>Installing PostgreSQL On a Linux Server</title>
			<link>http://www.seofaction.com/postgres/installing-postgresql-on-a-linux-server</link>
			<comments>http://www.seofaction.com/postgres/installing-postgresql-on-a-linux-server#comments</comments>
			<pubDate>Wed, 09 Mar 2011 02:53:45 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<category><![CDATA[PostgreSQL]]></category>
			<guid isPermaLink="false">http://www.seofaction.com/?p=37</guid>
			<description><![CDATA[A guide for installing PostgreSQL on several flavors of Linux distributions. Includes CentOS, Ubuntu, Debian, Red Hat, Fedora, Gentoo, and SuSE. Get Postgres running and join in on the fun!]]></description>
			<content:encoded><![CDATA[<p>Installing PostgreSQL on your local or remote Linux server is easy: the Postgres team supports all of the major Linux distributions and their preferred method of getting packages from repositories. It&#8217;s also moderately easy to configure the package for development or production usage.</p><p>This guide will detail the installation process for CentOS, Fedora, RHEL, Debian, Ubuntu, Gentoo, and SuSE. There is also a graphical installer available for Linux systems if yours isn&#8217;t listed, and some such as Ubuntu have easy to use software installation utilities you may use as an alternative.</p><h2>Installing PostgreSQL on Ubuntu and Debian</h2><p>Ubuntu and Debian are similar enough that you should be able to use the same installation process for both. The quickest way to install Postgres is through the command prompt.</p><p>Enter the following in the terminal:</p><pre class="brush: bash; title: Code;">sudo apt-get install postgresql</pre><p>Go through the installation process and configure based on your needs. The default configuration should suffice if you are not sure what your needs are, specifically.</p><p>The default username is “postgres” and the default password is not set. It is highly recommended that you create a user with the following:</p><pre class="brush: bash; title: Code;">sudo -u postgres createuser –superuser $USER sudo -u postgres psql postgres=# \password $PASSWORD</pre><p>You also have the alternative of using the Ubuntu Software Center or Debian counterpart instead.</p><h2>Installing PostgreSQL on CentOS, Fedora, and Red Hat</h2><p>It&#8217;s equally as easy to install Postgres on each of the these three Linux distributions as it is with Ubuntu and Debian. The difference is that you will be using the yum command.</p><pre class="brush: bash; title: Code;">yum install postgresql postgresql-server postgresql-libs</pre><p>You can then connect to the server using psql:</p><pre class="brush: bash; title: Code;">su – postgres psql -d template1 -U postgres</pre><p>Postgres uses port 5432, so also make sure this port is open in your /etc/sysconfig/iptables file.</p><h2>Installing PostgreSQL on Gentoo</h2><p>Gentoo is easy to setup, but you have to remember to set the password. By default it would be your current user&#8217;s password, which isn&#8217;t ideal.</p><pre class="brush: bash; title: Code;">emerge postgresql passwd postgres</pre><p>Now you will be able to create the database environment. Replace $CURRENTVERSION below with the actual current version number of PostgreSQL. Example: postgresql-8.0.4</p><pre class="brush: bash; title: Code;">emerge –config =postgresql-$CURRENTVERSION</pre></pre><p>Now you can start the PostgreSQL service and add it to the system boot:</p><pre class="brush: bash; title: Code;">/etc/init.d/postgresql start rc-update add postgresql default</pre><p>...and you're done! A bit more work than other distributions, but still easy enough.</p><h2>Installing PostgreSQL on SUSE Linux</h2><p>The SUSE installation isn't tough either: just a matter of syntax.</p><pre class="brush: bash; title: Code;">yast2 -install postgresql-server</pre><p>Now start the server and set the username and password:</p><pre class="brush: bash; title: Code;">rcpostgresql start su postgres -c psql postgres ALTER USER postgres WITH PASSWORD 'postgres'; ALTER ROLE</pre><p>It shouldn't have to be mentioned that a username and password of postgres isn't ideal for production environments.</p><h2>Troubleshooting The Install</h2><p>There are some syntactical differences from time to time. It's likely you are using a deprecated command or an out of date repository.</p><p>If you are having problems, feel free to post a comment below. You will get a detailed email response within 24 hours</p>]]></content:encoded>
		<wfw:commentRss>http://www.seofaction.com/postgres/installing-postgresql-on-a-linux-server/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	</item>
	<item>
		<title>Installing Zend Framework For Development Environments</title>
		<link>http://www.seofaction.com/zend-framework/installing-for-development-environments</link>
		<comments>http://www.seofaction.com/zend-framework/installing-for-development-environments#comments</comments>
		<pubDate>Sun, 06 Feb 2011 01:19:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		<category><![CDATA[Zend Framework]]></category>
		<guid isPermaLink="false">http://www.seofaction.com/?p=23</guid>
		<description><![CDATA[Naturally, the first step in learning the Zend Framework is to install the local development environment. This is where all the preliminary code not fit for a production environment is created. It&#8217;s ideal for testing, devising, and brain storming your &#8230;]]></description>
		<content:encoded><![CDATA[<p>Naturally, the first step in learning the Zend Framework is to install the local development environment. This is where all the preliminary code not fit for a production environment is created. It&#8217;s ideal for testing, devising, and brain storming your app to completion.</p><p>In this tutorial we will be setting up Zend Framework with <a title="xampp" href="http://www.seofaction.com/xampp" target="_blank">XAMPP</a>: a web server solution that allows us to mimic our production environment without sacrificing power or usability.</p><h2>Download XAMPP</h2><p>If you don&#8217;t have XAMPP installed already you should do so.</p><p>You can follow a quick and pain-free guide for your choice of operating system below:</p><ul><li><a title="windows install" href="http://www.seofaction.com/xampp/installing-xampp-windows" target="_blank">Install XAMPP on Windows</a></li><li><a title="linux install" href="http://www.seofaction.com/xampp/installing-xampp-linux" target="_blank">Install XAMPP on Linux</a></li></ul><h2>Download Zend Framework</h2><p>Zend Framework has multiple packages and customizations to choose from. For the purposes of this tutorial we will be downloading the minimal package. Feel free to download the full package and the documentation if you want to look at code samples and get a quick-start guide to Zend Framework.</p><p>You can find Zend Framework here:</p><pre>http://framework.zend.com/download/current/</pre><p>Note that you don&#8217;t need to register to download Zend Framework; skip the packages and near the bottom you will find direct links to the ZIP or tarball archives.</p><h2>Installing Zend Framework with XAMPP</h2>]]></content:encoded>
		<wfw:commentRss>http://www.seofaction.com/zend-framework/installing-for-development-environments/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	</item>
	<item>
		<title>Installing XAMPP For Windows</title>
		<link>http://www.seofaction.com/xampp/installing-xampp-windows</link>
		<comments>http://www.seofaction.com/xampp/installing-xampp-windows#comments</comments>
		<pubDate>Tue, 01 Feb 2011 17:40:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		<category><![CDATA[xampp]]></category>
		<guid isPermaLink="false">http://www.seofaction.com/?p=5</guid>
		<description><![CDATA[A guide for installing and using XAMPP on Linux and Windows systems.]]></description>
		<content:encoded><![CDATA[<p>In the olden days of web development it was standard to learn how to install each component of the development environment. This meant installing Apache web server, MySQL database, and then your choice of PHP or Perl. Developers old enough to remember these days also remember that these technologies didn&#8217;t always play nice together.</p><p>Enter <a title="xampp tutorials" href="http://www.seofaction.com/xampp" target="_blank">XAMPP</a>: a solution stack that enables developers to get local projects up and running with a simple installation.</p><p><em>The estimated installation time is just a couple of minutes.</em></p><h3>Download XAMPP</h3><p>XAMPP for Windows can be downloaded by following the link below.</p><p>Be sure to grab the latest stable release:</p><pre class="brush: bash; title: Code;">http://www.apachefriends.org/en/xampp-windows.html</pre><h3>XAMPP Install Path</h3><p>It&#8217;s recommended that XAMPP is installed into the C:\xampp directory. Not only does this get around file permission issues in some versions of Windows, but it&#8217;s also standard so you can receive help or use code from others with little to no configuration.</p><p><img class="aligncenter size-full wp-image-11" title="xampp install path" src="http://www.seofaction.com/wordpress/wp-content/uploads/2011/02/xampp11.jpg" alt="xampp install path" width="500" height="283" /></p><h3>Testing The Install</h3><p>What, you were expecting more? There&#8217;s nothing else to configure! You can start the XAMPP tool found in your Start menu or on your Desktop. Or, if you run a clean shop and didn&#8217;t install the shortcuts, you can find the tool here:</p><pre class="brush: bash; title: Code;">C:\xampp\xampp-control.exe</pre><p>Once you get the tool running, start the Apache server. Most of the time you will also be using MySQL for storing information, so it&#8217;s useful to get in the habit of starting both services when you start the tool.</p><p><img class="aligncenter size-full wp-image-15" title="start xampp services" src="http://www.seofaction.com/wordpress/wp-content/uploads/2011/02/xampp2.jpg" alt="start xampp services" width="500" height="262" />Open your favorite browser and type <em>localhost </em>or <em>127.0.0.1</em> into the address bar. If all went well you should see the following welcome screen, complete with demos and documentation:</p><p><img class="aligncenter size-full wp-image-16" title="xampp success screen" src="http://www.seofaction.com/wordpress/wp-content/uploads/2011/02/xampp3.jpg" alt="xampp success screen" width="500" height="278" /></p><h2>Installation Errors</h2><p>At this point you should be able to browse the demo projects at will. If you aren&#8217;t able to do so feel free to post error messages below, accompanied by any relevant information such as operating system, configuration, or modifications you have done to XAMPP.</p>]]></content:encoded>
		<wfw:commentRss>http://www.seofaction.com/xampp/installing-xampp-windows/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	</item>
</channel>
</rss>
