<?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>Joe Riggs Bloggs &#187; jriggs</title>
	<atom:link href="http://joe-riggs.com/blog/author/jriggs/feed/" rel="self" type="application/rss+xml" />
	<link>http://joe-riggs.com/blog</link>
	<description>simple man/complex world</description>
	<lastBuildDate>Thu, 19 Jan 2012 16:39:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Find Which Search Keyword For Page With Google Analytics</title>
		<link>http://joe-riggs.com/blog/2012/01/find-which-search-keyword-for-page-with-google-analytics/</link>
		<comments>http://joe-riggs.com/blog/2012/01/find-which-search-keyword-for-page-with-google-analytics/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 16:38:07 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[google analytics]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=726</guid>
		<description><![CDATA[Open the &#8216;Traffic Sources&#8217; drop down and click on &#8216;Overview&#8217; Click on the Search Term/Keyword you are interested in Click on the &#8216;Secondary Dimension&#8217; drop down, expand &#8216;Traffic Sources&#8217; and Click on &#8216;Landing Page&#8217; View Glorious Data Such Valuable Information. I really have to wonder why Google felt the need to bury so deep into [...]]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2012/01/find-which-search-keyword-for-page-with-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: Remove Date From Posts on Category Page</title>
		<link>http://joe-riggs.com/blog/2011/10/remove-date-from-posts-on-category-page/</link>
		<comments>http://joe-riggs.com/blog/2011/10/remove-date-from-posts-on-category-page/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 13:00:46 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=709</guid>
		<description><![CDATA[The first thing you will need in order to remove the date from category pages is the id of the category which you wish to hide the dates on. To get the id click on &#8216;Categories&#8217; in the admin and then click on the actual category you wish to affect. In the url you will [...]]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2011/10/remove-date-from-posts-on-category-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php long running script to dynamically update html</title>
		<link>http://joe-riggs.com/blog/2011/07/php-long-running-script-to-dynamically-update-html/</link>
		<comments>http://joe-riggs.com/blog/2011/07/php-long-running-script-to-dynamically-update-html/#comments</comments>
		<pubDate>Sun, 17 Jul 2011 15:43:25 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=691</guid>
		<description><![CDATA[This code is a work in progress and should never be used in a production environment without extensive testing! First, the page that is loaded into the browser, it uses jQuery to receive status updates from &#8216;getstatus.php&#8217; script &#60;!DOCTYPE HTML PUBLIC &#34;-//W3C//DTD HTML 4.01//EN&#34; &#34;http://www.w3.org/TR/html4/strict.dtd&#34;&#62; &#60;html&#62; &#60;head&#62; &#60;title&#62;Update Inventory&#60;/title&#62; &#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=UTF-8&#34;&#62; &#60;script src=&#34;https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js&#34; [...]]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2011/07/php-long-running-script-to-dynamically-update-html/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Simple php ftp download file script example</title>
		<link>http://joe-riggs.com/blog/2011/07/simple-php-ftp-download-file-script-example/</link>
		<comments>http://joe-riggs.com/blog/2011/07/simple-php-ftp-download-file-script-example/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 13:19:52 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[sample]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=688</guid>
		<description><![CDATA[&#160; &#60;?php &#160; // define some variables $local_file = '&#60;save-file-as&#62;'; $server_file = '&#60;server-file-name&#62;'; $ftp_user_name='&#60;ftp-user&#62;'; $ftp_user_pass='&#60;ftp-pass&#62;'; $ftp_server='&#60;ftp-host-name&#62;'; // set up basic connection $conn_id = ftp_connect&#40;$ftp_server&#41;; &#160; // login with username and password $login_result = ftp_login&#40;$conn_id, $ftp_user_name, $ftp_user_pass&#41;; &#160; /* uncomment if you need to change directories if (ftp_chdir($conn_id, &#34;&#60;directory&#62;&#34;)) { echo &#34;Current directory is now: &#34; [...]]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2011/07/simple-php-ftp-download-file-script-example/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Excel &#8211; Remove All Text After Specified Character</title>
		<link>http://joe-riggs.com/blog/2011/06/excel/</link>
		<comments>http://joe-riggs.com/blog/2011/06/excel/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 15:11:18 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[excel]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=660</guid>
		<description><![CDATA[This excel function searches the cell &#8216;V22&#8242; for the &#8216;greater than&#8217; character. If it is found then it will remove that character and everything after it. If not found then it will copy V22&#8242;s value. =IF(ISNUMBER(SEARCH(">" , V22)) , LEFT(V22,FIND(">",V22,1) - 1) , V22)]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2011/06/excel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create Global Function In Magento</title>
		<link>http://joe-riggs.com/blog/2011/06/create-global-function-in-magento/</link>
		<comments>http://joe-riggs.com/blog/2011/06/create-global-function-in-magento/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 12:33:29 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[magento]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[global function magento]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=661</guid>
		<description><![CDATA[This code will allow you to add a function that can be called from anywhere within Magento. It extends the helper class 1) Create a file named &#8216;Mycode.xml&#8217; and copy it to app/etc/modules/ &#8211; it should look like this: &#60;?xml version=&#34;1.0&#34;?&#62; &#60;config&#62; &#60;modules&#62; &#60;Mycode_Function&#62; &#60;active&#62;true&#60;/active&#62; &#60;codePool&#62;local&#60;/codePool&#62; &#60;/Mycode_Function&#62; &#60;/modules&#62; &#60;/config&#62; 2) Create the directory app/code/local/Mycode/Function/etc and [...]]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2011/06/create-global-function-in-magento/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Update To Drupal 7.2 The Easy Way (SSH)</title>
		<link>http://joe-riggs.com/blog/2011/05/update-to-drupal-7-2-the-easy-way-ssh/</link>
		<comments>http://joe-riggs.com/blog/2011/05/update-to-drupal-7-2-the-easy-way-ssh/#comments</comments>
		<pubDate>Sun, 29 May 2011 20:51:15 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[drupal]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade drupal 7.2]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=655</guid>
		<description><![CDATA[After backing everything up&#8230; # get the upgrade wget http://ftp.drupal.org/files/projects/drupal-7.2.tar.gz &#160; # uncompress it tar xfzv drupal-7.2.tar.gz &#160; # copy all files to my document root cp -r drupal-7.2/. /www/. found here]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2011/05/update-to-drupal-7-2-the-easy-way-ssh/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blank Html Template &#8211; Strict dtd</title>
		<link>http://joe-riggs.com/blog/2011/05/blank-html-template-strict-dtd/</link>
		<comments>http://joe-riggs.com/blog/2011/05/blank-html-template-strict-dtd/#comments</comments>
		<pubDate>Fri, 13 May 2011 14:37:21 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[html]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=645</guid>
		<description><![CDATA[&#60;!DOCTYPE HTML PUBLIC &#34;-//W3C//DTD HTML 4.01//EN&#34; &#34;http://www.w3.org/TR/html4/strict.dtd&#34;&#62; &#60;html&#62; &#160; &#60;head&#62; &#160; &#60;title&#62;Blank Strict Template&#60;/title&#62; &#160; &#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=UTF-8&#34;&#62; &#60;meta name=&#34;description&#34; content=&#34;&#34;&#62; &#60;meta name=&#34;keywords&#34; content=&#34;&#34;&#62; &#160; &#60;script type=&#34;text/javascript&#34;&#62; &#60;/script&#62; &#160; &#60;style type=&#34;text/css&#34;&#62; &#60;/style&#62; &#160; &#60;/head&#62; &#160; &#60;body&#62; &#60;div&#62; &#60;p&#62;blank template&#60;/p&#62; &#60;/div&#62; &#60;/body&#62; &#160; &#60;/html&#62; Download zipped html file]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2011/05/blank-html-template-strict-dtd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Set, Retrieve and Unset Session Variables</title>
		<link>http://joe-riggs.com/blog/2011/04/magento-session-variables/</link>
		<comments>http://joe-riggs.com/blog/2011/04/magento-session-variables/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 15:25:05 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=637</guid>
		<description><![CDATA[To set a Magento session variable: $myValue = 'Hello World'; Mage::getSingleton&#40;'core/session'&#41;-&#62;setMyValue&#40;$myValue&#41;; To Retrieve: $myValue = ''; $myValue=Mage::getSingleton&#40;'core/session'&#41;-&#62;getMyValue&#40;&#41;; To Unset: Mage::getSingleton&#40;'core/session'&#41;-&#62;unsMyValue&#40;&#41;; Note that &#8216;MyValue&#8217; can be any text you want but &#8216;set&#8217;, &#8216;get&#8217; and &#8216;uns&#8217; prefixes are required.]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2011/04/magento-session-variables/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Add Linkshare Pixel To Magento</title>
		<link>http://joe-riggs.com/blog/2011/04/add-linkshare-pixel-to-magento/</link>
		<comments>http://joe-riggs.com/blog/2011/04/add-linkshare-pixel-to-magento/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 21:13:39 +0000</pubDate>
		<dc:creator>jriggs</dc:creator>
				<category><![CDATA[magento]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://joe-riggs.com/blog/?p=623</guid>
		<description><![CDATA[Add this code to: \app\design\frontend\enterprise\&#60;your theme&#62;\template\checkout\success.phtml &#60;?php &#160; $order_id = Mage::getSingleton&#40;'checkout/session'&#41;-&#62;getLastOrderId&#40;&#41;; $order = Mage::getModel&#40;'sales/order'&#41;-&#62;load&#40;$order_id&#41;; $_totalData = $order-&#62;getData&#40;&#41;; &#160; /*linkshare vars*/ $skus = array&#40;&#41;; $qtys = array&#40;&#41;; $amounts = array&#40;&#41;; &#160; foreach &#40;$order-&#62;getAllItems&#40;&#41; as $item&#41; &#123; &#160; $skus&#91;$item-&#62;getProductId&#40;&#41;&#93; = $item-&#62;getSku&#40;&#41;; $names&#91;$item-&#62;getProductId&#40;&#41;&#93; = rawurlencode&#40;$item-&#62;getName&#40;&#41;&#41;; $qtys&#91;$item-&#62;getProductId&#40;&#41;&#93; = $item-&#62;getQtyOrdered&#40;&#41; * 1; $amounts&#91;$item-&#62;getProductId&#40;&#41;&#93; = $item-&#62;getRowTotal&#40;&#41; * 100; &#125; &#160; $order_id [...]]]></description>
		<wfw:commentRss>http://joe-riggs.com/blog/2011/04/add-linkshare-pixel-to-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

