<?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>Portland Web Design Professionals &#187; Blog</title>
	<atom:link href="http://www.5TwentyStudios.com/portland_oregon_web_design/software-development-services/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.5TwentyStudios.com</link>
	<description>Portland&#039;s premiere web design company.</description>
	<lastBuildDate>Fri, 19 Aug 2011 20:27: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>MySQL 5.5.11 Setting Security</title>
		<link>http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-setting-security/</link>
		<comments>http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-setting-security/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 20:43:51 +0000</pubDate>
		<dc:creator>Jonathon</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Website Development]]></category>

		<guid isPermaLink="false">http://www.5TwentyStudios.com/?p=521</guid>
		<description><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-setting-security/">MySQL 5.5.11 Setting Security</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
MySQL 5.5.11 Setting Security is a post from: 5 Twenty Studios If you&#8217;re coming from the installation tutorial, congratulations! I&#8217;m<a href="http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-setting-security/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-setting-security/">MySQL 5.5.11 Setting Security</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
<p>If you&#8217;re coming from the <a href="http://www.5twentystudios.com/blog/2011/04/21/mysql-5-5-11-installation-tutorial-step-two/">installation tutorial</a>, congratulations! I&#8217;m glad that you made it this far. It took me three days to figure that out myself.</p>
<h3>Restarting MySQL Without Permissions Table</h3>
<p>The first step to setting your administrative password is to shutdown MySQL, because we have to restart it without the ACL loading.</p>
<p><code>$ /etc/init.d/mysql stop</code></p>
<p>Alright, so now restart MySQL using this command in order to ignore the permissions system.</p>
<p><code>$ /usr/local/mysql/bin/mysqld_safe --skip-grant-tables &#038;</code></p>
<h3>Setting your Passwords</h3>
<p>There&#8217;s a couple ways to reset your password, this is just one way.</p>
<p><code>$ mysql -u root<br />
mysql> use mysql;<br />
mysql> update user set password=PASSWORD("NEW-ROOT-PASSWORD") where User='root';<br />
mysql> flush privileges;<br />
mysql> quit</code></p>
<p>You can&#8217;t just use restart at this point, you&#8217;ll need to stop mysql first and then start it.</p>
<p><code>$ /etc/init.d/mysql stop<br />
$ /etc/init.d/mysql start</code></p>
<p>Now you can load mysql and test it out.</p>
<p><code>$ mysql -u root -p</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-setting-security/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MySQL 5.5.11 Possible Errors During Installation</title>
		<link>http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-possible-errors-during-installation/</link>
		<comments>http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-possible-errors-during-installation/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 20:33:07 +0000</pubDate>
		<dc:creator>Jonathon</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Website Development]]></category>

		<guid isPermaLink="false">http://www.5TwentyStudios.com/?p=513</guid>
		<description><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-possible-errors-during-installation/">MySQL 5.5.11 Possible Errors During Installation</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
MySQL 5.5.11 Possible Errors During Installation is a post from: 5 Twenty Studios I&#8217;ve compiled this list of errors that<a href="http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-possible-errors-during-installation/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-possible-errors-during-installation/">MySQL 5.5.11 Possible Errors During Installation</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
<p>I&#8217;ve compiled this list of errors that I&#8217;ve been running into during the installation of MySQL. Here&#8217;s the process that I&#8217;ve been figuring out, the results have become a tutorial, <a href="http://www.5twentystudios.com/blog/2011/04/21/installing-mysql-5-5-11/">Installation MySQL 5.5.11</a>.</p>
<h3>Can&#8217;t start server: Bind on TCP/IP port: Address already in use</h3>
<p>Do you already have another mysqld server running on port: 3306 ?.. Aborting. Is an error that I received during this installation process.</p>
<p>To fix this error I use the <a href="http://www.5twentystudios.com/blog/2011/04/21/mysql-5-5-11-installation-debugging-step-three/#killingprocesses">Killing Processes</a> procedure to stop the instance of mysqld that was arleady running.</p>
<h3>mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended</h3>
<p>It seems that the pid file isn&#8217;t being created. This file only contains the process number for the OS. Otherwise its an empty file. Possible causes of this happening are 80% of the time lead back to your my.cnf variables. The other 20% are caused by file or folder permissions.</p>
<h3>Can&#8217;t connect to local MySQL server through socket &#8216;/var/run/mysqld/mysqld.sock&#8217; (2)</h3>
<p>Normally this is caused by a bad variable in your <em>/etc/my.cnf</em> file. Once you fix your my.cnf file then restart mysql using this command.</p>
<p><code>$ /usr/local/mysql/bin/mysqld_safe --user=mysql</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-possible-errors-during-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL 5.5.11 Installation Debugging &#8211; Step Three</title>
		<link>http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-installation-debugging-step-three/</link>
		<comments>http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-installation-debugging-step-three/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 20:04:41 +0000</pubDate>
		<dc:creator>Jonathon</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Website Development]]></category>

		<guid isPermaLink="false">http://www.5TwentyStudios.com/?p=502</guid>
		<description><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-installation-debugging-step-three/">MySQL 5.5.11 Installation Debugging &#8211; Step Three</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
MySQL 5.5.11 Installation Debugging &#8211; Step Three is a post from: 5 Twenty Studios There&#8217;s no shortage of problems when<a href="http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-installation-debugging-step-three/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-installation-debugging-step-three/">MySQL 5.5.11 Installation Debugging &#8211; Step Three</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
<p>There&#8217;s no shortage of problems when trying to do something simple, especially when we&#8217;re pirating into new territory. This is a compilation of commands that you can use in order to debug your MySQL problems. I hope that these help.</p>
<p>FYI: I found this nice reference manual while stumbling around google. <a href="http://www.comentum.com/mysql-administration.html" target="_blank">MySQL Reference for OS X</a></p>
<h3>Stopping Processes</h3>
<p>If you had entered a command and you want to stop the process then try this.</p>
<p><code>Hold Ctrl + C</code></p>
<p><a name="killingprocesses" id="killingprocesses"></a></p>
<h3>Killing Processes</h3>
<p>First things first you need to locate the process number. This is a lot like using Ctrl + Alt + Delete and loading the windows process manager to end a process.</p>
<p><code>ps aux | grep mysql</code></p>
<p>Once you&#8217;ve located the five digit number thats assigned to the process that you want to stop, you&#8217;ll run the kill command and pass the number as the parameter.</p>
<p><code>$ kill 12345</code></p>
<h3>Error Logs</h3>
<p>First things first, you&#8217;ve got to check your error logs.</p>
<p><code>$ less /var/log/mysql/error.log</code></p>
<p>Use your arrow keys to navigate the file. To exit this view use the following:</p>
<p><code>Hold Ctrl + Z</code></p>
<h3>Viewing a Commands Thought Process</h3>
<p>This command will print out everything as the command walks through the code. You&#8217;ll see all of the system errors as they happen&#8230; if any.</p>
<p><code>$ sh -x /usr/local/mysql/bin/mysqld_safe --skip-grant-tables --defaults-file=/etc/my.cnf --user=root</code></p>
<h3>Viewing the Results of the Installation</h3>
<p>The installation command will setup the mysql database that runs all of the sub databases that you will later setup. To see a directory listing of the files that were installed, if any, within your directories, then run this command. Be sure to change out the directory path with the directory that you want to view.</p>
<p><code>$ ls -l /var/lib/mysql<br />
$ ls -l /var/lib/mysql/mysql</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-installation-debugging-step-three/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL 5.5.11 Installation Tutorial &#8211; Step Two</title>
		<link>http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-installation-tutorial-step-two/</link>
		<comments>http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-installation-tutorial-step-two/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 18:16:42 +0000</pubDate>
		<dc:creator>Jonathon</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Website Development]]></category>

		<guid isPermaLink="false">http://www.5TwentyStudios.com/?p=461</guid>
		<description><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-installation-tutorial-step-two/">MySQL 5.5.11 Installation Tutorial &#8211; Step Two</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
MySQL 5.5.11 Installation Tutorial &#8211; Step Two is a post from: 5 Twenty Studios If you haven&#8217;t backed up your<a href="http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-installation-tutorial-step-two/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-installation-tutorial-step-two/">MySQL 5.5.11 Installation Tutorial &#8211; Step Two</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
<p>If you haven&#8217;t backed up your system yet, then head back to step one: <a href="http://www.5twentystudios.com/blog/2011/04/21/installing-mysql-5-5-11/">Backing up MySQL</a></p>
<p>Alright, this second step assumes that you have a server thats not running MySQL. I&#8217;m using Ubuntu 9.04 (Jaunty Jackalope) and installing MySQL 5.5.11. If you run into any problems, go ahead and post the problem in the comments along with any solution that you find. I apologize but I probably willn&#8217;t be able to provide support to help you with all of the problems that you guys will most likely run into.</p>
<h3>Download the binary</h3>
<p>For the purposes of this tutorial I&#8217;ll be using the latest MySQL version, 5.5.11. I was able to finally locate the proper installation package from this helpful directory: <a href="http://download.softagency.net/MySQL/Downloads/MySQL-5.5/" target="_blank">SoftAgency.net</a>. FYI, this download from server to server took me about thirty minutes.</p>
<p><code>$ cd /tmp/<br />
$ chmod -R 777 .<br />
$ wget http://download.softagency.net/MySQL/Downloads/MySQL-5.5/mysql-5.5.11-linux2.6-i686.tar.gz<br />
</code></p>
<h3>Install the asynchronous I/O library</h3>
<p>This is so that we can take advantage of the asynchronous I/O capability in the new InnoDB plugin that ships with MySQL 5.5</p>
<p><code>$ apt-get install libaio-dev<br />
</code></p>
<h3>Untar the archive</h3>
<p><code>$ tar xzvf mysql-5.5.11-linux2.6-i686.tar.gz<br />
</code></p>
<h3>Add the path to MySQL bin directory to the PATH variable</h3>
<p>Your environment file may look different than this. The point here is to add the <em>/usr/local/mysql/bin</em> to the paths.</p>
<p><code>$ vim /etc/environment<br />
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/mysql/bin"<br />
$ source /etc/environment<br />
</code></p>
<h3>Making sure that we have the proper users and groups</h3>
<p>You can skip this step if you had MySQL previously installed on your system.</p>
<p><code>$ groupadd mysql<br />
$ useradd -r -g mysql mysql<br />
</code></p>
<h3>Create the socket directory</h3>
<p>Here again, setting the correct permissions on the socket directory is very important, otherwise MySQL would not run.</p>
<p><code>$ mkdir /var/run/mysqld/<br />
$ chown -R mysql:mysql /var/run/mysqld/<br />
</code></p>
<h3>Copy or move the untarred MySQL directory to the installation directory</h3>
<p>It would make sense to do this prior to setting the environment paths, however, this is the point at which I find myself restarting this process over and over again until I get it right.</p>
<p><code>$ cp -R mysql-5.5.11-linux2.6-i686 /usr/local/<br />
$ cd /usr/local/<br />
$ ln -s mysql-5.5.11-linux2.6-i686 mysql<br />
</code></p>
<p><a name="checkpointone" id="checkpointone"></a><strong style="color:#BF2026">Consider this Checkpoint One.</strong></p>
<h3>Set the correct file and directory permissions on the MySQL installation directory</h3>
<p>Setting correct permissions is very important, and setting them in the proper order is even more important. The first step is to set everything to <em>mysql</em> for the installation and then we&#8217;ll set them back to root for security reasons. Make certain that you&#8217;re in the <em>/usr/local/mysql</em> directory or you&#8217;re going to cause some major issues. </p>
<p><code>$ cd /<br />
$ chown -R mysql:mysql /usr/local/mysql<br />
$ chown -R mysql:mysql /var/lib/mysql<br />
$ chown -R mysql:mysql /var/run/mysql<br />
$ chown -R mysql:mysql /var/run/mysqld<br />
</code></p>
<h3>Copy the sample MySQL configuration file to the etc directory and setup the paths</h3>
<p>I actually had to look inside my <em>support-files</em> directory and see what .cnf files were available to me. Depending on what you downloaded, yours may differ from <em>my-huge.cnf</em>.</p>
<p><code>$ cp /usr/local/mysql/support-files/my-huge.cnf /etc/my.cnf<br />
</code></p>
<p>Now edit <em>/etc/my.cnf</em> so that it has the following values:</p>
<p><code>[client]<br />
user          = mysql<br />
socket       = /var/run/mysql/mysql.sock<br />
port		= 3306<br />
</code><br />
<code>[mysql.server]<br />
user       = mysql<br />
basedir    = /var/lib/mysql/mysql<br />
</code><br />
<code>[safe_mysqld]<br />
err-log    = /var/log/mysql/mysqld.log<br />
</code><br />
<code>[mysqld]<br />
user            = mysql<br />
socket          = /var/run/mysqld/mysqld.sock<br />
port            = 3306<br />
pid-file   = /var/run/mysqld/mysqld.pid<br />
basedir         = /usr/local/mysql<br />
#/path/to/datadir/mysql<br />
datadir         = /var/lib/mysql/mysql<br />
tmpdir          = /tmp<br />
log_error       = /var/log/mysql/error.log<br />
#You need to update this to your servers IP address<br />
bind-address    = 0.0.0.0<br />
</code></p>
<h3>Run the Installation Script</h3>
<p>The official installation guide suggests that you run this command prior to moving or adjusting the my.cnf file, however, I&#8217;ve found it more beneficial to use the my.cnf file as the defaults when running this installation script.</p>
<p><code>$ cd /usr/local/mysql<br />
$ /usr/local/mysql/scripts/mysql_install_db --defaults-file=/etc/my.cnf --user=mysql</code></p>
<h3>Copy the MySQL server startup script to the startup directory</h3>
<p>The MySQL startup script has to be placed in the directory where all the startup scripts reside, so that MySQL starts on system startup. Make sure that you make the startup script executable, and update the rc.d database to notify the system about the presence of a new startup script.</p>
<p><code>$ cd /usr/local/mysql/support-files/<br />
$ cp mysql.server /etc/init.d/mysql<br />
$ chmod +x /etc/init.d/mysql<br />
$ update-rc.d mysql defaults<br />
</code></p>
<p>I ran into a lot of problems with <em>mysqld</em> not being installed as well, so I peered inside my <em>support-files</em> directory again and located the mysqld server file and repeated these steps.</p>
<p><code>$ cp mysqld_multi.server /etc/init.d/mysqld<br />
$ chmod +x /etc/init.d/mysqld<br />
$ update-rc.d mysqld defaults<br />
</code></p>
<h3>Starting MySQL in safe mode</h3>
<p>When starting the MySQL server for the first time after the new installation, it has to be started without the <em>grants</em> table, for two reasons. Firstly, because we want to retain the users and privileges data from the previous install of MySQL and secondly, because the schema of the <em>grants</em> table in MySQL 5.5 has changed.</p>
<p>So what we will do is start MySQL without the <em>grants</em> table, import the users and privileges data we backed up earlier in this guide and run the <em>mysql_upgrade</em> script that modifies the schema of the <em>grants</em> table to be in sync with that in MySQL 5.5. After that we will be able to run MySQL normally and have all the users and privileges same as in the previous version we had.</p>
<p><code>$ /usr/local/mysql/bin/mysqld_safe --user=mysql </code></p>
<h3>Let&#8217;s check to see if we can call mysql</h3>
<p>If you&#8217;re system throws any errors, well then, something went wrong and you need to start over from the last checkpoint. Otherwise, PHEW *wipe your brow* and proceed with the restoration of your backups.</p>
<p><code>$ mysql</code></p>
<p>If starting MySQL failed, have no fear, a lot of people are having the same problems that you&#8217;re having. Your next step is to open step three along side step two and work yourself through this process, <a href="http://www.5twentystudios.com/blog/2011/04/21/mysql-5-5-11-installation-debugging-step-three/" target="_blank">Step Three &#8211; Debugging</a>.</p>
<p><a name="checkpointtwo" id="checkpointtwo"></a><strong style="color:#BF2026">Consider this Checkpoint Two.</strong></p>
<h3>Loading your backups</h3>
<p>Navigate to your backup directory and run the sql dump file. I actually ran into a problem at this step and had to finish configuring the security/passwords before I could finish restoring my old databases. Have a look here <a href="http://www.5twentystudios.com/blog/2011/04/21/mysql-5-5-11-setting-security/">Setting MySQL Passwords and Security</a>.</p>
<p><code>$ cd /root/mysql-5.1-dump<br />
$ mysql &lt; mysql.sql<br />
</code></p>
<h3>Run the upgrade script so that everything gets upgraded to the version 5.5</h3>
<p><code>$ mysql_upgrade<br />
</code></p>
<h3>Stop the server and start it normally</h3>
<p><code>$ /etc/init.d/mysql stop<br />
$ /etc/init.d/mysql start<br />
</code></p>
<p>There you go, you have a MySQL 5.5 server up and running in no time! Do share your problems and your fixes with the rest of us. For those of you that are moving on to the next phase, I suggest that you head to the next step of setting up your passwords and securing your MySQL server installation <a href="http://www.5twentystudios.com/blog/2011/04/21/mysql-5-5-11-setting-security/">MySQL Security</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.5TwentyStudios.com/blog/2011/04/21/mysql-5-5-11-installation-tutorial-step-two/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL 5.5.11 Installation Tutorial &#8211; Step One</title>
		<link>http://www.5TwentyStudios.com/blog/2011/04/21/installing-mysql-5-5-11/</link>
		<comments>http://www.5TwentyStudios.com/blog/2011/04/21/installing-mysql-5-5-11/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 17:55:38 +0000</pubDate>
		<dc:creator>Jonathon</dc:creator>
				<category><![CDATA[Website Development]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql 5.5.11]]></category>

		<guid isPermaLink="false">http://www.5TwentyStudios.com/?p=447</guid>
		<description><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2011/04/21/installing-mysql-5-5-11/">MySQL 5.5.11 Installation Tutorial &#8211; Step One</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
MySQL 5.5.11 Installation Tutorial &#8211; Step One is a post from: 5 Twenty Studios An application that I&#8217;m looking to<a href="http://www.5TwentyStudios.com/blog/2011/04/21/installing-mysql-5-5-11/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2011/04/21/installing-mysql-5-5-11/">MySQL 5.5.11 Installation Tutorial &#8211; Step One</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
<p>An application that I&#8217;m looking to install has set MySQL 5.5+ as an installation requirement. This tutorial has spawned out of three days of attempting to get MySQL upgraded from 5.1 to 5.5. Since this was the best tutorial that I was able to find (<a href="http://www.ovaistariq.net/490/a-step-by-step-guide-to-upgrading-to-mysql-5-5/" target="_blank">http://www.ovaistariq.net/490/a-step-by-step-guide-to-upgrading-to-mysql-5-5/</a>), I&#8217;ll give Ovais Tariq a plug here. Although the Ovais Tariq tutorial was very informative and helpful, it didn&#8217;t actually work for me. Although I do feel that it got close, so I&#8217;m rewriting it here with my experiences to helpfully assist some others.</p>
<p>I&#8217;ll be breaking this tutorial down into two parts: the first part is backing up and removing mysql from your current server; the second part of this tutorial is the installation of MySQL 5.5.11, <a href="http://www.5twentystudios.com/blog/2011/04/21/mysql-5-5-11-installation-tutorial-step-two/">found here</a>.</p>
<h3>Backup the MySQL configuration</h3>
<p><code>$ mkdir /root/mysql-5.1-conf<br />
$ cp -R /etc/mysql/ /root/mysql-5.1-conf<br />
</code></p>
<h3>Backup the data directory</h3>
<p>We will be backing up the data in the form of SQL dump as well as by copying the data files over to a safe place, just to be 100% sure about the data not getting lost.</p>
<p><code>$ mkdir /root/mysql-5.1-data<br />
$ cp -R /var/lib/mysql/ /root/mysql-5.1-data<br />
</code></p>
<h3>Backup the data as SQL dump</h3>
<p>Backup the <em>mysql</em> database separately and not with all the other databases, because we are going to need it before we restore all the databases.</p>
<p><code>$ mkdir /root/mysql-5.1-dump<br />
$ mysqldump -u user_name -p --databases mysql &gt; /root/mysql-5.1-dump/mysql.sql<br />
$ mysqldump -u user_name -p --databases db_name &gt; /root/mysql-5.1-dump/db_name.sql<br />
</code></p>
<h3>Secondary Backups</h3>
<p>Backups are essential, I had a copy of phpmyadmin installed, so I took advantage of this and exported all of the databases into a gzip file and saved it to my desktop.</p>
<h3>Secondary MySQL Server for Production sites</h3>
<p>For my situation I&#8217;m working on a clients server that contains both, the development site as well as the production site. I used our 5Twenty Studios server and setup a database for the production website. I then redirected the production site to this new database while I upgrade the server.</p>
<p>As a test I shut down mysql on the server and confirmed that the dev site was offline and that the production site was alive and well.</p>
<p><code>$ /etc/init.d/mysql stop</code></p>
<h3>Remove the older version of MySQL</h3>
<p>Now is the time to remove the older version of MySQL, in this case I assume the older version to be MySQL 5.1</p>
<p><code>$ apt-get remove mysql-server-5.1<br />
$ apt-get autoremove<br />
$ apt-get remove mysql-client<br />
$ apt-get autoremove<br />
</code></p>
<h3>Remove the MySQL files from the older version</h3>
<p><code>$ rm -R /var/lib/mysql<br />
$ rm -R /etc/mysql<br />
$ rm -R /usr/lib/mysql<br />
</code></p>
<p>I had to run through this installation process multiple times over the course of three days, so I used this next command to search for all of the mysql instances on my server and removed them. I wanted to make sure that I was working with a blank slate.</p>
<p><code>$ find / | grep mysql</code></p>
<p>Alright, now that you&#8217;re making sure that nothing is lost in this process, lets head to step two: <a href="http://www.5twentystudios.com/blog/2011/04/21/mysql-5-5-11-installation-tutorial-step-two/">Installing MySQL 5.5.11</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.5TwentyStudios.com/blog/2011/04/21/installing-mysql-5-5-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Pagination</title>
		<link>http://www.5TwentyStudios.com/blog/2010/10/03/wordpress-pagination/</link>
		<comments>http://www.5TwentyStudios.com/blog/2010/10/03/wordpress-pagination/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 08:27:01 +0000</pubDate>
		<dc:creator>Tyler Byrd</dc:creator>
				<category><![CDATA[Hardpressed]]></category>

		<guid isPermaLink="false">http://www.5TwentyStudios.com/?p=418</guid>
		<description><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2010/10/03/wordpress-pagination/">WordPress Pagination</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
WordPress Pagination is a post from: 5 Twenty Studios WOW! I&#8217;ve been having a pain in the ass time getting<a href="http://www.5TwentyStudios.com/blog/2010/10/03/wordpress-pagination/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2010/10/03/wordpress-pagination/">WordPress Pagination</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
<p>WOW! I&#8217;ve been having a pain in the ass time getting pagination to work on WordPress. First off, I don&#8217;t want to use wp-pagenavi or some other plugin. I hate plugins, I would rather have my plugin running on one clean install and nothing else.</p>
<p>LET&#8217;S GET STARTED. This is like Pagination made super simple, seriously. I&#8217;ve taken out all the work.</p>
<p><strong>Step One:</strong><br />
Ok, step one. Paste this code into your functions.php file. It sets up the $pagination variable for us.<br />
<span id="more-418"></span><br />
<code>	/**<br />
	 * On Loop End Set the Pagination Global Variable<br />
	 *<br />
	 * This makes life a little bit easier. All of your pagination values<br />
	 * set to the $pagination global variable. Now whenever you want to<br />
	 * create some pagination. Just call $pagination.<br />
	 *<br />
	 * @param reference $wp_query object<br />
	 * @return null<br />
	 */<br />
	add_action('loop_end', 'jb_setpagination');<br />
	function jb_setpagination( &#038;$wp_query )<br />
	{<br />
		global $pagination;</p>
<p>                $posts_per_page = (String)$wp_query->query_vars['posts_per_page'];<br />
		$no_found_rows = (String)$wp_query->found_posts;<br />
		$max_num_pages = (String)$wp_query->max_num_pages;<br />
		$current_page = (String)$wp_query->query_vars['paged'];</p>
<p>		$pagination = compact('posts_per_page','no_found_rows','max_num_pages','current_page');</p>
<p>	}</p>
<p>	/**<br />
	 * Set the pagination<br />
	 *<br />
	 * This function is responsible for setting the current page<br />
	 * in the $wp_query class. Now you never have to worry about<br />
	 * telling your loops to use pagination again!<br />
	 *<br />
	 * Keep one thing in mind, for your sidebar widgets, this function<br />
	 * will still be called and it will still set the page number. However,<br />
	 * by using this, you will need to tell all of your other query_posts<br />
	 * that paging = false, but you should be doing this anyway.<br />
	 *<br />
	 * This works whether or not the $_GET, $_REQUEST or $_POST<br />
	 * are working, however it will default to these globals first.<br />
	 *<br />
	 * @param reference $wp_query<br />
	 * @return null<br />
	 */<br />
	add_action('parse_query', 'jb_setpage');<br />
	function jb_setpage( &#038;$wp_query )<br />
	{<br />
		$page = 0;<br />
		if (empty($_GET))<br />
		{<br />
			$parts = explode('/page/', $_SERVER['REQUEST_URI']);<br />
			if (isset($parts[1]))<br />
			{<br />
				$parts2 = explode('/', $parts[1]);<br />
				if (isset($parts2[0]))<br />
				{<br />
					$page = $parts2[0];<br />
				}<br />
			}<br />
		}</p>
<p>		$wp_query->query_vars['paged'] = absint(BRequest::getVar('paged',$page));<br />
	}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.5TwentyStudios.com/blog/2010/10/03/wordpress-pagination/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Sessions and Captcha</title>
		<link>http://www.5TwentyStudios.com/blog/2010/10/01/wordpress-sessions-and-captcha/</link>
		<comments>http://www.5TwentyStudios.com/blog/2010/10/01/wordpress-sessions-and-captcha/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 06:12:53 +0000</pubDate>
		<dc:creator>Jonathon</dc:creator>
				<category><![CDATA[Hardpressed]]></category>

		<guid isPermaLink="false">http://www.5TwentyStudios.com/?p=406</guid>
		<description><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2010/10/01/wordpress-sessions-and-captcha/">WordPress Sessions and Captcha</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
WordPress Sessions and Captcha is a post from: 5 Twenty Studios Tonights project: Installing captcha onto a wordpress contact form.<a href="http://www.5TwentyStudios.com/blog/2010/10/01/wordpress-sessions-and-captcha/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2010/10/01/wordpress-sessions-and-captcha/">WordPress Sessions and Captcha</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
<p>Tonights project: Installing captcha onto a wordpress contact form. </p>
<p><strong>Step One:</strong><br />
So the first thing that I&#8217;m going to do is locate a captcha script that I can use as my base. I found this quick little script, looks simple enough: http://www.encaps.net/software/php-captcha/</p>
<p>Note: Make sure that you copy the captcha.jpg image to your website and then set the correct path.</p>
<p>Now let&#8217;s go ahead and create the image file. I&#8217;m going to call mine captcha-image.php. First things first, get the image loading when you call your script directly. Once you&#8217;re ready, proceed to step two.<br />
<span id="more-406"></span></p>
<p><strong>Step Two:</strong><br />
The one thing that I expect to happen is for the captcha to not work right off the bat. This is most likely do to the session variable. So I&#8217;m going to make sure that both sessions are started within the wordpress framework so that there&#8217;s no un-expected settings or variables making the system clash.</p>
<p>Here&#8217;s the code to load the wp framework outside of loading wordpress: <code>require_once dirname(__file__).'/wp-load.php';</code></p>
<p>Hint: Wrap the __file__ namespace with the dirname() function for each folder that you are above the root wp install.</p>
<p>Also replace the session_start(); with the following code to prevent future conflicts:<br />
<code>if (!session_id()) session_start();</code></p>
<p>Reload and test your image. For those of you that have all of your file paths correct, proceed to step three.</p>
<p>Hint: If you see a broken image still, then comment out all of the header functions and test again. You will be able to see the errors if you have error handling turned on.</p>
<p><strong>Step Three:</strong><br />
I did some cleaning up of the code, a little commenting and now I&#8217;m ready to load the image into the form. Go ahead and take a second to do that yourself.</p>
<p>Here&#8217;s the code:<br />
<code>&lt;img src="http://path/to/your/captcha_image.php" /&gt;</code></p>
<p>The next step is to open your functions.php file and add this code to the top:<br />
<code>if (!session_id()) session_start();</code></p>
<p>Now, test again, reloading the contact form or other page that you&#8217;ve called the image at. If you find that your image is broken, then comment out the &#8220;header&#8221; functions in your image file and look at it again.</p>
<p>Add the input field to your site and head to step four.<br />
<code>&lt;input type="text" name="captcha" class="captchainput" /&gt;</code></p>
<p><b>Step Four:</b><br />
In this step we&#8217;ll catch the submitted data and verify it against the session. Go ahead and try a test, printing out both variables at the top of your contact page:</p>
<p><code>echo $_POST['captcha'].'&lt;BR/&gt;';<br />
echo $_SESSION['captcha'].'&lt;BR/&gt;';</code></p>
<p>Note: If your session variable is coming out empty, then it&#8217;s probably because something is changing the default session name. Call<br />
<code>echo session_name();</code><br />
inside of your contact page and your image page to verify that the session names are the same.</p>
<p>I hope this helped.<br />
-Jonathon</p>
]]></content:encoded>
			<wfw:commentRss>http://www.5TwentyStudios.com/blog/2010/10/01/wordpress-sessions-and-captcha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get started with reviews and giveaways</title>
		<link>http://www.5TwentyStudios.com/blog/2010/09/02/how-to-get-started-with-reviews-and-giveaways/</link>
		<comments>http://www.5TwentyStudios.com/blog/2010/09/02/how-to-get-started-with-reviews-and-giveaways/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 20:58:13 +0000</pubDate>
		<dc:creator>Ana Sofia</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[giveaway]]></category>
		<category><![CDATA[netwroking]]></category>
		<category><![CDATA[prize]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.5TwentyStudios.com/?p=370</guid>
		<description><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2010/09/02/how-to-get-started-with-reviews-and-giveaways/">How to get started with reviews and giveaways</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
How to get started with reviews and giveaways is a post from: 5 Twenty Studios So, you want to start<a href="http://www.5TwentyStudios.com/blog/2010/09/02/how-to-get-started-with-reviews-and-giveaways/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2010/09/02/how-to-get-started-with-reviews-and-giveaways/">How to get started with reviews and giveaways</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
<p>So, you want to start reviewing and hosting giveaways, huh? You are not alone!</p>
<p>Almost everywhere you go in the blogosphere you will encounter reviews and giveaways. But, how exactly could you start doing so too?</p>
<p>Lets start by (assuming you already have a blog) opening a Twitter account. If you already do, kudos! If you don&#8217;t, I&#8217;ll give you 5 minutes to go create your own account. Ready, set, GO!</p>
<p>Alright! Welcome back!</p>
<p>Twitter is the main social-networking site. It helps you get in touch with your readers and other bloggers. It gives you and your blog exposure, and maybe one day a company will start following you and they might contact you for a review and/or giveaway! I have gotten the opportunity to review new products thanks to Twitter!</p>
<p>Join as many PR websites as you can find. Be patience, at the beginning you might not get any opportunities, but they will start rolling in after a while.</p>
<ul>
<li>Team Mom: <a href="http://www.childsplaypr.com/team_mom/">http://www.childsplaypr.com/team_mom/</a></li>
<li>One 2 One Network: <a href="http://www.one2onenetwork.com/">http://www.one2onenetwork.com/</a></li>
<li>Chick Advisor: <a href="http://www.chickadvisor.com/home.html">http://www.chickadvisor.com/home.html</a></li>
<li>Boon: <a href="http://www.booninc.com/inside_BloggerProgram.php">http://www.booninc.com/inside_BloggerProgram.php</a></li>
<li>Mom Select: <a href="http://momselect.com/">http://momselect.com/</a></li>
<li>SheBlogs: <a href="http://www.sheblogs.org/">http://www.sheblogs.org/</a></li>
</ul>
<p>Becoming part of communities in your niche is also a great way to attract traffic to your site. But don&#8217;t just join and expect to be seen, be active! Let people know you are out there!</p>
<ul>
<li>Bloggy Moms: <a href="http://www.bloggymoms.com/">http://www.bloggymoms.com/</a></li>
<li>Mom Blogger Club: <a href="http://www.mombloggersclub.com/">http://www.mombloggersclub.com/</a></li>
<li>Twittermoms: <a href="http://www.twittermoms.com/">http://www.twittermoms.com/</a></li>
<li>Mommy Approved: <a href="http://mommyapproved.ning.com/">http://mommyapproved.ning.com/</a></li>
</ul>
<h3><strong>So, what if a company contacts you?</strong></h3>
<p>Make sure you let the company know all your terms and standards. Not because they contacted you you must say yes. Set high standards. And make sure to let them know, in case of a giveaway, that they are responsible of sending the winner their prize.</p>
<p>Once you agreed on the terms and are waiting for your product to review, do some research on the company, get familiar with them. Also, keep in contact with the company&#8217;s representative. Let them know when you get the package and let them be the first to know that the review/giveaway is up.</p>
<h3><strong>You are hosting your first review/giveaway. Now what?</strong></h3>
<p>You must decide how people are going to enter your give away. It really depends on what you want to do. Usually there are mandatory entries and extra entries. And don&#8217;t forget to ask for their email address. You really don&#8217;t want to go through the hassle of trying to find them! Thankfully WordPress won&#8217;t let you comment unless you add your name and address!</p>
<p>As a mandatory entry they can follow you through Google Friend Connect or Twitter (which in my opinion is more important than GFC). You could also ask for them to visit the company&#8217;s website and choose a product they like. You name it.</p>
<h3><strong>Getting people to enter your giveaways</strong></h3>
<p>Once your post is up on your blog, spread the word! Look around the blogosphere for &#8216;Giveaway Linkys&#8217;. They are lists of giveaways that will let other know about what you have to offer in your blog. I have a few favorite sites where they have a lot of linky lists:</p>
<ul>
<li>From PDX with Love: <a href="http://frompdxwithlove.com/linky-love/">http://frompdxwithlove.com/linky-love/</a></li>
<li>Post your giveaway linkys: <a href="http://www.postyourgiveawaylinkys.com">http://www.postyourgiveawaylinkys.com</a></li>
<li>Ladybug Mama of 2: <a href="http://www.ladybugmamaof2.com">http://www.ladybugmamaof2.com</a></li>
<li>Prizey: <a href="http://www.prizey.net/">http://www.prizey.net/</a></li>
</ul>
<p>You should also use twitter. Make sure to use hash tags like #win, #giveaway, #contest, etc. That way people out of your network could find your giveaway.</p>
<h3><strong>If you really cannot wait!</strong></h3>
<p>Don&#8217;t be afraid to ask! Do your research and choose which companies you would love to work with! This is how I&#8217;ve got so many opportunities! There are a lot of companies out there that are interested on finding bloggers like you</p>
<p>When sending a pitch you want to keep the email simple and professional. Explain why you are contacting them and why you are interested in their products. You are basically selling your services. Tell them that you are looking forward to hearing from them. Worst case scenario they&#8217;ll say no or never even email you back!</p>
<p>Trust me, you won&#8217;t regret contacting them first.</p>
<h3 style="text-align: center;"><strong>Good luck and have fun!</strong></h3>
]]></content:encoded>
			<wfw:commentRss>http://www.5TwentyStudios.com/blog/2010/09/02/how-to-get-started-with-reviews-and-giveaways/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing P Tags in WordPress</title>
		<link>http://www.5TwentyStudios.com/blog/2010/08/16/removing-p-tags-in-wordpress/</link>
		<comments>http://www.5TwentyStudios.com/blog/2010/08/16/removing-p-tags-in-wordpress/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 14:06:59 +0000</pubDate>
		<dc:creator>Jonathon</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[p Tag]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.tylerbyrd.com.php5-11.dfw1-1.websitetestlink.com/?p=265</guid>
		<description><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2010/08/16/removing-p-tags-in-wordpress/">Removing P Tags in WordPress</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
Removing P Tags in WordPress is a post from: 5 Twenty Studios By default WordPress will automatically inserts p tags<a href="http://www.5TwentyStudios.com/blog/2010/08/16/removing-p-tags-in-wordpress/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2010/08/16/removing-p-tags-in-wordpress/">Removing P Tags in WordPress</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
<p>By default WordPress will automatically inserts p tags through your content. This can seriously screw up the a layout/design and cause validation issues. There are a couple of ways to do this, depending on your technical expertise and where you would like to preventing this from taking place.</p>
<p>Here are the three options:</p>
<ol>
<li><a href="#entire">Through out entire site</a></li>
<li><a href="#template">On specific Template pages</a></li>
<li><a href="#specific">With specific page items</a></li>
</ol>
<p><strong><a name="entire"><br />
Through out your entire site:</a></strong></p>
<p>Here is a quick and easy fix to stop wordpress from placing p tags anywhere within your site. You will need to open your /wp-includes/default-filters.php file and comment out the following  line:<br />
<code>addfilter('the_content', 'wpautop');</code></p>
<p>To comment out a line in a PHP file, insert two forward slashes //  in front of the line. When your done, this is how it should look:<br />
<code>//addfilter('the_content', 'wpautop');</code></p>
<p><a name="template"><strong> On specific template pages:</strong></a></p>
<p>This method with allow you to stop WordPress from using theses tags on specific template pages. <em>(i.e. page.php, home.php, index.php, or any custom template page) </em>You will need to open the page in an editor such as the built in WordPress editor or Dreamweaver.</p>
<p>Locate:<br />
<code>&lt;?php the_content(); ?&gt;</code></p>
<p>and place this directly above:<br />
<code>&lt;?php remove_filter (’the_content’, ‘wpautop’); ?&gt;</code></p>
<p>it should look like this:<br />
<code>&lt;?php remove_filter (‘the_content’, ‘wpautop’); ?&gt;<br />
&lt;?php the_content(); ?&gt;</code></p>
<p><a name="specific"><strong>With specific page items (pics, field labels, content):</strong></a><br />
This one is also fairly easy. While creating a page or post within WordPress you have the ability to type in either the &#8220;Visual&#8221; or &#8220;HTML&#8221; tab. Feel free to create the post in visual, but when you are done you will need to switch over to HTML. Locate the item you would like to remove the &lt;p&gt; tag on, and place &lt;div&gt; tags around it instead. You will need to make sure that you place div tags around each item for this to work. Below is an example:</p>
<p><code>&lt;div&gt;Example Item&lt;/div&gt;</code></p>
<p>Hope this helps.  If you have a question, email it over to use via our contact form, we would be happy to help.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.5TwentyStudios.com/blog/2010/08/16/removing-p-tags-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>5 Methods of tracking ROI from Social Media Marketing</title>
		<link>http://www.5TwentyStudios.com/blog/2010/08/13/5-methods-of-tracking-roi-from-social-media-marketing/</link>
		<comments>http://www.5TwentyStudios.com/blog/2010/08/13/5-methods-of-tracking-roi-from-social-media-marketing/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 22:45:06 +0000</pubDate>
		<dc:creator>Tyler Byrd</dc:creator>
				<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[ROI]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.tylerbyrd.com.php5-11.dfw1-1.websitetestlink.com/?p=93</guid>
		<description><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2010/08/13/5-methods-of-tracking-roi-from-social-media-marketing/">5 Methods of tracking ROI from Social Media Marketing</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
5 Methods of tracking ROI from Social Media Marketing is a post from: 5 Twenty Studios Since Social Media Marketing<a href="http://www.5TwentyStudios.com/blog/2010/08/13/5-methods-of-tracking-roi-from-social-media-marketing/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.5TwentyStudios.com/blog/2010/08/13/5-methods-of-tracking-roi-from-social-media-marketing/">5 Methods of tracking ROI from Social Media Marketing</a> is a post from: <a href="http://www.5TwentyStudios.com">5 Twenty Studios</a></p>
<p>Since <strong>Social Media Marketing</strong> came about, there has been a lot of discussion of how to track ROI. Many companies have chosen not to participate in this very dynamic marketing channel due to what some see as an inability to track this very allusive beast. Most <em>&#8220;social media experts&#8221;</em> will tell you that you should simply be happy associating a unjustifiable dollar amount to each fan, follower, or subscriber you enlist. This is a method, and by far the simplest one, but not the most accurate. Over the coming weeks we will take a look at 5 ways to track <strong>Social Media Marketing ROI</strong>. We will start with the simplest and end with the most technical . In between you will find great ways to find out what your investment in Social Media truly returns you</p>
<p>Here is a preview of the different methods we will be taking a look at:</p>
<ul>
<li>Fans, Followers, &amp; Subscribers</li>
<li>Website Analytics</li>
<li>Calls to Action</li>
<li>Direct Sales</li>
<li>Baselining company income and growth.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.5TwentyStudios.com/blog/2010/08/13/5-methods-of-tracking-roi-from-social-media-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

