<?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>Denver SEO Blog &#187; Tutorial</title>
	<atom:link href="http://www.seodenver.com/category/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.seodenver.com</link>
	<description>Websites designed and optimized for results.</description>
	<lastBuildDate>Fri, 10 Feb 2012 14:53:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Gravity Forms Shortcode Explained</title>
		<link>http://www.seodenver.com/gravity-forms-shortcode/</link>
		<comments>http://www.seodenver.com/gravity-forms-shortcode/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 23:10:36 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Gravity Forms]]></category>
		<category><![CDATA[Gravity Forms Ajax]]></category>
		<category><![CDATA[Gravity Forms Plugin]]></category>
		<category><![CDATA[shortcode]]></category>
		<category><![CDATA[WordPress Shortcode]]></category>

		<guid isPermaLink="false">http://www.seodenver.com/?p=2059</guid>
		<description><![CDATA[What are shortcodes? Think of shortcodes as a placeholder for where other content will be displayed: instead of &#8220;Insert a Gravity Forms form here,&#8221; we use the gravityform shortcode. Learn more about shortcodes on WordPress.org. The Gravity Forms shortcode has five &#8230; <a href="http://www.seodenver.com/gravity-forms-shortcode/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.seodenver.com/gravity-forms-ajax/' rel='bookmark' title='Gravity Forms Ajax Submit &#8211; Version 1.4 Adds Ajax Support'>Gravity Forms Ajax Submit &#8211; Version 1.4 Adds Ajax Support</a></li>
<li><a href='http://www.seodenver.com/gravity-forms-addons/' rel='bookmark' title='Improve Gravity Forms &#8211; Gravity Forms Addons Plugin'>Improve Gravity Forms &#8211; Gravity Forms Addons Plugin</a></li>
<li><a href='http://www.seodenver.com/disable-gravity-forms-css-stylesheet/' rel='bookmark' title='5 Easy Ways to Disable the Gravity Forms CSS Stylesheet'>5 Easy Ways to Disable the Gravity Forms CSS Stylesheet</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p class="highlight" >This post is about <a href="http://bit.ly/dvF8BI">Gravity Forms</a>, a WordPress contact form plugin.</p>
<h4>What are shortcodes?</h4>
<p>Think of shortcodes as a placeholder for where other content will be displayed: instead of &#8220;Insert a Gravity Forms form here,&#8221; we use the <code>gravityform</code> shortcode. <a href="http://codex.wordpress.org/Shortcode_API">Learn more about shortcodes on WordPress.org</a>.</p>
<h2>The Gravity Forms <code>shortcode</code> has five pieces:</h2>
<p><strong><code>&#091;gravityform id=# name=TEXT title=boolean description=boolean ajax=boolean&#093;</code></strong></p>
<ol>
<li><code>id</code><em> (required)</em> &#8211; The ID of the form, as displayed on the Gravity Forms <em>Edit Forms</em> page in the Id column</li>
<li><code>name</code><em> (required) </em>- The name of the form.</li>
<li><code>title</code> &#8211; Show the title to users? Default is true; set to &#8220;false&#8221; to disable</li>
<li><code>description</code> &#8211; Show the form&#8217;s description to users? Default is true; set to &#8220;false&#8221; to disable.</li>
<li><code>ajax</code> &#8211; Submit the form without refreshing? Default is false; set to &#8220;true&#8221; to enable.</li>
</ol>
<h3>Gravity Forms Shortcode Examples:</h3>
<p><code>&#091;gravityform id=1 name=Example Form title=false description=false ajax=true&#093;</code><br />
Will result in Form #1 being displayed without a title or description, with no-refresh entry submission.<span id="more-2059"></span></p>
<p><strong>The shortcode above could be read as:</strong> &#8220;<em>Insert Gravity Forms Form #1 here. Do not show the title or description. The form should use Ajax to submit entries.</em>&#8221;</p>
<p><code>&#091;gravityform id=2 name=Another Form&#093;</code><br />
Will result in Form #2 being displayed. The title and description will be displayed (they are true by default), and entries will require a page-load (ajax is off by default).</p>
<p><code>&#091;gravityform id=3 name=Yet Another Form description=false ajax=true&#093;</code><br />
Will result in Form #3 being displayed. The title will be displayed, but the description will not. Entries will not require a page-load (ajax is turned on).</p>
<h3>Any questions?</h3>
<p>This post has been created to make explicitly clear how the Gravity Forms shortcode works. If you have any unanswered questions, please leave them in the comments below and they will be answered.</p>
<p>Related posts:<ol>
<li><a href='http://www.seodenver.com/gravity-forms-ajax/' rel='bookmark' title='Gravity Forms Ajax Submit &#8211; Version 1.4 Adds Ajax Support'>Gravity Forms Ajax Submit &#8211; Version 1.4 Adds Ajax Support</a></li>
<li><a href='http://www.seodenver.com/gravity-forms-addons/' rel='bookmark' title='Improve Gravity Forms &#8211; Gravity Forms Addons Plugin'>Improve Gravity Forms &#8211; Gravity Forms Addons Plugin</a></li>
<li><a href='http://www.seodenver.com/disable-gravity-forms-css-stylesheet/' rel='bookmark' title='5 Easy Ways to Disable the Gravity Forms CSS Stylesheet'>5 Easy Ways to Disable the Gravity Forms CSS Stylesheet</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.seodenver.com/gravity-forms-shortcode/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Enable PDF Uploads in CubeCart 4</title>
		<link>http://www.seodenver.com/enable-pdf-uploads-cubecart-4/</link>
		<comments>http://www.seodenver.com/enable-pdf-uploads-cubecart-4/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 20:17:51 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CubeCart]]></category>
		<category><![CDATA[CubeCart 4]]></category>
		<category><![CDATA[CubeCart Upload]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[image uploader]]></category>

		<guid isPermaLink="false">http://www.seodenver.com/?p=2031</guid>
		<description><![CDATA[The CubeCart file and image uploader in the product editor only allows for a small set of file types: jpg, gif, jpeg, png, swf, fla, jpg, gif, jpeg, png, avi, mpg, and mpeg. If you want to upload a PDF &#8230; <a href="http://www.seodenver.com/enable-pdf-uploads-cubecart-4/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.seodenver.com/wp-content/uploads/2011/01/1167101_47789075.jpg"><img class="alignright size-medium wp-image-2034" title="PDF File Uploads Not Allowed in CubeCart 4" src="http://www.seodenver.com/wp-content/uploads/2011/01/1167101_47789075-201x300.jpg" alt="No swimming, no file uploads in CubeCart either!" width="201" height="300" /></a>The CubeCart file and image uploader in the product editor only allows for a small set of file types: jpg, gif, jpeg, png, swf, fla, jpg, gif, jpeg, png, avi, mpg, and mpeg. If you want to upload a PDF in CubeCart, you will have to manually FTP it into the uploads folder, and even then the <strong>file browser won&#8217;t show you PDFs</strong>. If you try to upload PDFs, you&#8217;ll get the following alert: &#8220;Invalid file type.&#8221;  Well here&#8217;s how to fix that.<span id="more-2031"></span></p>
<h2>1. Make the uploaded file type valid.</h2>
<ul>
<li>Go to <code>&#091;your site&#093;/admin/includes/rte/editor/filemanager/connectors/php/config.php</code></li>
<li>Near the bottom of the file (around line 191), you should see this:
<pre>$Config['AllowedExtensions']['uploads'] = array('jpg','gif','jpeg','png','swf','fla','jpg','gif','jpeg','png','avi','mpg','mpeg') ;</pre>
</li>
<li>Add additional file formats you want to include, or you can replace the code with this (which adds a ton of file extensions):
<pre>$Config['AllowedExtensions']['uploads'] = array('7z', 'aiff', 'asf', 'avi', 'bmp', 'csv', 'doc', 'docx', 'fla', 'flv', 'gif', 'gz', 'gzip', 'jpeg', 'jpg', 'mid', 'mov', 'mp3', 'mp4', 'mpc', 'mpeg', 'mpg', 'ods', 'odt', 'pdf', 'pdfx', 'png', 'ppt', 'pxd', 'qt', 'ram', 'rar', 'rm', 'rmi', 'rmvb', 'rtf', 'sdc', 'sitd', 'swf', 'sxc', 'sxw', 'tar', 'tgz', 'tif', 'tiff', 'txt', 'vsd', 'wav', 'wma', 'wmv', 'xls', 'xml', 'zip')</pre>
</li>
<li>Save the file</li>
</ul>
<h2>2. Make the files visible in the file browser</h2>
<p>Now that you can upload files, you want to be able to see them in the file browser.</p>
<ul>
<li>Go to <code>&#091;your site&#093;/admin/includes/rte/editor/filemanager/connectors/php/commands.php</code></li>
<li>Around line 71, find the following code:
<pre>elseif(preg_match('/\.(jpg|jpeg|png|gif|swf)$/i',$sFile))</pre>
</li>
<li>and replace it with this:
<pre>elseif(preg_match('/\.([a-zA-Z]{2,4})$/i',$sFile))</pre>
</li>
<li>Now, every normal file extension should be visible</li>
</ul>
<h2>3. Enjoy uploading non-image files to CubeCart</h2>
<p>It&#8217;s pretty silly that CubeCart limited this in the first place, but at least the fix is relatively painless. <strong>Remember &#8211; if you upgrade CubeCart in the future, these changes will be lost</strong>.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.seodenver.com/enable-pdf-uploads-cubecart-4/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Two Easy Ways to Add “nofollow” to WordPress Menu Items</title>
		<link>http://www.seodenver.com/easy-ways-add-nofollow-wordpress-menu-items/</link>
		<comments>http://www.seodenver.com/easy-ways-add-nofollow-wordpress-menu-items/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 21:21:44 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Nofollow]]></category>
		<category><![CDATA[Nofollow SEO]]></category>
		<category><![CDATA[WordPress Developer]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[wp_nav_menu]]></category>

		<guid isPermaLink="false">http://www.seodenver.com/?p=1813</guid>
		<description><![CDATA[By default, WordPress menus don&#8217;t have the ability to add &#8220;nofollow&#8221; to the link items&#8230;but WordPress 3.0+ has the functionality built in. This tutorial will show you how to add nofollow to specific items using the new wp_nav_menu() function. Enable &#8230; <a href="http://www.seodenver.com/easy-ways-add-nofollow-wordpress-menu-items/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.seodenver.com/disable-gravity-forms-css-stylesheet/' rel='bookmark' title='5 Easy Ways to Disable the Gravity Forms CSS Stylesheet'>5 Easy Ways to Disable the Gravity Forms CSS Stylesheet</a></li>
<li><a href='http://www.seodenver.com/nofollow-seo-for-wordpress/' rel='bookmark' title='Nofollow SEO for your WordPress Functions'>Nofollow SEO for your WordPress Functions</a></li>
<li><a href='http://www.seodenver.com/blog-comments-pass-juice-nofollow/' rel='bookmark' title='Blog Comments Now Pass Juice &#8211; No More `nofollow`'>Blog Comments Now Pass Juice &#8211; No More `nofollow`</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>By default, WordPress menus don&#8217;t have the ability to add &#8220;nofollow&#8221; to the link items&#8230;but WordPress 3.0+ has the functionality built in.</p>
<p>This tutorial will show you how to add nofollow to specific items using the new <code>wp_nav_menu()</code> function.<span id="more-1813"></span></p>
<h2>Enable nofollow in WordPress 3.0 nav menus</h2>
<h3>1. Click the &#8220;Screen Options&#8221; tab<br />
<a href="http://www.seodenver.com/wp-content/uploads/2010/10/Screen-shot-2010-10-08-at-2.54.06-PM.jpg"><img class="alignnone size-full wp-image-1814" title="Screen Options Tab" src="http://www.seodenver.com/wp-content/uploads/2010/10/Screen-shot-2010-10-08-at-2.54.06-PM.jpg" alt="" width="186" height="49" /></a></h3>
<h3>2. Check the &#8220;Link Relationship (XFN) box<br />
<a href="http://www.seodenver.com/wp-content/uploads/2010/10/Screen-shot-2010-10-08-at-2.55.33-PM-e1286571431212.jpg"><img class="alignnone size-full wp-image-1815" title="Screen Options" src="http://www.seodenver.com/wp-content/uploads/2010/10/Screen-shot-2010-10-08-at-2.55.33-PM-e1286571431212.jpg" alt="" width="500" height="114" /></a></h3>
<p><a href="http://www.seodenver.com/wp-content/uploads/2010/10/Screen-shot-2010-10-08-at-2.55.33-PM-e1286571431212.jpg"></a>Notice all the other options for menu items (posts, tags aren&#8217;t enabled by default) and menu item properties (link targets, classes, descriptions).</p>
<h3>3. Enter &#8220;nofollow&#8221; as the Link Relationship (XFN)<br />
<a href="http://www.seodenver.com/wp-content/uploads/2010/10/Screen-shot-2010-10-08-at-3.00.33-PM.jpg"><img class="alignnone size-full wp-image-1817" title="Nofollow menu link attributes" src="http://www.seodenver.com/wp-content/uploads/2010/10/Screen-shot-2010-10-08-at-3.00.33-PM.jpg" alt="" width="418" height="234" /></a></h3>
<p><a href="http://www.seodenver.com/wp-content/uploads/2010/10/Screen-shot-2010-10-08-at-2.54.06-PM.jpg"></a><strong> Then save the menu. Voila!</strong></p>
<h2>There&#8217;s an alternative way to do this as well.</h2>
<h3>You can add this to the functions.php</h3>
<p>Using the code below, you can automate this whole process, which would be nice if you want to do this all at once.</p>
<p>You can also specify only to add <code>nofollow</code> to only one menu location or one menu.</p>
<pre>add_filter('walker_nav_menu_start_el', 'nofollow_menu_items', 1, 4);
function nofollow_menu_items($item_output, $item, $depth, $args) {
	$nofollow = array(105,268); // Menu item id's (View page source and menu-item-123)
	$location = ''; // Use 'primary' to only filter header menu in twentyten
	$menu = ''; // Use menu names to filter by menu

	if(
		in_array($item-&gt;ID, $nofollow)
		&amp;&amp; (!empty($location) &amp;&amp; $args-&gt;theme_location == $location || empty($location))
		&amp;&amp; (!empty($menu) &amp;&amp; $args-&gt;menu == $menu || empty($menu))
	) {
		$item_output = str_replace('&lt;a ', '&lt;a rel="nofollow" ', $item_output);
	}

	return $item_output;
}</pre>
<p>Related posts:<ol>
<li><a href='http://www.seodenver.com/disable-gravity-forms-css-stylesheet/' rel='bookmark' title='5 Easy Ways to Disable the Gravity Forms CSS Stylesheet'>5 Easy Ways to Disable the Gravity Forms CSS Stylesheet</a></li>
<li><a href='http://www.seodenver.com/nofollow-seo-for-wordpress/' rel='bookmark' title='Nofollow SEO for your WordPress Functions'>Nofollow SEO for your WordPress Functions</a></li>
<li><a href='http://www.seodenver.com/blog-comments-pass-juice-nofollow/' rel='bookmark' title='Blog Comments Now Pass Juice &#8211; No More `nofollow`'>Blog Comments Now Pass Juice &#8211; No More `nofollow`</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.seodenver.com/easy-ways-add-nofollow-wordpress-menu-items/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How to Add an `Edit Product` Link for Interspire Shopping Cart</title>
		<link>http://www.seodenver.com/interspire-shopping-cart-edit-product-link/</link>
		<comments>http://www.seodenver.com/interspire-shopping-cart-edit-product-link/#comments</comments>
		<pubDate>Thu, 06 May 2010 19:54:13 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Interspire]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Interspire Development]]></category>
		<category><![CDATA[Interspire Shopping Cart]]></category>
		<category><![CDATA[Interspire Shopping Cart Mod]]></category>

		<guid isPermaLink="false">http://www.seodenver.com/?p=1562</guid>
		<description><![CDATA[Why can&#8217;t I just click a link to edit the product I&#8217;m viewing? Interspire, I love ya, but the Interspire Shopping Cart has some silly omissions. Like a simple &#8220;Edit Product&#8221; link if you&#8217;re logged in as an administrator. Instead, &#8230; <a href="http://www.seodenver.com/interspire-shopping-cart-edit-product-link/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.seodenver.com/customers-also-bought-interspire-cart/' rel='bookmark' title='Add &#8216;Customers Also Purchased&#8217; to the Cart Page on Interspire Shopping Cart'>Add &#8216;Customers Also Purchased&#8217; to the Cart Page on Interspire Shopping Cart</a></li>
<li><a href='http://www.seodenver.com/interspire-shopping-cart-brands-dropdown/' rel='bookmark' title='Interspire Shopping Cart &#8212; Add a Brands Drop-Down Menu'>Interspire Shopping Cart &#8212; Add a Brands Drop-Down Menu</a></li>
<li><a href='http://www.seodenver.com/preview-hidden-products-in-interspire-shopping-cart/' rel='bookmark' title='Preview Hidden Products in Interspire Shopping Cart'>Preview Hidden Products in Interspire Shopping Cart</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.interspire.com/240-2-1-7.html" rel="external" target="_blank"><img border="0" src="http://www.seodenver.com/wp-content/uploads/2010/05/Interspire.jpg" width="468" height="60"></a></p>
<h2>Why can&#8217;t I just click a link to edit the product I&#8217;m viewing?</h2>
<p>Interspire, I love ya, but the <a href="http://www.interspire.com/240-2-3-1.html">Interspire Shopping Cart</a> has some silly omissions. Like a simple &#8220;Edit Product&#8221; link if you&#8217;re logged in as an administrator. Instead, you have to go to the backend, search for the product, then edit it&#8230;which takes a solid 20 seconds.</p>
<p>Well, I got tired of that, so here&#8217;s a way to <strong>generate a proper Edit Product link</strong>.<span id="more-1562"></span></p>
<h2>Part 1: Generate the link</h2>
<p>In <code>includes/display/ProductDetails.php</code>:</p>
<p>Find <code>$this->SetProductVariations();</code>. Add this in a line below it:</p>
<pre lang="php">$this->SetEditProductLink();</pre>
<p>Add this following code just before the last, closing curly bracket in the file <code>}</code></p>
<pre lang="php">
/**
 * Create a link to allow users with permission to edit products from the products page
 */
public function SetEditProductLink()
{
	$GLOBALS['EditProductLink'] = '';
	if(!isset($GLOBALS['ISC_CLASS_ADMIN_AUTH'])) { $GLOBALS['ISC_CLASS_ADMIN_AUTH'] = GetClass('ISC_ADMIN_AUTH'); }
	if($GLOBALS['ISC_CLASS_ADMIN_AUTH']->HasPermission(AUTH_Edit_Products)) {
		$GLOBALS['EditProductLink'] = sprintf('&lt;a title=&quot;%3$s&quot; class=&quot;Action&quot; href=&quot;'.$GLOBALS['ShopPath'].'/admin/index.php?ToDo=editProduct&amp;productId=%2$d&quot;&gt;%1$s&lt;/a&gt;', 'Edit Product', $GLOBALS['ProductId'], &quot;Edit product &lsquo;{$GLOBALS['ProductName']}&rsquo;&quot;);
	}
}
</pre>
<h2>Part 2: Place the link</h2>
<p>Now the link will be generated in the global variable <code>EditProductLink</code> in your template&#8217;s ProductDetails panel.</p>
<ul>
<li>Go to your template</li>
<li>Find <code>Panels/ProductDetails.html</code></li>
<li>Add <code>%%GLOBAL_EditProductLink%%</code> to your template where you want the link. I like it after the add to cart button (<code>%%SNIPPET_ProductAddToCart%%</code>).</li>
<li>You&#8217;re all set!</li>
</ul>
<h3>Lots of time saved by all&#8230;</h3>
<p>Hopefully this helps save you some frustration while polishing your Interspire store.</p>

<p>Related posts:<ol>
<li><a href='http://www.seodenver.com/customers-also-bought-interspire-cart/' rel='bookmark' title='Add &#8216;Customers Also Purchased&#8217; to the Cart Page on Interspire Shopping Cart'>Add &#8216;Customers Also Purchased&#8217; to the Cart Page on Interspire Shopping Cart</a></li>
<li><a href='http://www.seodenver.com/interspire-shopping-cart-brands-dropdown/' rel='bookmark' title='Interspire Shopping Cart &#8212; Add a Brands Drop-Down Menu'>Interspire Shopping Cart &#8212; Add a Brands Drop-Down Menu</a></li>
<li><a href='http://www.seodenver.com/preview-hidden-products-in-interspire-shopping-cart/' rel='bookmark' title='Preview Hidden Products in Interspire Shopping Cart'>Preview Hidden Products in Interspire Shopping Cart</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.seodenver.com/interspire-shopping-cart-edit-product-link/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Un-Ban Yourself from WHMCS Administration</title>
		<link>http://www.seodenver.com/whmcs-banned-ip-address/</link>
		<comments>http://www.seodenver.com/whmcs-banned-ip-address/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 20:50:19 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Lost Password]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[WHMCS]]></category>

		<guid isPermaLink="false">http://www.seodenver.com/?p=1109</guid>
		<description><![CDATA[Is your IP banned from your own WHMCS? Who can remember all their passwords all the time? I have a password manager, and I still don&#8217;t get it right.  I use the WHMCS software to manage client hosting and such, and &#8230; <a href="http://www.seodenver.com/whmcs-banned-ip-address/">Continue reading <span class="meta-nav">&#8594;</span></a>
No related posts.]]></description>
			<content:encoded><![CDATA[<img class="post_image aligncenter" src="http://www.seodenver.com/wp-content/uploads/2009/10/toplogo.gif" width="300" height="90" alt="WHMCS Client Management" /><h2>Is your IP banned from your own WHMCS?</h2>
<p><strong>Who can remember all their passwords all the time?</strong> I have a <a title="1Password" href="http://agilewebsolutions.com/products/1Password">password manager</a>, and I still don&#8217;t get it right.  I use the <a href="http://whmcs.com/">WHMCS software</a> to manage client hosting and such, and so sometimes I get locked out of my own system because I&#8217;ve tried too many times to log in!</p>
<h3>Here&#8217;s how to un-ban yourself:</h3>
<p><span id="more-1109"></span></p>
<ol>
<li>Log into your cPanel or website database administration panel</li>
<li>Enter phpMyAdmin</li>
<li>Look for a database ending in <code>_whmcs</code></li>
<li>Browse that database</li>
<li>Browse the table named <code>tblbannedips</code></li>
<li>Refer to your WHMCS ban notification where it says your banned IP address (such as &#8220;Your IP 12.345.12.345&#8243;)</li>
<li>Find the entry in the <code>tblbannedips</code> where the <code>ip</code> column matches your IP address</li>
<li>Click the <code>X</code> in that row to delete the ban</li>
<li>Re-access your WHMCS ban-free!</li>
</ol>
<p>Maybe some day, my password management applications and my browsers will play nicely together. Unlikely, though <img src='http://www.seodenver.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<ol> </ol>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.seodenver.com/whmcs-banned-ip-address/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Interspire Shopping Cart &#8212; Add a Brands Drop-Down Menu</title>
		<link>http://www.seodenver.com/interspire-shopping-cart-brands-dropdown/</link>
		<comments>http://www.seodenver.com/interspire-shopping-cart-brands-dropdown/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 00:08:13 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Interspire]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Interspire Brands Drop Down]]></category>
		<category><![CDATA[Interspire Customization]]></category>
		<category><![CDATA[Interspire Development]]></category>
		<category><![CDATA[Interspire Shopping Cart]]></category>
		<category><![CDATA[Shopping Cart]]></category>

		<guid isPermaLink="false">http://www.seodenver.com/?p=927</guid>
		<description><![CDATA[Don&#8217;t use the Interspire Shopping Cart? Check it out; it rocks. The Interspire Shopping Cart is a great tool, but it&#8217;s missing some stuff out of the box. I am working on a shopping cart for a client, and wanted &#8230; <a href="http://www.seodenver.com/interspire-shopping-cart-brands-dropdown/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.seodenver.com/customers-also-bought-interspire-cart/' rel='bookmark' title='Add &#8216;Customers Also Purchased&#8217; to the Cart Page on Interspire Shopping Cart'>Add &#8216;Customers Also Purchased&#8217; to the Cart Page on Interspire Shopping Cart</a></li>
<li><a href='http://www.seodenver.com/interspire-shopping-cart-edit-product-link/' rel='bookmark' title='How to Add an `Edit Product` Link for Interspire Shopping Cart'>How to Add an `Edit Product` Link for Interspire Shopping Cart</a></li>
<li><a href='http://www.seodenver.com/improve-interspire-shopping-cart-search/' rel='bookmark' title='Improve Interspire Shopping Cart Search with Smart Redirections'>Improve Interspire Shopping Cart Search with Smart Redirections</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p class="donatebox">Don&#8217;t use the Interspire Shopping Cart? <a href="http://www.interspire.com/240-2-3-1.html">Check it out; it rocks</a>.</p>
<h2 class="halfmargintop">The Interspire Shopping Cart is a great tool, but it&#8217;s missing some stuff out of the box.</h2>
<div id="attachment_928" class="wp-caption alignright" style="width: 196px"><img class="size-full wp-image-928" title="Brands Dropdown" src="http://www.seodenver.com/wp-content/uploads/2009/08/Picture-342.jpg" alt="This is how the Panel looks in the 'Adventure' theme." width="186" height="63" /><p class="wp-caption-text">This is how the Panel looks in the &#39;Adventure&#39; theme.</p></div>
<p>I am working on a shopping cart for a client, and wanted to incorporate a drop down menu of brand names using a standard <code>&lt;select&gt;</code> form. Sounds easy, right?  Well, it&#8217;s not included in the <a href="http://www.interspire.com/240-2-3-1.html">Interspire cart</a>.</p>
<h4>The Interspire cart has few brand options out of the box:</h4>
<ul>
<li>The <a href="http://www.interspire.com/support/kb/questions/647/What+is+the+brands+tag+cloud+and+how+does+it+work%3F">Brands tag cloud</a> &#8211; using the <code>SideBrandTagCloud.html</code> Panel</li>
<li>Brands unordered list &#8211; using the <code>SideShopByBrand.html</code> or <code>SideShopByBrandFull.html</code> Panels</li>
</ul>
<h3>This tutorial will show you how to <strong>add a brands drop down menu in 5 steps</strong>.</h3>
<p><span id="more-927"></span></p>
<h2>Add a brand drop-down menu in the Interspire Shopping Cart</h2>
<p>Follow the steps below and you&#8217;ll have it set up in no time.</p>
<ol>
<li>Download this file:<br />
<h3><img src="http://www.seodenver.com/wp-content/plugins/wp-downloadmanager/images/ext/zip.gif" alt="" title="" style="vertical-align: middle;"> <strong><a href="http://www.seodenver.com/download/ShopbyBrandDropdown.zip">Shop by Brands Dropdown for Interspire Shopping Cart</strong></h3>
</li>
<li>Unzip the file</li>
<li>Upload the files into their respective folders</li>
<li>Add <code>%%Panel.SideShopByBrandDropdown%%</code> to your template</li>
<li>So, now that should be working&#8230;no sweat! <strong>Any questions?</strong></li>
</ol>
<h4>Note: Post updated with downloadable files instead of embedded code.</h4>
<p>Related posts:<ol>
<li><a href='http://www.seodenver.com/customers-also-bought-interspire-cart/' rel='bookmark' title='Add &#8216;Customers Also Purchased&#8217; to the Cart Page on Interspire Shopping Cart'>Add &#8216;Customers Also Purchased&#8217; to the Cart Page on Interspire Shopping Cart</a></li>
<li><a href='http://www.seodenver.com/interspire-shopping-cart-edit-product-link/' rel='bookmark' title='How to Add an `Edit Product` Link for Interspire Shopping Cart'>How to Add an `Edit Product` Link for Interspire Shopping Cart</a></li>
<li><a href='http://www.seodenver.com/improve-interspire-shopping-cart-search/' rel='bookmark' title='Improve Interspire Shopping Cart Search with Smart Redirections'>Improve Interspire Shopping Cart Search with Smart Redirections</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.seodenver.com/interspire-shopping-cart-brands-dropdown/feed/</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>Redirect a Website in ColdFusion &#8211; Add www. or Move to New Domain</title>
		<link>http://www.seodenver.com/coldfusion-redirects/</link>
		<comments>http://www.seodenver.com/coldfusion-redirects/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 21:42:21 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[301 Redirect]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[Redirects]]></category>
		<category><![CDATA[SEO Redirect]]></category>
		<category><![CDATA[WWW]]></category>

		<guid isPermaLink="false">http://seodenver.com/?p=802</guid>
		<description><![CDATA[Redirecting a website in ColdFusion (.CFM) I have been working on a ColdFusion website, and I wanted to find a way to require &#8216;www.&#8217; in the URL (to consolidate all pages on www. for SEO). I normally work with PHP &#8230; <a href="http://www.seodenver.com/coldfusion-redirects/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.seodenver.com/add-www-remove-www-url/' rel='bookmark' title='How to Add www. &#8211; or Remove www. &#8211; From Your URL'>How to Add www. &#8211; or Remove www. &#8211; From Your URL</a></li>
<li><a href='http://www.seodenver.com/seo-updating-your-website/' rel='bookmark' title='SEO implications for updating your website'>SEO implications for updating your website</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2><img class="alignright size-full wp-image-805" title="ColdFusion, Baby" src="http://katzwebdesign.files.wordpress.com/2009/07/cf_appicon.jpg" alt="ColdFusion, Baby" width="152" height="150" />Redirecting a website in ColdFusion (.CFM)</h2>
<p>I have been working on a ColdFusion website, and I wanted to find a way to require &#8216;www.&#8217; in the URL (to consolidate all pages on www. for SEO). I normally work with PHP and Apache servers, so I&#8217;m used to .htaccess. I knew there had to be a way.</p>
<h4>Here&#8217;s a simple method of redirecting a whole website in ColdFusion:</h4>
<p><code>&lt;!-- If the site isn't www... --&gt;<br />
&lt;cfif (CGI.SERVER_NAME NEQ "www.example.com")&gt;<br />
&lt;!-- Save the URL (and $_GET variables too) as the string 'strUrl' --&gt;<br />
&lt;cfset strUrl = CGI.script_name &amp; "?" &amp; CGI.query_string /&gt;<br />
&lt;!-- Use 301 for SEO-friendly redirects --&gt;<br />
&lt;cfheader statuscode="301" statustext="Moved permanently"&gt;<br />
&lt;!-- Redirect to new website (this case, added www.) with strUrl added on --&gt;<br />
&lt;cfheader name="Location" value="http://www.example.com#strUrl#"&gt;<br />
&lt;/cfif&gt;</code></p>
<h4><span id="more-802"></span>Here&#8217;s how to redirect a single page in ColdFusion:</h4>
<p>This code is real easy to find online, so the post was mostly to deal with the site-wide redirect&#8230;but here&#8217;s the single page code. Add this code to the top of the page you&#8217;d like to redirect from. <a rel="nofollow" href="http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&amp;file=00000270.htm">Learn more about <code>cfheader</code> here</a>.</p>
<p><code> &lt;cfheader statuscode="301" statustext="Moved permanently"&gt;<br />
&lt;cflocation url="http://www.example.com/new-page.cfm"&gt;</code></p>
<h3>Redirect with HTTPS sensativity</h3>
<p>There are additional methods of checking whether or not HTTPS is active.<br />
<code>&lt;cfif (CGI.SERVER_NAME EQ "www.example.com") AND (HTTPS Is "on")&gt;<br />
&lt;!-- If is HTTPS and not www. --&gt;<br />
&lt;cfelseif (CGI.SERVER_NAME EQ "www.mcstech.net") AND (HTTPS Is "off")&gt;<br />
&lt;!-- If is HTTP and www. --&gt;<br />
&lt;cfelse&gt;<br />
&lt;!-- If is HTTP and not www. --&gt;<br />
&lt;/cfif&gt;</code></p>
<p>Thanks to <a href="http://www.bennadel.com/index.cfm">Ben Nadel&#8217;s Blog</a> for the helpful ColdFusion resources.  Let&#8217;s hope I stick around PHP in the future <img src='http://www.seodenver.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Related posts:<ol>
<li><a href='http://www.seodenver.com/add-www-remove-www-url/' rel='bookmark' title='How to Add www. &#8211; or Remove www. &#8211; From Your URL'>How to Add www. &#8211; or Remove www. &#8211; From Your URL</a></li>
<li><a href='http://www.seodenver.com/seo-updating-your-website/' rel='bookmark' title='SEO implications for updating your website'>SEO implications for updating your website</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.seodenver.com/coldfusion-redirects/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Integrate Blogger Into your PHP Website using Includes</title>
		<link>http://www.seodenver.com/php-includes-for-blogger/</link>
		<comments>http://www.seodenver.com/php-includes-for-blogger/#comments</comments>
		<pubDate>Wed, 27 May 2009 20:04:31 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogger FTP]]></category>
		<category><![CDATA[Blogger Includes]]></category>
		<category><![CDATA[Blogger PHP]]></category>
		<category><![CDATA[Blogger Template]]></category>
		<category><![CDATA[BlogSpot]]></category>
		<category><![CDATA[Blogspot PHP]]></category>
		<category><![CDATA[HTML Includes]]></category>
		<category><![CDATA[PHP Includes]]></category>
		<category><![CDATA[SSI]]></category>

		<guid isPermaLink="false">http://seodenver.com/?p=734</guid>
		<description><![CDATA[PHP includes for Blogger Before writing this post, I looked online to see if others have written about this same topic. This might as well be Michael Gray&#8217;s &#8220;Integrating Blogger Into Your Website: Part II&#8221;, which he never wrote &#8212; &#8230; <a href="http://www.seodenver.com/php-includes-for-blogger/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.seodenver.com/constant-contact-forms-generator/' rel='bookmark' title='Constant Contact Forms Generator &#8211; Create a Form for any Website or Blogger.com Blog'>Constant Contact Forms Generator &#8211; Create a Form for any Website or Blogger.com Blog</a></li>
<li><a href='http://www.seodenver.com/tumblr-is-a-great-website-if-you-find-blogging-intimidating/' rel='bookmark' title='Tumblr is a great website if you find blogging intimidating'>Tumblr is a great website if you find blogging intimidating</a></li>
<li><a href='http://www.seodenver.com/wordpress-dot-com-finally-updates-to-2-point-5-a-review/' rel='bookmark' title='WordPress.com finally updates to 2.5 &#8212; A review'>WordPress.com finally updates to 2.5 &#8212; A review</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-735" title="Blogger Banner" src="http://www.seodenver.com/wp-content/uploads/HLIC/09961fda6c458f1075602b30afa51071.jpg" alt="Blogger Banner" width="500" height="67" /></p>
<h2>PHP includes for Blogger</h2>
<p>Before writing this post, I looked online to see if others have written about this same topic. This might as well be Michael Gray&#8217;s &#8220;Integrating Blogger Into Your Website: Part II&#8221;, which he never wrote &#8212; though <a href="http://www.wolf-howl.com/seo/integrating-blogger-into-your-website-part-i/">he did write Part I</a>.</p>
<h3>Step 1: Switch Blogger files to PHP</h3>
<p>First, you need to update your publishing settings so that Blogger publishes your posts in PHP, not HTML (thanks to <a rel="nofollow" href="http://www.devdoctor.com/blog/2006/06/integrating-blogger-and-php.php">DevDoctor</a>):</p>
<ol>
<li>Set up your blog to publish via FTP (on Publishing tab)</li>
<li>Change the &#8216;Blog Filename&#8217; to index.php</li>
<li>Change &#8216;Archive Filename&#8217; to archive.php (on Archiving tab)</li>
<li>Finally, delete the old index.html file from the blog directory (otherwise it will probably take precedence over the new index.php)</li>
</ol>
<p>Once you&#8217;ve got Blogger pushing out PHP, you&#8217;re able to do PHP stuff with the site:</p>
<ul>
<li><strong>Update the entire site at once </strong>- When I create a website, I always want to create the structure using PHP includes, so that I can set global site variables, and if I change it in one place, it changes across the whole website.</li>
<li><strong>Set active navigation</strong> &#8211; Using SSI includes, I used to have to include a different file for each blog section on the site so that I could up. Here, I just send a variable to the navigation.php file, which tells it what page is active.</li>
</ul>
<p>Next, I will show how to include these files.<span id="more-734"></span></p>
<h3>Step 2: Get the absolute path to the includes</h3>
<p><strong>Note: the most important part of this code is that it uses an absolute path, not a relative path. </strong></p>
<p>To find the absolute path of the file you are trying to include, you can:</p>
<ol>
<li>Run the code below, and the error should show you the path in the error text itself, or;</li>
<li>Can add this to a file in the same directory as the files you&#8217;re trying to include, then go to the file in your browser: <code>&lt;?php echo realpath(dirname(__FILE__)); ?&gt;</code></li>
</ol>
<h3>Step 3: Update your Blogger.com template</h3>
<p>Once you have the absolute path for the file, you can <strong>add the includes to your Blogger template</strong>:</p>
<p><code>&lt;?php<br />
global $pageID;<br />
$pageID = 1; // You can tell these files what page you're on<br />
include('/absolute/path/to/website/includes/navigation.php');<br />
include('/absolute/path/to/website/includes/header.php');<br />
include('/absolute/path/to/website/includes/sidebar.php');<br />
<span style="font-family:Georgia;"><code>?&gt;</code> </span></code></p>
<p>Note: One of the items I was going to write about was passing some variables back and forth, but I&#8217;ve included only the $pageID variable. If you want to see more code, let me know in the comments below.</p>
<p>I&#8217;ve used this method in a couple of websites (designed by <a href="http://atomicidea.com">Atomic Idea</a> and developed by <a href="http://katzwebdesign.net">Katz Web Design</a>). Check them out to see the integrated Blogger blog:</p>
<ul>
<li>Amp Alarms</li>
<li>Split Rail Fence Company</li>
</ul>
<h3>Step 4: Ask any questions you might have below</h3>
<p>Related posts:<ol>
<li><a href='http://www.seodenver.com/constant-contact-forms-generator/' rel='bookmark' title='Constant Contact Forms Generator &#8211; Create a Form for any Website or Blogger.com Blog'>Constant Contact Forms Generator &#8211; Create a Form for any Website or Blogger.com Blog</a></li>
<li><a href='http://www.seodenver.com/tumblr-is-a-great-website-if-you-find-blogging-intimidating/' rel='bookmark' title='Tumblr is a great website if you find blogging intimidating'>Tumblr is a great website if you find blogging intimidating</a></li>
<li><a href='http://www.seodenver.com/wordpress-dot-com-finally-updates-to-2-point-5-a-review/' rel='bookmark' title='WordPress.com finally updates to 2.5 &#8212; A review'>WordPress.com finally updates to 2.5 &#8212; A review</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.seodenver.com/php-includes-for-blogger/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>How to Create a Google Profile and Manage your Online Reputation</title>
		<link>http://www.seodenver.com/how-to-create-a-google-profile-and-manage-your-online-reputation/</link>
		<comments>http://www.seodenver.com/how-to-create-a-google-profile-and-manage-your-online-reputation/#comments</comments>
		<pubDate>Wed, 20 May 2009 21:59:06 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Denver SEO]]></category>
		<category><![CDATA[Google Alerts]]></category>
		<category><![CDATA[Google Profile]]></category>
		<category><![CDATA[Local SEO]]></category>
		<category><![CDATA[Online Reputation]]></category>
		<category><![CDATA[Personal SEO]]></category>
		<category><![CDATA[Profiles]]></category>
		<category><![CDATA[Vanity Search]]></category>

		<guid isPermaLink="false">http://seodenver.com/?p=678</guid>
		<description><![CDATA[As seen on 7News &#8211; View the video on TheDenverChannel.com Why Google Profiles matter to you Receive monthly tips like this one on how to get online exposure Receive monthly emailed tips As featured on the May 20th 7News program &#8230; <a href="http://www.seodenver.com/how-to-create-a-google-profile-and-manage-your-online-reputation/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.seodenver.com/seo-google-profiles-google-adds-nofollow-to-links/' rel='bookmark' title='SEO Google Profiles &#8211; Google Adds NoFollow to Links'>SEO Google Profiles &#8211; Google Adds NoFollow to Links</a></li>
<li><a href='http://www.seodenver.com/google-place-pages/' rel='bookmark' title='Google Place Pages &#8211; Google Finally Shows its Answer to Yelp.com'>Google Place Pages &#8211; Google Finally Shows its Answer to Yelp.com</a></li>
<li><a href='http://www.seodenver.com/onebox-seo/' rel='bookmark' title='New Google search results — OneBox is upgraded'>New Google search results — OneBox is upgraded</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>As seen on 7News &#8211; <a rel="nofollow" href="http://www.thedenverchannel.com/video/19534211/index.html">View the video on TheDenverChannel.com</a></strong></p>
<p><img class="size-full wp-image-690 alignnone" title="Denver 7News" src="http://www.seodenver.com//home/katzwebd/seodenver.com/wp-content/uploads/HLIC/katzwebdesign.files.wordpress.com/2009/05/denver-news.jpg" alt="Denver 7News" width="500" height="70" /></p>
<h2>Why Google Profiles matter to you</h2>
<div class="alignright" style="width: 200px; border: 1px solid #ff9900; margin-left: 10px; margin-bottom: 10px;">
<div style="font-weight:bold;padding:5px;">Receive monthly tips like this one on how to get online exposure</div>
<div style="background-color:#ff9900;text-align:center;"><a rel="nofollow" href="http://visitor.constantcontact.com/d.jsp?m=1101586840746&amp;p=oi" target="_blank"><img src="http://www.seodenver.com//home/katzwebd/seodenver.com/wp-content/uploads/HLIC/img.constantcontact.com/ui/images1/visitor/email1_trans.gif" border="0" alt="" /></a><a rel="nofollow" href="http://visitor.constantcontact.com/d.jsp?m=1101586840746&amp;p=oi" target="_blank">Receive monthly emailed tips</a></div>
</div>
<p>As featured on the May 20th 7News program featuring <a href="http://google.com/profiles/zackkatz">Zack Katz</a> of <a href="http://katzwebdesign.net">Katz Web Design</a>, Google Profiles are a great way to be found online for your own name, even if you don&#8217;t have a website.If you set up an online profile with Google, a person looking for you online will be able to find you more easily.</p>
<h3>Your profile will show up in search results</h3>
<p>In the past, if you wanted to be listed in search results for your own name (it&#8217;s called a &#8220;vanity search&#8221;), you often needed your own website. Google is changing that, and giving users the power to show up in a search result with a picture and link to their profile.</p>
<div id="attachment_677" class="wp-caption alignnone" style="width: 460px"><img class="size-full wp-image-677" style="border:0 initial initial;" title="Google Profile Embedded Results" src="http://www.seodenver.com//home/katzwebd/seodenver.com/wp-content/uploads/HLIC/katzwebdesign.files.wordpress.com/2009/05/picture-303.jpg" alt="Google Profile Embedded Results" width="450" height="81" /><p class="wp-caption-text">The Google Profile box embedded in the search results for Zack Katz</p></div>
<p><span style="font-weight:normal;">In April, Google has started giving Profiles a prominent placement in search results. It is safe to presume that Google will be further incorporating the Profiles in the future, and assigning them more value. <strong>If you want to improve your findability online, setting up a profile is a great step to take.<span id="more-678"></span></strong></span></p>
<h2>How to create your Google Profile</h2>
<p>If you already have a Google account (if you use Gmail, or any other Google product), go directly to the <a href="http://google.com/profiles/">Google Profiles</a> page, and skip to step #7.</p>
<h3>Part 1: Getting signed up and logged in</h3>
<div id="attachment_684" class="wp-caption alignright" style="width: 178px"><img class="size-medium wp-image-684  " title="Create your profile (20090520)" src="http://www.seodenver.com//home/katzwebd/seodenver.com/wp-content/uploads/HLIC/katzwebdesign.files.wordpress.com/2009/05/408f03e01b747e83ca24d6a5d2753e4a.jpg" alt="Create your profile (20090520)" width="168" height="165" /><p class="wp-caption-text">(Click image to view larger) The &#39;Create your profile&#39; page has many options, including your contact information. Choosing what information to include is a personal decision.</p></div>
<ol>
<li><a title="Go to Google Profiles (in a new window)" href="http://google.com/profiles/">Click here to go to Google Profiles</a></li>
<li>Click on &#8220;Create an account now&#8221;<br />
<img class="alignnone size-full wp-image-679" title="Create a New Google Profile" src="http://www.seodenver.com//home/katzwebd/seodenver.com/wp-content/uploads/HLIC/katzwebdesign.files.wordpress.com/2009/05/picture-304.jpg" alt="Create a New Google Profile" width="235" height="58" /></li>
<li>Fill out the short form to create a Google account.</li>
<li>Check your email on the email account you provided. Google will send a confirmation message confirming your email address.</li>
<li>Click the verification link provided in the confirmation email.</li>
<li>After clicking the link, a page will load with a link saying &#8220;click here to manage your account profile.&#8221;  Click it.</li>
<li>You should now be on the Create your profile page (view image to the right).</li>
</ol>
<h3>Part 2: Adding information</h3>
<p>There are lots fields you have the opportunity to fill out &#8211; fill out as many as you want. Google&#8217;s done a good job of having some silly options, such as a place to specify &#8220;My superpower.&#8221;</p>
<h4>Here are some main items you won&#8217;t want to miss:</h4>
<ul>
<li><strong>Explore</strong> &#8212; make sure to check out the different tabs near the top of the page. &#8220;Contact info&#8221; gives you a place to enter your email, phone numbers, instant messenging account information, and photos from photo sharing sites like <a href="http://flickr.com">Flickr</a>.<br />
<img class="size-full wp-image-703 alignnone" title="Profile tabs" src="http://www.seodenver.com//home/katzwebd/seodenver.com/wp-content/uploads/HLIC/katzwebdesign.files.wordpress.com/2009/05/picture-312.jpg" alt="Profile tabs" width="198" height="38" /></li>
<li><strong><img class="size-full wp-image-704 alignright" title="Change your Google Profile picture" src="http://www.seodenver.com//home/katzwebd/seodenver.com/wp-content/uploads/HLIC/katzwebdesign.files.wordpress.com/2009/05/picture-306.jpg" alt="Change your Google Profile picture" width="118" height="127" />Add a profile photo &#8212; </strong>why create a really great profile if you&#8217;re not going to share your likeness with the world? Click on the <em>Google</em>y-eyed image and follow the instructions. It&#8217;s easy, and it will make your profile truly personal&#8230;.and if you don&#8217;t have a photo, the photo won&#8217;t show up in search results, reducing your exposure.</li>
<li><strong>Add a bio</strong> &#8212; write a bit about yourself: your job history, your family pets&#8230;anything you would like to share. If you&#8217;re creating a professional profile, you could write about your business and your qualifications.</li>
</ul>
<p>Google will let you know if they need more information before having your profile listed in search results.</p>
<h3>Part 3: For power users</h3>
<h4>Maximize your profile with search engine optimization techniques</h4>
<p><img class="alignright size-medium wp-image-696" title="Links in your profile have good SEO value" src="http://www.seodenver.com//home/katzwebd/seodenver.com/wp-content/uploads/HLIC/katzwebdesign.files.wordpress.com/2009/05/bc426195eaa2fee105edf16327747d29.jpg" alt="Links in your profile have good SEO value" width="300" height="117" />One of the best parts about setting up your profile with Google is that you can tell Google what your website is. If you run a business, adding a link on your profile to your businesses&#8217; website will help that website rank better in search results. <strong>Google Profiles pass value to sites you list.</strong></p>
<ul>
<li>Make sure to add all of your profiles and websites using the &#8220;Add custom links to my profile&#8221; form provided (pictured at right).</li>
<li>In the &#8220;Link name&#8221; field, be descriptive about your website. If you have a profile on LinkedIn, and you are a florist, you could write &#8220;Denver Florist on LinkedIn&#8221; &#8212; which is better than &#8220;My LinkedIn Profile,&#8221; because it has relevant, descriptive words.</li>
<li>Feel free to list as many links as you want, but be aware that the more links you have on one page, the less value each link will give; the page&#8217;s value will be divided.</li>
<li>Create a Profile URL (at the bottom of the profile page) &#8212; otherwise, your profile will look  like <code>google.com/profiles/104944297119239125072</code>, instead of <code>google.com/profiles/your-name</code>, which is much nicer (and better for search)</li>
</ul>
<h4 style="font-size:1em;">Verify your name for added trust</h4>
<p>Follow these steps to verify your phone number, and get a Verified Name badge on your profile.</p>
<h2>How to monitor your online reputation</h2>
<p>When someone writes about you online, it&#8217;s important for you to know about it. Reputation management in the age of the internet is an extremely important aspect of having an online presence.  In order to monitor where you are mentioned online, we will set up an alert with <a rel="nofollow" href="http://www.google.com/alerts/">Google Alerts</a>.</p>
<p><img class="size-full wp-image-681 alignright" title="Setting up a Google Alert - The Create an Alert Form" src="http://www.seodenver.com//home/katzwebd/seodenver.com/wp-content/uploads/HLIC/katzwebdesign.files.wordpress.com/2009/05/picture-308.jpg" alt="Setting up a Google Alert - The Create an Alert Form" width="324" height="230" /></p>
<p>Go to <a rel="nofollow" href="http://www.google.com/alerts/">Google Alerts</a>. If you are logged in to Google, you will see a form similar to the one on the right.</p>
<ul>
<li>Enter in your name, or the name of your business in the field &#8220;Search terms,&#8221;</li>
<li>Choose Comprehensive as the &#8220;Type&#8221; &#8212; the other options will limit what content Google looks in.</li>
<li>Select from the &#8220;How often&#8221; drop-down your preferred frequency of alerts.  I recommend setting &#8220;How often&#8221; to &#8220;as-it-happens;&#8221; that way, as soon as Google finds new content about you, Google will send you an email with a link to the web page where it found you.</li>
<li>Choose your email as the delivery option.</li>
<li>Click &#8220;Create Alert,&#8221; and you&#8217;re set up!</li>
</ul>
<h3>Once you&#8217;ve set up an alert</h3>
<p>Now, when Google finds new content that mentions you, you will immediately receive an informative email.  This will allow you to respond to the new content appropriately.</p>
<p>If a person has written a complimentary article about you, you can leave a comment on it thanking them.  If the content is negative, you can seek ways to remedy the situation. But that&#8217;s for another article.</p>
<p>You may create as many alerts as you like, which will provide you with an immediate notification of any Google content related to your alert.</p>
<h2>Any questions?</h2>
<p>If you have questions about this article, please leave a comment in the form labeled &#8220;Leave a comment&#8221; below.  You may also check out the following official Google help documents:</p>
<ul>
<li><a rel="nofollow" href="http://www.google.com/support/accounts/bin/answer.py?hl=en&amp;answer=97703">About Google Profiles</a></li>
<li><a rel="nofollow" href="http://www.google.com/support/accounts/bin/answer.py?answer=112783&amp;ctx=sibling">Profile Privacy Information</a></li>
</ul>
<p><span style="color:#808080;"><em>Zack Katz runs Katz Web Design, a search engine optimization and web design company in Denver. Katz Web Design specializes in helping small business owners dominate search results in their industry. <a title="I want more information" rel="nofollow" href="mailto:info@katzwebdesign.net?subject=I%20want%20more%20information&amp;content=">Email KWD for a free consultation</a>.</em></span></p>
<p><span style="color:#808080;"><a href="http://google.com/profiles/zackkatz"><strong>View Zack&#8217;s Google Profile</strong></a></span></p>
<p><span style="color:#808080;"><em> </em></span></p>
<p>Related posts:<ol>
<li><a href='http://www.seodenver.com/seo-google-profiles-google-adds-nofollow-to-links/' rel='bookmark' title='SEO Google Profiles &#8211; Google Adds NoFollow to Links'>SEO Google Profiles &#8211; Google Adds NoFollow to Links</a></li>
<li><a href='http://www.seodenver.com/google-place-pages/' rel='bookmark' title='Google Place Pages &#8211; Google Finally Shows its Answer to Yelp.com'>Google Place Pages &#8211; Google Finally Shows its Answer to Yelp.com</a></li>
<li><a href='http://www.seodenver.com/onebox-seo/' rel='bookmark' title='New Google search results — OneBox is upgraded'>New Google search results — OneBox is upgraded</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.seodenver.com/how-to-create-a-google-profile-and-manage-your-online-reputation/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to Create a Custom RSS Feed in WordPress in 12 Lines of Code</title>
		<link>http://www.seodenver.com/custom-rss-feed-in-wordpress/</link>
		<comments>http://www.seodenver.com/custom-rss-feed-in-wordpress/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 16:40:45 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Custom feed]]></category>
		<category><![CDATA[Custom Feed Tutorial]]></category>
		<category><![CDATA[Feed Rewrite]]></category>
		<category><![CDATA[Feed Template]]></category>
		<category><![CDATA[generate_rewrite_rules]]></category>
		<category><![CDATA[Google Base Feed]]></category>
		<category><![CDATA[RSS Feed]]></category>
		<category><![CDATA[WordPress Custom Feed]]></category>
		<category><![CDATA[WordPress Rewrite]]></category>
		<category><![CDATA[WordPress RSS Feed]]></category>

		<guid isPermaLink="false">http://seodenver.com/?p=648</guid>
		<description><![CDATA[Custom RSS feed me, Seymour Recently I wanted to create a feed for Google base that used a bunch of custom fields that I had created. It wasn&#8217;t easy to find what I was looking for online, so I thought &#8230; <a href="http://www.seodenver.com/custom-rss-feed-in-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>
Related posts:<ol>
<li><a href='http://www.seodenver.com/fixing-interspire-google-base-feed/' rel='bookmark' title='Fixing the Interspire Google Base Feed'>Fixing the Interspire Google Base Feed</a></li>
<li><a href='http://www.seodenver.com/add-store-sitemap-shopp-plugin/' rel='bookmark' title='Add a Store Catalog XML Sitemap to the Shopp Plugin'>Add a Store Catalog XML Sitemap to the Shopp Plugin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-649" title="Custom RSS feed me!" src="http://katzwebdesign.files.wordpress.com/2009/04/custom-feed-me.jpg" alt="Custom RSS feed me!" width="500" height="259" /></p>
<h2><em>Custom RSS feed me</em>, Seymour</h2>
<p>Recently I wanted to create a feed for Google base that used a bunch of custom fields that I had created. It wasn&#8217;t easy to find what I was looking for online, so I thought I&#8217;d show how simple it is to make a<strong> custom feed &amp; feed template</strong> in WordPress.<span id="more-648"></span></p>
<p>All it takes is one piece of code to point to your own feed template and create an unique feed name.</p>
<p><code> function create_my_customfeed() {<br />
load_template( TEMPLATEPATH . &#39;your-custom-feed.php&#39;); // You'll create a your-custom-feed.php file in your theme's directory<br />
}<br />
add_action(&#39;do_feed_<strong>customfeed</strong>&#39;, &#39;create_my_customfeed&#39;, 10, 1); // Make sure to have &#39;do_feed_<strong>customfeed</strong>&#39;</code></p>
<h3>Now, rewrite your feed like WordPress does, all pretty-like.</h3>
<p>This has set up everything you will need to modify your feed. You will now be able to access your feed at <code>http://yoursite.com/?feed=customfeed</code>. But what about how WordPress does the really neat rewriting of feeds from <code>/?feed=rss</code> to <code>/feed/rss/</code>?  That requires using <code>generate_rewrite_rules()</code>, as described in the <a href="http://codex.wordpress.org/Function_Reference/WP_Rewrite">WP_Rewrite Codex page</a>.</p>
<p>This piece of code will allow you to have any feed name, and dynamically &#8220;create&#8221; <code>/customfeed.xml</code> as well as a <code>/feed/customfeed/</code> versions:</p>
<p><code>function custom_feed_rewrite($wp_rewrite) {<br />
$feed_rules = array(<br />
&#39;feed/(.+)&#39; =&gt; &#39;index.php?feed=&#39; . $wp_rewrite-&gt;preg_index(1),<br />
&#39;(.+).xml&#39; =&gt; &#39;index.php?feed=&#39;. $wp_rewrite-&gt;preg_index(1)<br />
);<br />
$wp_rewrite-&gt;rules = $feed_rules + $wp_rewrite-&gt;rules;<br />
}<br />
add_filter(&#39;generate_rewrite_rules&#39;, &#39;custom_feed_rewrite&#39;);</code></p>
<h3>You&#8217;ve set up your custom feed locations, now you need a feed template!</h3>
<p>In the first piece of code, we told the <code>create_my_customfeed()</code> function to look in your theme&#8217;s directory for a <code>your-custom-feed.php</code> file. This will be the feed template your feed will use.</p>
<p>For this part, go to <code>/wp-includes/feed-rss2.php</code> and copy and paste the code wholesale into your custom feed template.  From there, you can start modifying away at the code.  All the WordPress functions you&#8217;re used to are still available, because you are still in the WordPress loop.  </p>
<p><strong>Now, check out your feed and see if it works&#8230;it should!</strong></p>
<h4>One way I have applied this code</h4>
<p>I used this code when I created a Google Base Feed for CellPhoneFiesta.com. It took custom fields from each post and created a compliant feed.  Check out the <a title="This feed uses the code above" href="http://cellphonefiesta.com/feed/googlebase/">Google Base feed</a> that uses this code.</p>
<p><strong>Any questions?</strong></p>
<p>Related posts:<ol>
<li><a href='http://www.seodenver.com/fixing-interspire-google-base-feed/' rel='bookmark' title='Fixing the Interspire Google Base Feed'>Fixing the Interspire Google Base Feed</a></li>
<li><a href='http://www.seodenver.com/add-store-sitemap-shopp-plugin/' rel='bookmark' title='Add a Store Catalog XML Sitemap to the Shopp Plugin'>Add a Store Catalog XML Sitemap to the Shopp Plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.seodenver.com/custom-rss-feed-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>75</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Object Caching 0/0 objects using disk: basic

Served from: www.seodenver.com @ 2012-02-11 11:34:33 -->
