<?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>Search Engine Land &#187; Ian Lurie</title>
	<atom:link href="http://searchengineland.com/author/ian-lurie/feed" rel="self" type="application/rss+xml" />
	<link>http://searchengineland.com</link>
	<description>Search Engine Land: News On Search Engines, Search Engine Optimization (SEO) &#38; Search Engine Marketing (SEM)</description>
	<lastBuildDate>Thu, 23 May 2013 02:09:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How To Build Your Own Enterprise SEO Datastore</title>
		<link>http://searchengineland.com/how-to-build-your-own-enterprise-seo-datastore-148557</link>
		<comments>http://searchengineland.com/how-to-build-your-own-enterprise-seo-datastore-148557#comments</comments>
		<pubDate>Mon, 18 Feb 2013 17:43:55 +0000</pubDate>
		<dc:creator>Ian Lurie</dc:creator>
				<category><![CDATA[Channel: SEO]]></category>
		<category><![CDATA[Enterprise SEO]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[data storage]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[datastore]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[servers]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=148557</guid>
		<description><![CDATA[I hereby swear to not use the phrase “big data” again in this post. Enterprise SEO is all about the data. More accurately, it’s all about data storage. If you can look back over a year, pull out different metrics and see which ones correlate to success, you’re one step closer to repeating that success. [...]]]></description>
				<content:encoded><![CDATA[<p>I hereby swear to not use the phrase “big data” again in this post.</p>
<p>Enterprise <span class="caps">SEO</span> is all about the data. More accurately, it’s all about data <em>storage</em>.</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-148562" alt="graphblank" src="http://searchengineland.com/figz/wp-content/seloads/2013/02/graphblank.png" width="480" height="323" /></p>
<p>If you can look back over a year, pull out different metrics and see which ones correlate to success, you’re one step closer to repeating that success. If you realize at the end of the year it would’ve been <em>realllllly</em> nice to know page speed numbers across the whole site, well, you’re sunk.</p>
<p>So why are so many ‘big players’ still using Excel as their main data storage tool?</p>
<p>Portent’s not exactly ‘enterprise’ scale, but we store a lot of information for a lot of different clients. Sometimes, we even need to retrieve it. So here’s the solution I’ve built, in broad terms.</p>
<ul>
<li>It cost a total of $5,000 to set up; that includes my time</li>
<li>It costs $100/month to host</li>
<li>I only touch it if I need the data</li>
<li>For the basic stuff, it uses Excel as the front end</li>
</ul>
<p>If you want me to get more detailed, I can write future columns on each individual component.</p>
<h2>The Requirements</h2>
<p>I built this tool myself. I know, I’m a <span class="caps">CEO;</span> I’m not supposed to do this kind of thing. But I’m also a geek, and this was a hell of a lot of fun. Here were the requirements I wrote down when I started:</p>
<ul>
<li>Can store and retrieve hundreds of millions of records, without causing server meltdowns</li>
<li>Allows easy Excel import</li>
<li>Built on technology I already know: Python, <span class="caps">LINUX</span>, MySQL and/or MongoDB</li>
<li>Keep different clients’ data separate</li>
<li>But allow global analysis across all clients, if desired</li>
<li>Never make me cry</li>
</ul>
<p>Thus armed, I got to work.</p>
<h2>The Servers</h2>
<p>If you care about this kind of stuff: I’m running this system on two Ubuntu <span class="caps">LINUX</span> servers. One server runs the Python code and MySQL database (which is quite small, see the next section). The other runs MongoDB. If we ever hit the point where we need more oomph, we’ll spread MongoDB across multiple servers. It’s good at that.</p>
<h2>The Database(s)</h2>
<p>I ended up using a hybrid: MySQL stores the usual client stuff, like account names, site addresses and such. This kind of dataset won’t grow too large, and one client will only have so many websites, and it benefits from using MySQL’s relational structure.</p>
<p>MongoDB stores things like daily/hourly Facebook data, Google Analytics exports and the kind of stuff that just keeps growing. Why? Because MongoDB is a ‘NoSQL’ database. It stores everything in a flattened list-type format. That makes it a bit speedier for straight-up requests like “Show me all of the visitors, by day, for www.mysite.com, since 2011.”</p>
<p>Here’s a really basic look at the structure:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-148559" alt="raingage" src="http://searchengineland.com/figz/wp-content/seloads/2013/02/raingage.png" width="433" height="511" /></p>
<p>That’s not a database layout. It just shows how the two databases ‘talk’ to each other: MySQL stores the information used to access and retrieve data. MongoDB actually stores the data itself. MongoDB actually has about 30 different collections (in NoSQL, they call ‘tables’ collections, instead, just to be different) at the moment.</p>
<p>The beauty of the NoSQL system is that we can add fields and collections as needed, without screwing up the previous data. I won’t even try to explain why – I’m too much of a noob. Just keep in mind that NoSQL = lots of flexibility. Which can be a good or bad thing.</p>
<h2>The Code</h2>
<p>Then came the hard part: I had to actually get the data from each source and into my database.</p>
<p>Working with some APIs is a cinch. For example, pulling in data from Twitter was relatively easy. Here’s a quick example in Python. It grabs my account information from Twitter and prints it:</p>
<p style="padding-left: 30px;"><code>import twitter
import time
wait_period = 3600</code></p>
<p style="padding-left: 30px;">screen_name = &#8216;portentint&#8217; # that&#8217;s me</p>
<p style="padding-left: 30px;"># you&#8217;ll need to get these by creating a Twitter API account</p>
<p style="padding-left: 30px;">CONSUMER_KEY = &#8221;
CONSUMER_SECRET = &#8221;
ACCESS_TOKEN = &#8221;
ACCESS_SECRET = &#8221;</p>
<p style="padding-left: 30px;">t = twitter.Api(consumer_key = CONSUMER_KEY, consumer_secret = CONSUMER_SECRET, access_token_key = ACCESS_TOKEN, access_token_secret = ACCESS_SECRET)</p>
<p style="padding-left: 30px;">response = t.GetUser(screen_name)
try:
print response # response is in JSON. Since I&#8217;m using MongoDB, I can just dump it into the database</p>
<p style="padding-left: 30px;">except twitter.TwitterError, e:</p>
<p style="padding-left: 30px;">error = str(e)</p>
<p style="padding-left: 30px;">if error == &#8216;Rate limit exceeded. Clients may not make more than 350 requests per hour.&#8217;:</p>
<p style="padding-left: 30px;">print &#8220;Rate limit exceeded. Waiting for the next hour.&#8221;</p>
<p style="padding-left: 30px;">time.sleep(wait_period)
else:
print str(e)</p>
<p>Code like this powers the entire tool. The Facebook code is more complicated. The Google Analytics code is more complicated still. But other tools, like SEMRush, were far easier. And, once they’re built, you set ’em to run and let them do their jobs.</p>
<p>The key is to build the data collection tools you can <em>now</em>, and start collecting that data <em>now</em>. Don’t wait until you have ‘every metric’ collected and stored, because there’s <em>always a new metric</em>, or a new <span class="caps">API</span>. You’ll never launch. Only used storage is useful.</p>
<h2>Making It All Work</h2>
<p>I thought about building a big, fancy-schmancy reporting tool, but realized I’ve already got one: Excel.</p>
<p>Microsoft Excel has a cool but almost undocumented tool called Web Query. With it, you can directly import a comma- or tab-delimited file into your spreadsheet.</p>
<ol>
<li>Create a script that generates and prints a comma- or tab-delimited file with the data you want. Test it! Make sure it’s generating the output you need.</li>
<li>Create a text file. Use the template below as your guide.</li>
<li>In Excel, click <strong>Data &gt; Get External Data &gt; Run Saved Query</strong>.</li>
<li>Choose the file you created.</li>
</ol>
<p><code>The template:
<span class="caps">WEB</span>
<span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">1</span>
[web address of script that generates your delimited file ]</code></p>
<p>Formatting=none
PreFormattedTextToColumns=True
ConsecutiveDelimitersAsOne=True
SingleBlockTextImport=False
DisableDateRecognition=False
DisableRedirections=False</p>
<p>After a minute or two, your data will appear in the spreadsheet. You can format it, generate graphs, etc., as needed. The best part is, you only have to do it once.</p>
<p>To update your data, you can open the Excel sheet and click <strong>Data &gt; Refresh</strong>. It’ll update your sheet, and add any new rows.</p>
<p>Here’s a very simple dashboard I use for Portent:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-148561" alt="sel_dashboard" src="http://searchengineland.com/figz/wp-content/seloads/2013/02/sel_dashboard.png" width="600" height="646" /></p>
<h2>Security</h2>
<p>If you’re in an organization where security matters a lot, you don’t want to be shooting delimited files around the Web willy-nilly. Someone in IT will definitely come knocking.</p>
<p>At Portent, we generate random keys that have to be included in the Web query template. The server checks for the result and makes sure it matches our key generator. If it doesn’t, you can’t grab any data.</p>
<p>That’s pretty basic — you can get fancier. But, it prevents any accidental data dumps.</p>
<h2>Other Stuff To Think About</h2>
<p>Other things we’ve tested with this kind of quick-and-dirty data warehouse include:</p>
<ul>
<li>Grabbing catalog sales data for cross-channel analysis</li>
<li>Scaling to a lot more records (billions) – it gets ugly</li>
<li>Grabbing seemingly random data, like weather, to check for sales drivers</li>
<li>Importing SalesForce leads information</li>
</ul>
<p>The possibilities are endless. The point is to start now.</p>
<h2>What You Don’t See Can Make You Awesome</h2>
<p>The dashboard is pretty. But, the real power in this approach is that we have a lot of data at our fingertips for comparison. With a few custom queries, we can compare things like:</p>
<ul>
<li>Sentiment and use of images in Facebook posts</li>
<li>Organic visits and Twitter followers</li>
<li>Instances of duplicate content and organic visits</li>
<li>Instances of duplicate content and site performance</li>
<li>Adwords quality score and bid cost</li>
</ul>
<p>…</p>
<p>You get the idea.</p>
<p>Yes, noodling around with things like Python and <span class="caps">LINUX</span> can be a bit spooky. Do it anyway.</p>
<p>A few days’ of effort gives us access to piles of great data, for years. While the dashboard is cool, the ability to research and measure across lots of different channels is better. And, never having to tell your boss, “<em>We weren’t recording that data,</em>” is priceless.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/how-to-build-your-own-enterprise-seo-datastore-148557/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>5 Whopping Lies That Keep SEO At Status Quo</title>
		<link>http://searchengineland.com/5-whopping-lies-that-keep-seo-at-status-quo-145081</link>
		<comments>http://searchengineland.com/5-whopping-lies-that-keep-seo-at-status-quo-145081#comments</comments>
		<pubDate>Mon, 21 Jan 2013 19:06:28 +0000</pubDate>
		<dc:creator>Ian Lurie</dc:creator>
				<category><![CDATA[Channel: SEO]]></category>
		<category><![CDATA[Enterprise SEO]]></category>
		<category><![CDATA[application server]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[broken links]]></category>
		<category><![CDATA[crawlers]]></category>
		<category><![CDATA[footer links]]></category>
		<category><![CDATA[SEO - Search Engine Optimization]]></category>
		<category><![CDATA[SEO best practices]]></category>
		<category><![CDATA[SEO lies]]></category>
		<category><![CDATA[subdomain]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=145081</guid>
		<description><![CDATA[I’m a little dense. I admit it. Sometimes things just don’t sink in. Me and the many voices in my head have attempted to define Enterprise SEO many times. Is it about big sites? Internal politics? Higher likelihood of failure? IT teams and branding guidelines? Nope. Apparently, enterprise SEO is something we say when we’re clueless. [...]]]></description>
				<content:encoded><![CDATA[<p>I’m a little dense. I admit it. Sometimes things just don’t sink in.</p>
<p>Me and the many voices in my head have attempted to define <em>Enterprise <span class="caps">SEO</span></em> many times. Is it about big sites? Internal politics? Higher likelihood of failure? IT teams and branding guidelines?</p>
<p>Nope. Apparently, <em>enterprise <span class="caps">SEO</span></em> is something we say when we’re clueless. Say I’m on a call with a big development team and I make ridiculous request like, ‘<em>Can we link to the home page at www.domain.com?</em>’ Suddenly, everyone starts throwing <em>enterprise <span class="caps">SEO</span></em> around like poo at a monkey party.</p>
<p>I don&#8217;t understand it. Sob.</p>
<p>I <em>do</em> understand a few of the total whopper-BS-bombs lobbed around the subject, though. I&#8217;ve tried to explain where they come from, and how to stamp them out:</p>
<h2>1.  We’ll Put Links In The Footer, For The Crawlers</h2>
<p>…or small-print text 800 pixels below the fold, as <em>spider food</em>.</p>
<p>When you see something like this:</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-145084" src="http://searchengineland.com/figz/wp-content/seloads/2013/01/sel-jan13-1-600x274.png" alt="" width="600" height="274" /></p>
<p>Or this:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-145085" src="http://searchengineland.com/figz/wp-content/seloads/2013/01/sel-jan13-21.png" alt="" width="493" height="172" /></p>
<p>What words pop into your mind?</p>
<p>Are any of them <em>valuable</em> or <em>usefu</em>l or <em>well-written</em>? No? Then it’s not going to work as an <span class="caps">SEO</span> tactic, no matter how big your site. Slapping links in the footer or throwing poorly-written drivel at the bottom of the page may briefly help. At some point, though, one algorithm update or another will come up and bite your site squarely on the buttocks. If Panda and Penguin didn’t teach you that, well, best of luck.</p>
<p><em>Why, oh why?</em> Some design teams love this tactic because it lets them keep their pages <em>purty</em> above the fold. They think words are fatal to design.</p>
<p><em>Instead<strong>:</strong></em> Consider writing real, useful text that folks want to read. Try creating navigation that makes sense to visitors. The truth is, words and design equal great architecture. That’s why so many of the very best sites on the Web blend them so well.</p>
<h2>2.  We Can Handle <span class="caps">SEO</span> After QA</h2>
<p>Yes. Yes, you can. In fact, I welcome this approach: it gets me clients who are panicked and ready to do anything to fix their plunging rankings, which means I can sign them that much faster.</p>
<p>I’m kidding. Mostly.</p>
<p><span class="caps">SEO</span> campaigns strengthen three properties of websites: Visibility. Significance. Authority.</p>
<p>All three depend on smart development from the very bottom of the technology stack. Visibility depends almost entirely on sound coding and canonicalization practices from day one. None can be stapled to the website on launch day.</p>
<p><em>Why, oh why? </em>Managers ask the development team, “<em>Do you know <span class="caps">SEO</span>?</em>” The development team hears, “<em>Do you know how to put meta tags on webpages?</em>” and says “<em>Yes</em>.” Chaos ensues.</p>
<p><em>Instead</em>: Think of <span class="caps">SEO</span> as a set of best practices that start with basic server configuration and end with ongoing content strategy. Everything in between matters.</p>
<h2>3.  <span class="caps">SEO</span> Is At Odds With Our Brand</h2>
<p>Absolutely not. The overall experience customers have on your site helps define your online brand. All smart <span class="caps">SEO</span> enhances that experience by making a site clearer, faster, easier to read, easier to use and yes, easier to find.</p>
<p><em>Why, oh why?</em> To most marketing managers,<em> Enterprise</em> <span class="caps">SEO</span> means slapping text on pages (see Whopper 1) or changes you have to make after launch (see Whopper 2). Neither creates the greatest brand experience: You’re either duck-taping lousy writing to an existing design, or delaying other site work for <span class="caps">SEO</span> modifications.</p>
<p><em>Instead:</em> Consider search engines one of the first potential brand touchpoints. Learn what customers care about online (speed, clarity, relevance, transparency). Build accordingly.</p>
<h2>4.  We Can Put The Blog On A Subdomain. It&#8217;s Fine.</h2>
<p>No, it is not. Subdomains siphon authority away from primary domains. And no quantity of uncertain quotes you find and take out of context will change that.</p>
<p>Search engines treat subdomains and subfolders differently. You <em>might</em>, if you&#8217;re really lucky, dodge this bullet. But it&#8217;s damned unlikely.</p>
<p>Want proof? Take one category of your site — preferably one that ranks well — and move it to a subdomain. Watch what happens. Your rankings will spiral the drain.</p>
<p>Or, take a safer approach. Look at how Google advised sites penalized under Panda to get back into the rankings. One of the top recommendations: <em>move the &#8216;low quality&#8217; content off the site, to a separate subdomain.</em> Why? Because that moved that content off the main site. If a subdomain is <em>off</em> the main site, will links pointing at the subdomain help the primary domain, exactly as if those links were pointed at that primary domain?</p>
<p><em>Or</em>, listen to folks like <a href="http://www.seomoz.org/q/subdomains-vs-subfolders">Rand Fishkin</a>, who know a thing or two about this: &#8220;Subdomains <em>sometimes</em> inherit and pass link/trust/quality/ranking metrics between one another. Subfolders <em>always</em> inherit and pass link/trust/quality/ranking metrics across the same subdomain.&#8221;</p>
<p><em>Why, oh why? </em>Most enterprise e-commerce systems come in black boxes. Adding blogs to these sites is next to impossible. So, a subdomain was the easy way to get the SEO team to shut up.</p>
<p><em>Instead: </em>Pick a decent technology stack that&#8217;ll let you add a blog. Or learn to use reverse proxies. Or simply accept that in this one area, your site will be a bit behind.</p>
<h2>5.  Our Application Server Handles Broken Links Just Fine</h2>
<p>Note: I added this one. It’s hardly strategic, but man, it’s fun.</p>
<p>Someone at Microsoft has a violent allergy to standards of any kind. The best example ever is the way <em>.<span class="caps">net</span>-based</em> websites handle broken links. Instead of delivering a nice, normal &#8217;404&#8242; response code — that would tell a browser or search bot that the link’s busted — .<span class="caps">net</span> returns a ‘200’ or ‘302’ code, depending on just how deranged the developer was at the time.</p>
<p>But it’s not just them. Lots of Java-based servers do the same thing. I have no idea why. The results, though, are hilarious. Target.com, for example, dominates the rankings for its own error message:</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-145086" src="http://searchengineland.com/figz/wp-content/seloads/2013/01/sel-jan13-31-600x460.png" alt="" width="600" height="460" /></p>
<p>High-five, guys!!!</p>
<p><em>Why, oh why? </em>The truth is, any rational person would <em>assume</em> a Web server comes configured to handle 404 errors. But that assumes that a rational person designed the Web server. Mistake.</p>
<p><em>Instead:</em> Assume nothing. This is the company that brought us the Zune, after all.</p>
<h2>No One Likes The Answers</h2>
<p>The truth is, everyone knows better. None of these gigantic <span class="caps">SEO</span> lies pass the common-sense sniff test. But the answers require change, rather than the status quo. They require a lot of activism within marketing and development departments, not diplomacy. And they require real effort by key resources, not farmed-out Fiverr campaigns.</p>
<p>Somewhere, you’ve got a competitor who accepts these answers, even if they don’t like them. You need to get to that place, too, or they’re going to eat your market share, and your business, for lunch.</p>
<p>I promise to be on better behavior for my next post.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/5-whopping-lies-that-keep-seo-at-status-quo-145081/feed</wfw:commentRss>
		<slash:comments>51</slash:comments>
		</item>
		<item>
		<title>You Need To Steer To Survive In A SERP-Happy World</title>
		<link>http://searchengineland.com/why-you-need-to-steer-to-survive-in-a-serp-happy-world-142061</link>
		<comments>http://searchengineland.com/why-you-need-to-steer-to-survive-in-a-serp-happy-world-142061#comments</comments>
		<pubDate>Mon, 17 Dec 2012 19:09:10 +0000</pubDate>
		<dc:creator>Ian Lurie</dc:creator>
				<category><![CDATA[Channel: SEO]]></category>
		<category><![CDATA[Enterprise SEO]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=142061</guid>
		<description><![CDATA[I was ready to write a completely different column today. Then, I saw the announcement that Raven is doing away with ranking reports and any other SEO data that might ruffle Google’s feathers. I quickly went through denial/anger/bargaining/acceptance: I’m sure they’ll find another way to get this data; this won’t affect anyone else What the #$)(*!*) [...]]]></description>
				<content:encoded><![CDATA[<p>I was ready to write a completely different column today. Then, I saw the announcement that Raven is <a href="http://searchengineland.com/raven-tools-to-remove-scraped-data-to-maintain-access-to-adwords-api-141888">doing away with ranking reports and any other <span class="caps">SEO</span> data that might ruffle Google’s feathers</a>.</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-142064" title="Stock image from iStockPhoto used under license." src="http://searchengineland.com/figz/wp-content/seloads/2012/12/iStock_000014135025Small-600x527.jpg" alt="Slam brakes. Get airbag in face. I'm just sayin'" width="360" height="316" /></p>
<p>I quickly went through denial/anger/bargaining/acceptance:</p>
<ol>
<li>I’m sure they’ll find another way to get this data; this won’t affect anyone else</li>
<li>What the <code>#$)(*!*)</code> people?!!!</li>
<li>Oh please, let <span class="caps">SEOMOZ</span> keep their ranking data, please please</li>
<li>Well, crap</li>
</ol>
<p>Then I revisited my old, familiar place:</p>
<p><em>I hate the SERPs</em>.</p>
<p>Yep, it’s bizarre: I’m an <span class="caps">SEO</span> who hates the fact that we have to track rankings. I hate that I can triple someone’s revenue from organic search and still get a thumbs-down because they don’t rank #1 for [horse flies]. I resent the sheer brain-thumping hypocrisy of the <span class="caps">SERP</span> screen shots I put in my own proposals while saying, “<em>Woo hoo! Look at the rankings we got for our other clients!</em> because I know that’s what folks want to see.</p>
<p>I could just triple my meds and stumble along, but I decided to give all this a more practical look.</p>
<h2>Don’t Stop; Steer&#8230;</h2>
<p>For 15 years, we’ve been hurtling down the road at 125mph, chasing rankings. Deny if you like, but it’s the truth — as much as I hate rankings, I rarely tell a client to ignore them. Especially if they worked in my favor.</p>
<p>Stopping now would be like slamming on the brakes while still going that 125mph. You might survive (somehow), but you’ll definitely end up with an airbag in your face.</p>
<p>You can’t <em>stop</em> people from looking at rankings. Like I said, SERPs are totally addictive. And, they’re always there.</p>
<p>You <em>can</em> gently steer folks towards other metrics. Do it a little bit at a time, and you can change rankings from 95% of the discussion to 50% or less. Which is a nice start, if nothing else.</p>
<p>I’ve made this work more often than not with three talking points. I hit these points again and again, like a candidate at a debate (without the flag pin).</p>
<h2>Talking Point 1: SERPs Are A Symptom, Not A <span class="caps">KPI</span></h2>
<p>I tell clients to watch the SERPs as one input in a larger picture: the SERPs on their own aren’t a performance indicator. But a sudden change in the SERPs can be a symptom of good or bad stuff happening in their larger marketing campaign.</p>
<p>In our weekly or monthly reports, instead of saying, <em>you rank #2 for ‘rhubarb helper</em>, I’ll say, <em>we haven’t seen any changes in the rankings</em>, or “<em>your rankings are stable</em>. If pressed, I’ll present the actual ranking data, but only if pressed.</p>
<p>The key to success here: you have to focus on changes and symptoms and avoid pointing out specific rankings, even when the news is good. It’s hard to resist crowing about all the new #1 positions you just grabbed, but you have to. Instead, point out the overall rise in traffic and conversions from organic search, and explain that a sharp rise in rankings explains some of it. Then, move on.</p>
<p>Again, clients will press you. And again, I say, <em>steer, don’t stop</em>. When a client presses you to present individual keyword rankings, go ahead, but stick to your talking points. Here’s the next one.</p>
<h2>Talking Point 2: There’s More Data Than This</h2>
<p>Never, ever present rankings on their own. Nor do I present detailed, keyword-by-keyword ranking data in the first two layers of a report.</p>
<p>Instead, I present aggregate ranking changes in subjective terms, like, <em>you’ve seen a net improvement in your rankings in the last month</em>. Then, the client can drill down to keyword groups and average rankings in those groups, and <em>then</em> to the detailed phrase-by-phrase data.</p>
<p>I’m not doing this to hide the data. Instead, I’m doing it to emphasize the more important information shown alongside the aggregate rankings information:</p>
<ul>
<li>Number of unique key phrases driving traffic</li>
<li>Conversions from organic traffic</li>
<li>Organic vs. other channels for time on site, conversions, etc.</li>
<li>Site index health</li>
<li>Spend versus value</li>
</ul>
<p>This approach has helped me emphasize the true KPIs while still making the rankings data available.</p>
<h2>Talking Point 3: Remember Your Real Goals</h2>
<p>I’m always pointing out that <em>you didn’t go into business to rank #1 for ‘turnip slicer</em>.’ Obvious? Yes. Corny? A little.</p>
<p>Worth repeating several thousand times? Absolutely.</p>
<p>I’ll also put the true goal of the campaign — increase sales X%, build share-of-voice Y%, etc. — front-and-center in all reports and correspondence.</p>
<p>I’m steering, a little bit at a time, away from SERPs and toward the goals that matter.</p>
<h2><span class="caps">SERP</span> Addiction Isn’t Going Away</h2>
<p>We’ve all had the <em>rankings aren’t a good metric</em> conversation before; but the truth is, as long as there are rankings, our bosses and clients will care about our position in them.</p>
<p>At first glance, SERPs are pretty simple. They’re impossible to ignore. And, they bait the C-level ego like a choice parking spot or a corner office. They are 100% instantly addictive. I know whereof I speak.</p>
<p>So, try as we might to discuss visitor retention, conversion rates and sales, we won’t have happy clients until we grab that top spot. I don’t like it. You probably don’t, either. But after years of talking about rankings, we can’t just slam on the brakes.</p>
<p>Instead, start making little changes, and steer folks towards more meaningful metrics. You’re less likely to need airbags that way.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/why-you-need-to-steer-to-survive-in-a-serp-happy-world-142061/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>10 Reasons Enterprise SEO Is Trouble, Plus 4 Ways To Make It Work</title>
		<link>http://searchengineland.com/10-reasons-enterprise-seo-is-trouble-and-4-ways-to-make-it-work-139624</link>
		<comments>http://searchengineland.com/10-reasons-enterprise-seo-is-trouble-and-4-ways-to-make-it-work-139624#comments</comments>
		<pubDate>Mon, 19 Nov 2012 17:43:56 +0000</pubDate>
		<dc:creator>Ian Lurie</dc:creator>
				<category><![CDATA[Channel: SEO]]></category>
		<category><![CDATA[Enterprise SEO]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=139624</guid>
		<description><![CDATA[It sounds really attractive: 9-5 hours. You get to focus on a single product. You can win over a single IT department. The grass is way greener over there. But the truth is, in the SEO world, the large enterprise is in trouble. I know about brand favoritism. And I know large enterprises have massive [...]]]></description>
				<content:encoded><![CDATA[<p>It <em>sounds</em> really attractive: 9-5 hours. You get to focus on a single product. You can win over a single IT department. The grass is way greener over there.</p>
<p>But the truth is, in the <span class="caps">SEO</span> world, the large enterprise is in trouble. I know about brand favoritism. And I know large enterprises have massive resources at their disposal.</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-139670" src="http://searchengineland.com/figz/wp-content/seloads/2012/11/turn-left-ep-600x398.jpg" alt="" width="480" height="318" /></p>
<p>All marketers have <em>if only</em> moments: after a particularly grueling client meeting or a day of fighting one fire after another, we think ‘<em>If only I was an in-house <span class="caps">SEO</span> at a big, big company</em>.’</p>
<p>The problem? They can never seem to <em>use</em> those resources. And except for a tiny slice of world-leading brands, most enterprises can’t lean on their overall market visibility.</p>
<h2>My List Of Warning Signs</h2>
<p>So, here’s my list of reasons enterprise <span class="caps">SEO</span> is in trouble. This list is an ongoing project for me, and it’s not just the usual Lurie cynicism—I’m hoping to figure out solutions. If you have input, post it in the comments:</p>
<ol>
<li><strong>Data over-dependence.</strong> The 21st-century enterprise wants to be “100% data driven.” Problem is, you’re selling to human beings. So some chunk of your Internet marketing budget has to be spent on creative thinking. <span class="caps">SEO</span> is no exception.</li>
<li><strong>Lack of content agility</strong>. Big organizations can’t seem to support fast-changing, fast-adapting content strategies. Have you tried to get a blog post reviewed, approved and published in less than two weeks? I’ve seen exceptions, but in most organizations, two weeks is wildly optimistic. That doesn’t kill content strategy, but it sure wounds it.</li>
<li><strong>Slow development turnaround</strong>. I’ve already <a href="http://searchengineland.com/how-to-get-the-it-team-on-your-side-113834">whined enough</a> about development turnaround times. You get it.</li>
<li><strong>Fiefdoms. </strong>Teams end up silo’ed. The marketing department breaks up into separate content, e-commerce and social media teams. Their paths never cross again. At that point, a synchronized <span class="caps">SEO</span> plan requires Kissinger-esque diplomacy.</li>
<li><strong>Lack of patience</strong>. At the same time, C-level executives and vice presidents want to see fast results. They often want results faster than their small business counterparts. Pressure from the board and from bosses makes for more pressure and shorter honeymoons. So you’re hobbled by bureaucracy <em>and</em> have less time to get results.</li>
<li><strong>Organizational clarity</strong>. Top company priorities aren’t always clear. That makes it very difficult to place <span class="caps">SEO</span> within the hierarchy of goals. Which makes marketing meetings look like an Orwellian barnyard.</li>
<li><strong>Access to data</strong>. Sadly, I’ve seen big, Fortune 2000 organizations where the marketing team can’t get access to basic Web traffic data. I’ve seen many more where simple adjustments to goal-tracking take months. Combine that with data over-dependence and lack of patience, and you’ve got head-exploding contradictions.</li>
<li><strong>Risk aversion</strong>. Got a great, edgy content idea? Good luck getting it approved. Enterprise managers are justifiably shy about pushing the envelope when it comes to the brand.</li>
<li><strong>Team stability</strong>. Average tenure for a <span class="caps">CMO</span> is about seven months. Average tenure for an enterprise marketing team member? One year. That makes continuity difficult, and <span class="caps">SEO</span> is all about long-term planning.</li>
<li><strong>The confusion magnifier</strong>. You’ve finally gotten permission to start a serious site-speed improvement campaign. Just as you’re about to adjourn the meeting, someone pipes up with “<em>I heard we can just buy some links! Why don’t we just do that</em>.” The larger the group, the greater the chance for chaos.</li>
</ol>
<p>I could make a board game out of all this. But you get the point: enterprise-size organizations have some big Internet marketing and <span class="caps">SEO</span> disadvantages. It’s an uphill battle.</p>
<h2>The Good News</h2>
<p>With all this, I still love working on enterprise gigs. Big organizations have more resources, access to more content, more pages and bigger brands. Small changes can have a huge impact. And, now and then, you get to do stuff that makes a brand dominant in the SERPs.</p>
<p>And small companies have their own issues: resource constraints, wildly changing expectations and lack of long-range planning make them a whole other kind of challenge.</p>
<p>So, I’d never say “ignore enterprise clients.” <em>Au contraire</em>.</p>
<p>My real point: enterprise <span class="caps">SEO</span> is subject to the same challenges every other enterprise initiative faces. If you get a shot at a big-time gig, grab it with both hands. But, learn how to blaze a trail for your whole organization.</p>
<h2>What To Do To Fix It</h2>
<p>A few quick tips, learned from hard trial-and-error:</p>
<ol>
<li>Above all, set reasonable expectations.</li>
<li>Don’t scream and yell. You’ll rarely get a good response by throwing a tantrum. Always be diplomatic, and chip away at issues a bit at a time. Keep a punching bag in your office for stress relief.</li>
<li>Build relationships before you need them. It’s hard to build a good relationship under duress. Get to know the development team. Schedule a monthly lunch with the creative group. Network. You might even enjoy yourself.</li>
<li>Educate like crazy. Whatever you have to do, get folks to attend regular education sessions. Use video, or an internal blog, or in-person training. Bribe them with food.</li>
</ol>
<p>Sorry, there aren’t any easy answers. But, enterprise <span class="caps">SEO</span> can be a blast, if you understand the special requirements of big organizations.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/10-reasons-enterprise-seo-is-trouble-and-4-ways-to-make-it-work-139624/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>6 Ways To Shatter The Ceiling With An Enterprise Site Quality Audit</title>
		<link>http://searchengineland.com/shatter-the-ceiling-with-an-enterprise-site-quality-audit-136667</link>
		<comments>http://searchengineland.com/shatter-the-ceiling-with-an-enterprise-site-quality-audit-136667#comments</comments>
		<pubDate>Mon, 22 Oct 2012 16:51:34 +0000</pubDate>
		<dc:creator>Ian Lurie</dc:creator>
				<category><![CDATA[Channel: SEO]]></category>
		<category><![CDATA[Enterprise SEO]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=136667</guid>
		<description><![CDATA[Enterprise SEO has always emphasized visibility, authority and relevance. If you’re optimizing a site with more than 10,000 pages, you now need a streamlined way to audit site quality. Quality matters, and it matters even more on large sites, because you can repeat the same issues so many times. That drags down your entire site. [...]]]></description>
				<content:encoded><![CDATA[<p>Enterprise <span class="caps">SEO</span> has always emphasized visibility, authority and relevance. If you’re optimizing a site with more than 10,000 pages, you now need a streamlined way to audit site <em>quality</em>.</p>
<p>Quality matters, and it matters even more on large sites, because you can repeat the same issues so many times. That drags down your entire site.</p>
<p>Here’s what I include in any large site quality audit:</p>
<h2>1.  Check For Busted Links</h2>
<p>Well, duh. Hopefully I don’t have to write about this.</p>
<p>Do make sure you’re checking <em>both</em> onsite and outbound links, though.</p>
<h2>2.  Check For Duplicate Content</h2>
<p>Again, duh. You can use Google to do this with a site: search, or use a tool like Screaming Frog. Distilled has a <a href="http://www.distilled.net/blog/seo/using-seo-spider-data-in-excel3/">great tutorial on analyzing crawl data in Excel</a> that gives you everything you need.</p>
<h2>3.  Look For Typos</h2>
<p>If you can scrape site pages or get an export of your site’s content, run them through a grammar/spelling error checker, like <a href="http://www.afterthedeadline.com/api.slp">After The Deadline</a>.</p>
<p>I don’t necessarily trust this kind of automated stuff, but no one’s going to proofread 4,000 pages about server software. Automated is better than nothing, and we know for certain Google quality raters look at this stuff. It makes sense that Google would do the same thing algorithmically.</p>
<h2>4.  Check Reading Grade Level</h2>
<p>I know: Grade level? <span class="caps">WTH</span>? Bear with me.</p>
<p>The reading grade level itself doesn’t matter. But huge fluctuations in grade level from one page to the next may hint at:</p>
<ul>
<li>Near-duplicate content: Many times, writers stuck with rewriting existing content raise/lower the grade level of the content.</li>
<li>Writing quality problems: If one page is written at a graduate level, and the next is written at a 7th-grade level, someone may have caught thesaurus-itis or thrown in a lot of run-on sentences.</li>
</ul>
<p>Again, if you can scrape site pages or get a data ‘dump’ of all content, you can run them through a grade level assessment. There are lots of code snippets out there that’ll let you do it, or you can learn to calculate <a href="http://en.wikipedia.org/wiki/Flesch%E2%80%93Kincaid_readability_test">Flesch-Kincaid readability</a> on your own.</p>
<h2>5.  Assess Purpose</h2>
<p>One of the top issues Google calls out in their quality rater guidelines is ‘purpose.’ Pages with ‘clear purpose’ get higher ratings than pages with a lack of purpose.</p>
<p>That doesn’t mean you should have each page start with “The purpose of this page is…”</p>
<p>It <em>does</em> mean it every page should have a clear reason for existence. Which makes you groan, I best—exactly how are you going to check 150,000 pages for clarity of purpose?</p>
<ol>
<li>First, do it in small chunks, and start with pages that are already generating organic traffic, but could rank higher for their terms.</li>
<li>Second, keep track of pages you’ve checked, so you don’t have to duplicate effort.</li>
<li>Third, use your crawler! Export title tags and headings. Pop them all into a spreadsheet and zip down the list. If the title/heading tells you exactly why you’d want to read that page, sweet! You’re all set. If the title/heading read like Shakespeare did when you were 13, you need to check that page.</li>
<li>Fourth, look at bounce rates. Pages with bounce rates far above your site average may be unclear.</li>
</ol>
<h2>6.  Look For Near-Duplicate Content</h2>
<p>You know that duplicate content is bad. You know that the best solution is to fix it. What you may not know is that near-duplication is bad, too.</p>
<p>Please <em>do not</em> ask me ‘how much duplication is ok?’ It makes me want to use vise-grips on my own brain. Assume near-duplication is a scale, like this:</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-136668" src="http://searchengineland.com/figz/wp-content/seloads/2012/10/sel-duplicatebadness-600x386.png" alt="" width="600" height="386" /></p>
<p>So more is worse. Less is better.</p>
<p><strong>Find duped supplemental content</strong></p>
<p>The easiest first step for reducing near-dupes: Remove supplemental content. Disclaimers, specifications shared by huge numbers of products and author biographies can all be linked instead of placed on every relevant page.</p>
<p>If you suspect a chunk of supplemental content is duplicated throughout your site:</p>
<ol>
<li>Copy a sentence or three from that content.</li>
<li>Paste it into a text editor.</li>
<li>Put quotes around it.</li>
<li>Add <em>site:www.yoursite.com</em>[space] before the quoted phrase.</li>
<li>Paste the whole thing into Google.</li>
</ol>
<p>The search result should show all pages on your site that have that same phrase. If dozens of pages share content, think about moving the shared stuff to a single, central location and linking instead.</p>
<p><strong>Find rewrites</strong></p>
<p>Ah, the good old days, when men were men and you could spin 250 words into 10 different articles, and Google would rate them all as unique. Them days are gone, sparky. Time to deal with it.</p>
<p>There aren’t any super-easy ways to find rewritten content, but you can automate it. At Portent, we try to save our sanity by:</p>
<ol>
<li>Scraping large numbers of site pages.</li>
<li>Putting the content into a monster database.</li>
<li>Crunching the text, looking for actual duplicate phrases, sentences and paragraphs (that’s the easy stuff).</li>
<li>If it’s really dire, we’ll use a bit of natural language processing to look for structural and semantic matches: If five pages all talk about potatoes, then french fries, then catsup, and then how to mix them up, it’s worth checking (I’m blogging hungry, sorry).</li>
</ol>
<p>This can be a lot of work. But we’ve seen improvement in indexation and content visibility with a determined effort at near-duplicate reduction.</p>
<h2>Quality Matters</h2>
<p>In the last year, I’ve reviewed and audited a few dozen sites of 10,000 or more pages. On some, recommendations led to higher rankings. On others, they didn’t. All were large sites with high visibility, few technical problems and no penalties.</p>
<p>The one difference between them: Content quality.</p>
<p>In every case, the sites had at least 2 of the following problems:</p>
<ol>
<li>Thousands of pages of rewritten content;</li>
<li>Hundreds of pages of duplicate content;</li>
<li>Really bad writing;</li>
<li>Utterly purposeless writing, clearly keyword-stuffed and placed on pages for rankings.</li>
</ol>
<p>Quality matters. Tackle it and you can shatter the ceiling on your organic search traffic.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/shatter-the-ceiling-with-an-enterprise-site-quality-audit-136667/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Using Share Of Voice To Measure SEO Results</title>
		<link>http://searchengineland.com/using-share-of-voice-to-measure-seo-results-133529</link>
		<comments>http://searchengineland.com/using-share-of-voice-to-measure-seo-results-133529#comments</comments>
		<pubDate>Mon, 24 Sep 2012 16:40:07 +0000</pubDate>
		<dc:creator>Ian Lurie</dc:creator>
				<category><![CDATA[Channel: SEO]]></category>
		<category><![CDATA[Enterprise SEO]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=133529</guid>
		<description><![CDATA[Sometimes the biggest problem for any marketer is language: communicating results in a way that makes sense to your boss/client. Nowhere is that more true than for SEOs. We talk about rankings, but we know rankings mean diddley squat. We point at ROI, but no one believes us. We try to lobby for changes like [...]]]></description>
				<content:encoded><![CDATA[<p>Sometimes the biggest problem for any marketer is language: communicating results in a way that makes sense to your boss/client. Nowhere is that more true than for SEOs.</p>
<p>We talk about rankings, but we know rankings mean diddley squat.</p>
<p>We point at <span class="caps">ROI</span>, but no one believes us.</p>
<p>We try to lobby for changes like text-based navigation, but we’re told &#8220;We can’t risk the brand!&#8221;</p>
<p>There’s a better way, particularly for any <span class="caps">SEO</span> geek in an enterprise: share of voice (SOV).</p>
<h2>What’s Share Of Voice?</h2>
<p>In classic marketing and PR, share of voice is the number of times your brand is mentioned in relevant conversations, divided by the total number of conversations on that topic. Measuring <span class="caps">SOV</span> back in the Dark Ages of 1993 meant a lot of guessing, and very little math. In some cases, I literally measured column inches in publications and then divided my clients’ column inches by the total. Seriously. I’m not making this up.</p>
<p>Why did folks demand <span class="caps">SOV</span> data? They’re not dumb. <span class="caps">SOV</span> is one of the only ways to measure performance across entire channels, or in cases where you need to track exposure.</p>
<p>For example: my client sells anvils and buys a sponsorship on a TV cartoon. She cares about sales, clearly, but also wants to see how having a coyote repeatedly smashed by those anvils will grow her brand. That could lead to sales later.</p>
<p>So, this isn’t a straight-up <span class="caps">ROI</span> measurement. Brand impact matters, too. The first datapoint we’ll have there is share of voice. I can compare total TV time dedicated to anvil-ertising to the total time she’s purchased:</p>
<p><div id="attachment_133530" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-133530 " src="http://searchengineland.com/figz/wp-content/seloads/2012/09/shareofvoice1.png" alt="" width="550" height="319" /><p class="wp-caption-text">Share of voice formula</p></div></p>
<p>Voila! Share of voice.</p>
<h2><span class="caps">SOV</span> + <span class="caps">SEO</span> = A++</h2>
<p>If you bring share of voice into enterprise <span class="caps">SEO</span>, you get two huge benefits:</p>
<ul>
<li>You’re speaking your client’s language. If an enterprise marketer, or anyone working with enterprise marketers, doesn’t know what share of voice is, measure their office chair. You’ll take over soon enough.</li>
<li>You’re connecting exposure to sales. You already track sales over time (I hope). Now, you can track exposure over time. That helps you spot trends and, if you collect enough data, connect the dots between <span class="caps">SEO</span> visibility and overall sales. You’re adding another attribution metric.</li>
</ul>
<p>Great! Now, how the heck do you actually measure <span class="caps">SOV</span>?</p>
<h2>Getting <span class="caps">SOV</span> Data</h2>
<p>There are a lot of different formulas out there. Some <span class="caps">SEO</span> toolsets, like Sycara and Brightedge, have built-in <span class="caps">SOV</span> analysis. They create pretty graphs like this:</p>
<p><div id="attachment_133531" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-133531 " src="http://searchengineland.com/figz/wp-content/seloads/2012/09/shareofvoice2.png" alt="Sycara SOV graph" width="600" height="486" /><p class="wp-caption-text">Sycara SOV graph</p></div></p>
<p>Which is great, and I strongly recommend using one of those tools. Because calculating <span class="caps">SOV</span> yourself will be painful at best. At its simplest, <span class="caps">SOV</span> is <em>impressions received for a topic/total impressions for that topic</em>. Sounds easy, until you consider:</p>
<ol>
<li>This is about <em>impressions</em>, not <em>clicks</em>. That’s because I can’t easily track clicks across the entire channel. I know <em>my</em> click traffic based on a phrase. I don’t know my competitors’.</li>
<li>Search rankings change based on personalization, geography, and Google’s mood.</li>
<li>Different rankings receive a different share of impressions.</li>
<li>Share of impressions changes based on the topics.</li>
<li>Merely measuring a single phrase won’t work. You need to measure as many of the top phrases relating to a topic as possible. The more you track, the more accurate your <span class="caps">SOV</span> number.</li>
</ol>
<p>If you want to see just how complicated this gets, check out <a href="http://www.billhartzer.com/pages/brightedge-awarded-patent-for-operationalizing-seo/">Brightedge’s patent for <span class="caps">SOV</span> analysis</a>.</p>
<p>My recommendation: let a company that’s already figured it out do the <span class="caps">SOV</span> calculation for you. It’s worth every penny</p>
<h2>Using <span class="caps">SOV</span> Data</h2>
<p>Enough complaining! Here’s how you can use <span class="caps">SOV</span> data. It’s pretty slick.</p>
<p>Say my client runs an anvil blog. I’m tracking, oh, 5,000 keywords, and that doesn’t even scrape the surface of their search profile. But, if I give them a weekly report for those 5,000 keywords, they’ll slap me.</p>
<p>I need an aggregate metric that I can track over time: <span class="caps">SOV</span>.</p>
<p>I take the 500 phrases relating to ‘anvil shows’ and put them into a single topic. Then, I track share of voice over time. I also track share of voice of their top two competitors. That way, I can measure overall progress,<em> and</em> do competitive analysis, with a single metric. And, when my client calls to say &#8220;Lurie, what the hell?!! We’re doing all this content and I can’t tell if that’s what’s driving sales or not!!,&#8221; I can at least provide some evidence:</p>
<p><div id="attachment_133532" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-133532 " src="http://searchengineland.com/figz/wp-content/seloads/2012/09/shareofvoice3.png" alt="" width="600" height="461" /><p class="wp-caption-text">Not my prettiest graph ever, but you get the idea.</p></div></p>
<p>So, even if last-click attribution isn’t capturing all the information, I can still shed some light. And, I can track overall performance in yet another way.</p>
<h2>One Thing…</h2>
<p>Keep in mind that in <span class="caps">SEO</span>, you figure out share of voice based on total queries (impressions), links and/or rankings. True <span class="caps">SOV</span> would measure exposure by tracking action across the entire channel:</p>
<ul>
<li>Clicks on each ranking, regardless of whose site is ranking, in your phrase group</li>
<li>Links that actually generate traffic</li>
<li>Time on site after each click, on each site</li>
</ul>
<p>While we’re at it, I’d also like a tiny microphone implanted in everyone’s left ear, so that we can listen in on actual conversations. Equally possible.</p>
<p>We can only track so much. <span class="caps">SOV</span> based on search rankings is a big improvement over <span class="caps">SOV</span> based on column-inches. And it’s a great additional metric to have on hand.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/using-share-of-voice-to-measure-seo-results-133529/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>What Is In Your Enterprise SEO Toolkit?</title>
		<link>http://searchengineland.com/what-is-in-your-enterprise-seo-toolkit-130997</link>
		<comments>http://searchengineland.com/what-is-in-your-enterprise-seo-toolkit-130997#comments</comments>
		<pubDate>Mon, 20 Aug 2012 20:53:12 +0000</pubDate>
		<dc:creator>Ian Lurie</dc:creator>
				<category><![CDATA[Channel: SEO]]></category>
		<category><![CDATA[Enterprise SEO]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=130997</guid>
		<description><![CDATA[Enterprise SEO ain&#8217;t like the others. As I&#8217;ve said before, simply saying &#8220;I&#8217;m an enterprise SEO!!!&#8221; doesn&#8217;t make you one. You need different tools, and different skills, and a whole different level of diplomatic kung-fu. I lack diplomatic-fu. And skills are always open to debate. But the tools are forever. This is a very incomplete [...]]]></description>
				<content:encoded><![CDATA[<p>Enterprise SEO ain&#8217;t like the others. As I&#8217;ve <a href="http://searchengineland.com/you-know-youre-an-enterprise-seo-if-126028">said before</a>, simply saying &#8220;I&#8217;m an enterprise SEO!!!&#8221; doesn&#8217;t make you one. You need different tools, and different skills, and a whole different level of diplomatic kung-fu.</p>
<p>I lack diplomatic-fu. And skills are always open to debate. But the tools are forever. This is a very incomplete list of the tools you probably want to look at if you&#8217;re responsible for SEO in an organization so big you get lost finding the restroom. No favorites—if it&#8217;s on this list it&#8217;ll do the job nicely:</p>
<h2>Rank Tracking</h2>
<p>For the record, I do <em><strong>not</strong></em> support rank tracking as a success metric. But it&#8217;s a fantastic diagnostic tool, so you gotta do it. My favorite tools are:</p>
<p><a href="http://www.advancedwebranking.com/">Advanced Web Ranking</a>. Great since day 1. AWR is especially useful if you&#8217;re focused on a small set of sites, but want to drill really, really deep into the data. It comes in desktop and server flavors, lets you tune it down to the color assigned each keyword, and it&#8217;s dang speedy.</p>
<p><a href="http://authoritylabs.com">Authority Labs</a>. Has an API and allows for massive tracking sets. It has had a few hiccups of late but continues to be pretty solid.</p>
<p><a href="http://pro.seomoz.org/campaigns">SEOMOZ Campaign Tracking</a>. Lets you track up to 2,000 keywords, and of course dials into all the other nifty SEOMOZ tools. While it doesn&#8217;t have the customizable oomph of AWR (yet) SEOMOZ keeps building stuff out. Definitely worth a look.</p>
<p><a href="http://www.raventools.com">Raven Tools</a>. Also awesome, and pulls in all of Raven&#8217;s other cool tools. If you&#8217;re looking at SEOMOZ, look at Raven, too.</p>
<p><a href="http://www.brightedge.com">BrightEdge</a>. Less well-known, Brightedge tracks lots of rankings, but also includes some other competitive stuff you&#8217;ll want to look at. Super-powerful and super-tunable. Setup lag is annoying (you have to wait a few days after submitting a keyword set) but if you want big-time share of voice analysis, it&#8217;s the winner. It&#8217;s also by far the most expensive of the list.</p>
<p><div id="attachment_131007" class="wp-caption aligncenter" style="width: 580px"><img class="size-full wp-image-131007 " src="http://searchengineland.com/figz/wp-content/seloads/2012/08/shareofvoice.png" alt="Share of voice analysis in Brightedge" width="570" height="328" /><p class="wp-caption-text">Share of voice analysis in Brightedge</p></div></p>
<h2>Link Tracking</h2>
<p>This is one of the few areas where I recommend having multiple tools. Link data differs from one tool to the next, and you need multiple data sources to get a good sampling.</p>
<p><a href="http://www.majesticseo.com">Majestic SEO</a> continues to be an industry standard, with a great API, and a huge dataset. Use it.</p>
<p><a href="http://www.seomoz.org">SEOMOZ</a> is the other standard. Use it or you&#8217;re nuts.</p>
<p><a href="http://ahrefs.com">ahrefs</a> is the new kid on the block. They have some really cool stuff, like the ability to track new link acquisitions. If you&#8217;re paranoid about negative SEO, you want this.</p>
<p><div id="attachment_131004" class="wp-caption aligncenter" style="width: 580px"><img class="size-full wp-image-131004 " src="http://searchengineland.com/figz/wp-content/seloads/2012/08/newlinks-ahrefs.png" alt="" width="570" height="384" /><p class="wp-caption-text">The ahrefs new links report</p></div></p>
<p><a href="http://www.raventools.com">Raven Tools</a> will keep popping up on the list. Raven actually pulls data in from MajesticSEO, then ties it to their other management tools, so it can consolidate for you.</p>
<h2>Statistical Analysis</h2>
<p>If you think links and rankings are enough for you to do, keep your resume handy. You won&#8217;t last long in a serious enterprise. Industrial-strength number-crunching is a must if you want to try to correlate, say, your last content campaign to leads and sales.</p>
<p>Microsoft Excel is universally accepted and used. I&#8217;m betting you know the URL for it, too. I still use Excel for 99% of my analytical needs, and chances are it&#8217;ll handle it all for you, too. Until you&#8217;ve exploited all the tools it contains, don&#8217;t bother with the next two, because you won&#8217;t get much out of &#8216;em.</p>
<p>If you&#8217;re on Linux, consider <a href="http://www.openoffice.org/">Open Office</a>, or R (below), or any number of other toolsets that get increasingly complex and powerful.</p>
<p>That said, <a href="http://www.r-project.org">R</a> is an open-source, free statistical engine and programming language that will let you analyze huge datasets. Companies like <a href="http://www.revolutionanalytics.com">Revolution Analytics</a> and <a href="www.statsoft.com">Statsoft</a> build add-ons and front ends to make it a bit easier and scale it, too. There&#8217;s a pretty steep learning curve, though, so only pick up R if you know you&#8217;ll be doing some industrial-strength stuff.</p>
<p><a href="http://www.sas.com/">SAS</a> is the only other &#8216;pro&#8217; tool I&#8217;ve used. It&#8217;s really, really slick, but again has quite the learning curve. It&#8217;s especially useful if you want to create interactive reports based on super-advanced statistical black belt-edness.</p>
<h2>Data Visualization &amp; Charting</h2>
<p>This category includes structural stuff, like sitemaps, and data presentation.</p>
<p>First off, Excel, R and SAS will all do the job. I&#8217;ve rarely seen visualizations I couldn&#8217;t do in Excel.</p>
<p><div id="attachment_131024" class="wp-caption aligncenter" style="width: 580px"><img class="size-full wp-image-131024 " src="http://searchengineland.com/figz/wp-content/seloads/2012/08/chart.png" alt="Created in Excel" width="570" height="327" /><p class="wp-caption-text">Created in Excel. How much fancier do you really need?</p></div></p>
<p>But other tools will let you customize and prettify in ways you otherwise could not:</p>
<p><a href="http://www.omnigroup.com/products/omnigraffle/">OmniGraffle</a> is the standard for Mac charting. If you&#8217;re on OS X, get it. You can do all manner of relationship diagrams, including site maps, and import outlines or XML to automate a lot of the work. You can also create some pretty nice graphs, but I still prefer Excel.</p>
<p><a href="http://office.microsoft.com/en-us/visio/">Visio</a> is the favorite on the PC. Same capabilities and caveats as OmniGraffle.</p>
<p><a href="http://gephi.org/">Gephi</a> is a super-specialized beast. It lets you visualize relationships, like force-directed diagrams. Worth playing with if you&#8217;re charting out social media data, semantic relationships, or other stuff I can&#8217;t even think of.</p>
<p><a href="http://processing.org/">Processing</a> is a bit hard to explain. Think of it as a designer&#8217;s toolkit for data crunching. You&#8217;ll have to try it to understand, but if you need to present data, and you can&#8217;t find any other tool, Processing can probably do it.</p>
<p><a href="http://www.tableausoftware.com/">Tableau</a> is Windows-only (boo) but man, it&#8217;s awesome. It adds a level of polish that Excel cannot. If you&#8217;re on Windows, you should really take a look.</p>
<p>On Linux, I&#8217;d again look at OpenOffice first, as the simplest of the tools.</p>
<h2>Analytics</h2>
<p>I almost skipped analytics. There are plenty of articles about basic Web traffic analysis tools. But it never hurts to revisit the basics, so:</p>
<p><a href="http://www.google.com/analytics/premium/">Google Analytics</a> now has an enterprise or &#8216;premium&#8217; version that lets you process more data, faster, provides more support, gives you a 99.9% data collection guarantee (still not enough, if you ask me) and provides advanced attribution modeling. Definitely worth a look.</p>
<p><a href="http://www.omniture.com/en/">Adobe Digital Marketing Suite</a> (formerly Omniture) has quite a learning curve but also lets you do a lot with attribution, path analysis and all the basics. An established tool now owned by Adobe, however. Take that as a positive or negative, based on your own experience with the big A.</p>
<p><a href="http://coremetrics.com/">Coremetrics</a>, now owned by IBM (see my note about Omniture, above), is often overlooked but I love their API. Some of their control panels feel like I&#8217;m stuck in 1997, but in e-commerce they&#8217;re really sharp, and often more accurate than other javascript-driven solutions.</p>
<p>These are web-based tools, so no major Linux/Mac/Windows issues.</p>
<h2>Log File Analysis</h2>
<p>You<em> must</em> analyze your site&#8217;s log files. Must, must, must. OK? Now that that&#8217;s settled, here are my favorite tools:</p>
<p><a href="http://unixhelp.ed.ac.uk/CGI/man-cgi?grep">GREP</a> is the easiest way to start. Don&#8217;t let the help page scare you. If you&#8217;re on Windows, install <a href="http://www.cygwin.com/">CYGWIN</a> and go for it. On Linux or OS X, it&#8217;s already built in.</p>
<p><a href="http://www.splunk.com">Splunk</a> wins for the best name. It can also analyze everything from a server log file to randomly-sorted Nirvana lyrics. It. Can. Do. Anything. I love it. You can process up to 500mb of data per day for free. If you have more than that to process, it may give your CFO a heart attack.</p>
<p><a href="http://www.sawmill.net">Sawmill</a> is the venerable standard. It&#8217;s been around a long time, has a fantastic list of plugins and is super-configurable. As an enterprise tool, it&#8217;s cheaper than Splunk, but not by much. A five-profile enterprise install will run you $1,750. Still, I love Sawmill. I&#8217;d be sad if I didn&#8217;t have it.</p>
<h2>Monitoring Tools</h2>
<p>You can ask your IT team to alert you when the robots.txt file changes, sure. But don&#8217;t stake your career on it. A few low-cost monitoring tools you can use to do the same thing:</p>
<p><a href="http://www.serverdensity.com">Server Density</a> tracks MD5 hashes of any file or even a chunk of any file on your site, so you&#8217;d know right away if something changed. Plus, you can track up- and response time.</p>
<p><div id="attachment_131028" class="wp-caption aligncenter" style="width: 580px"><img class="size-full wp-image-131028 " src="http://searchengineland.com/figz/wp-content/seloads/2012/08/robots-monitor.png" alt="who changed our robots.txt?" width="570" height="369" /><p class="wp-caption-text">Hey! Who changed our robots.txt? Report from Server Density</p></div></p>
<p><a href="http://www.pingdom.com">Pingdom</a> does uptime and response time monitoring. I haven&#8217;t tried to use it to track file changes, though. Comment below if you have any experience with that.</p>
<p><a href="http://www.loggly.com">Loggly</a> is a cloud-based logging tool. They take a different approach, letting generate custom-ish log data and send it to Loggly&#8217;s storage. I haven&#8217;t used it enough to speak to stability, but it&#8217;s super-tweakable, which I love.</p>
<h2>So Much More&#8230;</h2>
<p>There&#8217;s a lot more, of course: competitive analysis, custom solutions you script yourself and who-knows-what-else. I&#8217;ll write about those in future columns, so if you have ideas, list &#8216;em below.</p>
<p>Happy toolkit-building!</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/what-is-in-your-enterprise-seo-toolkit-130997/feed</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Forget The Other Type Of Enterprise Search</title>
		<link>http://searchengineland.com/dont-forget-the-other-type-of-enterprise-search-128489</link>
		<comments>http://searchengineland.com/dont-forget-the-other-type-of-enterprise-search-128489#comments</comments>
		<pubDate>Mon, 30 Jul 2012 15:54:53 +0000</pubDate>
		<dc:creator>Ian Lurie</dc:creator>
				<category><![CDATA[Channel: SEO]]></category>
		<category><![CDATA[Enterprise SEO]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=128489</guid>
		<description><![CDATA[As SEOs, we focus on external customers: Getting more people outside an organization to sign up, buy, read, follow and otherwise participate. We don’t invest a lot of effort at helping internal customers: Colleagues at our own company who need help finding critical information, but end up grinding their teeth after 10 minutes lost in [...]]]></description>
				<content:encoded><![CDATA[<p>As SEOs, we focus on external customers: Getting more people outside an organization to sign up, buy, read, follow and otherwise participate. We don’t invest a lot of effort at helping internal customers: Colleagues at our own company who need help finding critical information, but end up grinding their teeth after 10 minutes lost in the company’s ‘search’ tool.</p>
<p>It’s time for a career tune-up, everybody. As an <span class="caps">SEO,</span> you have a <em>lot</em> to offer in the field of enterprise search. Here’s how you can help, and how you can capitalize on internal needs.</p>
<h2>Content Collection</h2>
<p><a href="http://searchengineland.com/figz/wp-content/seloads/2012/07/intranet-enterprise-search.jpg"><img class="alignright size-medium wp-image-128915" style="margin: 10px;" title="intranet-enterprise-search" src="http://searchengineland.com/figz/wp-content/seloads/2012/07/intranet-enterprise-search-300x225.jpg" alt="" width="240" height="180" /></a>Enterprise search systems collect information through content collection, aka <em>content ingestion</em> (which always sounds like a stomach problem to me). This can happen using:</p>
<ol>
<li>A crawler/spider, just like the search engines we’re all used to;</li>
<li>A direct connection to a source control or document management system;</li>
<li>A host of other Rube Goldberg contraptions I won’t even try to describe.</li>
</ol>
<p>If your company’s search tool uses a crawler, a useful system requires content visibility. You probably know a thing or two about that, right?</p>
<p>If it uses a direct connection, the biggest issue is content preparation. See the next section.</p>
<p>If your company uses some bizarre technology originally coded on punch cards and later updated using a combination of Fortran and <span class="caps">COBOL</span>, it might be time to consider something less… steam-powered. If that’s the case, you can offer a lot regarding current tools and algorithms, and help evaluate replacements.</p>
<h2>Content Preparation</h2>
<p>Most internal search tools rely on a mix of metadata and raw text indexing. That means everyone providing content to the tool must follow best practices. Otherwise, the search engine can’t accurately index and rank what it finds.</p>
<p>Someone has to go out and teach those best practices: How to write a good document title, a decent summary, and otherwise prep content for indexing.</p>
<p>That’s one more place you can help. A lot. In 20+ years’ work on various intranets, document libraries and filing systems, I’ve seen, oh, let’s say <em>zero</em> organizations that teach that kind of content prep.</p>
<h2>Testing &amp; Analytics</h2>
<p>Every enterprise search tool includes reporting. You can use this reporting to see which documents get found most often for what queries. You can also use it to test different search results layouts, delivery methods and tweaks to indexing.</p>
<p>The older your internal search tool, the more likely it is that everyone at your company has forgotten where this data lives. Prepare to do a little research. But there won’t be many people better qualified than you to review this search data and draw conclusions about search quality.</p>
<p>Check out query reports and learn what folks in your company most want to find. Find the content that’d best answer their questions. Then, if they queries and the results don’t match (they probably won’t) figure out how to get your search tools in sync.</p>
<h2>Getting Started: Don’t Be A Jerk</h2>
<p>Some large enterprises have entire teams of information scientists working on internal search tools. Many more buy a search appliance, plug it in, and then promptly forget about it.</p>
<p>Don’t assume one or the other—ask nicely, first. Remember how you feel when a client brings in another <span class="caps">SEO</span> who treats you like an idiot? Remember how much you <em>didn’t</em> want to cooperate with them?</p>
<p>You want to avoid that response with the current internal search team. Especially since they’ve been doing this a lot longer than you have, and likely know a lot more than you do about search.</p>
<p>Talk to your boss, first. Start with a small idea—something where you can help improve internal search, just a little. If that goes well, you can do more, later. Don’t be pushy.</p>
<blockquote>I just advised you &#8220;Don’t be pushy&#8221;. Me. The guy once labeled ‘Most likely to start a fist fight in a meditation session.’ Both my cats just snickered at me. So as always, take my advice with a grain of salt.</blockquote>
<h2>Prepare For Much Venting</h2>
<p>My company is all of 35 people. We’re not an enterprise. But if I ask each person, I’ll get 35 reasons why our internal search tools suck. If and when you start researching current internal search problems, you’ll hear a lot about what stinks, and not much about what works.</p>
<p>Listen and record, but don’t necessarily throw out the current system. No one ever thinks an enterprise search system is good—at best, you can hope they hate it only mildly.</p>
<p>Huh, that sounds a lot like being an <span class="caps">SEO</span>. See? You’re more qualified than you think!</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/dont-forget-the-other-type-of-enterprise-search-128489/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You Know You&#8217;re An Enterprise SEO If&#8230;</title>
		<link>http://searchengineland.com/you-know-youre-an-enterprise-seo-if-126028</link>
		<comments>http://searchengineland.com/you-know-youre-an-enterprise-seo-if-126028#comments</comments>
		<pubDate>Mon, 02 Jul 2012 15:57:30 +0000</pubDate>
		<dc:creator>Ian Lurie</dc:creator>
				<category><![CDATA[Channel: SEO]]></category>
		<category><![CDATA[Enterprise SEO]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=126028</guid>
		<description><![CDATA[What the hell is ‘Enterprise SEO’? Most people use the phrase when: Angling for a raise. Selling me their SEO widget. Trying to re-define their now-banned content spinning service. Those aren’t good criteria. So, I’m tackling the question: What is enterprise SEO? Are you an enterprise SEO professional? Here’s a test. Check off each item, [...]]]></description>
				<content:encoded><![CDATA[<p>What the hell is ‘Enterprise <span class="caps">SEO</span>’? Most people use the phrase when:</p>
<ol>
<li>Angling for a raise.</li>
<li>Selling me their <span class="caps">SEO</span> widget.</li>
<li>Trying to re-define their now-banned content spinning service.</li>
</ol>
<p style="text-align: left;">Those aren’t good criteria. So, I’m tackling the question: What <em>is</em> enterprise <span class="caps">SEO</span>? Are <em>you</em> an enterprise <span class="caps">SEO</span> professional?</p>
<p>Here’s a test. Check off each item, adding up points as you go. Then see the scoring at the bottom:
<a href="http://searchengineland.com/figz/wp-content/seloads/2011/04/quiz2.jpg"><img class="size-medium wp-image-71904 aligncenter" title="quiz2" src="http://searchengineland.com/figz/wp-content/seloads/2011/04/quiz2-300x107.jpg" alt="" width="300" height="107" /></a></p>
<h2>1.  You Don’t Control Site Changes</h2>
<p>Your site recommendations shuttle between at least 3 e-mail inboxes before implementation. You say a silent prayer every time you submit an <span class="caps">SEO</span> tweak. And your last three title tag changes came back rejected because the game of <span class="caps">SEO</span> telephone morphed ‘title tag’ into ‘tidal hag’.</p>
<p>If you read this and then nodded in agreement, <em>+20 points.</em></p>
<h2>2.  Content Changes Have To Go Through A Branding Team</h2>
<p>Most of the time, branding teams make great <span class="caps">SEO</span> partners. They know what makes folks buy. They research little turns and twists of phrase that can turn a one-time customer into a loyal community member. And they’ve probably fought a lot of the battles over wording and content that you’ll face.</p>
<p>But now and then, they run amok. Ever heard something like this?: Never mind what folks are buying. We make bicycle stabilization and traction surfaces, dammit, not tires.</p>
<p>Nurture your relationship with the branding team, or you’ll live to regret it.</p>
<p>If you report to a branding team, <em>+10 points</em>.</p>
<p>If you take the branding team to lunch once a month, <em>+5 point</em> diplomacy bonus.</p>
<h2>3.  The Legal Department Is Watching</h2>
<p>This is a uniquely American issue, I suspect. Americans are sue-happy. Presidential candidates might start suggesting National Lawsuit Month as an economic stimulus strategy.</p>
<p>OK, that last bit isn’t true. But in the <span class="caps">USA</span>, companies get sued. A lot. So they hire lawyers. A lot.</p>
<p>If your content, social media and linking strategies are subjected to legal scrutiny, <em>+10 points.</em></p>
<h2>4.  You’re A Diplomat</h2>
<p>Here’s a little role play:</p>
<p style="padding-left: 30px;"><em><strong>You:</strong></em> We should change our home page title tag to start with ‘Bicycle tires’.<BR>
<em><strong><em>Other: </em></strong></em>No can do, sorry.</p>
<p style="padding-left: 30px;"><em><strong>You:</strong></em>  Why?<BR>
<em><strong><em>Other: </em></strong> </em>Our <span class="caps">CEO</span> likes to see the company name first.</p>
<p style="padding-left: 30px;"><em><strong><span class="caps">You</span>:</strong></em> But our <span class="caps">CEO</span> also likes profits, right?<BR>      
<strong><em>Other: </em></strong>Yes, but this won’t help profits.</p>
<p style="padding-left: 30px;"><strong><em>You: </em></strong> But… we rank #2 for ‘bicycle tires’. If we change the title tag, we might move up. The extra traffic…<BR>
<strong><em>Other: </em></strong>Sorry, but you can’t prove that. Until you can, we can’t make the change.</p>
<p>How would you handle this?</p>
<ul>
<li>Scream, grab a beer from the fridge, pop the emergency slide and leave. <em>-10 points</em></li>
<li>Nod quietly, while imagining how it’d feel to shove someone out a 10th story window. <em>-5 points</em></li>
<li>Laugh, thinking the person is kidding (I did this once). +<em>0 points</em></li>
<li>Explain, calmly, why the title tag change would help. <em>+5 points</em></li>
<li>Write a detailed 2-page explanation of clickthru rates vs. ranking, the title tag’s importance to ranking, and the potential earnings impact. <em>+10 points</em></li>
<li>Produce the above report, since you knew this would happen and already wrote it. <em>+20 points</em></li>
</ul>
<p><strong>Note:</strong> Do <em>not</em> come to me for advice on this topic. On a diplomacy scale, I rank somewhere between a manic wolverine and Joe Biden.</p>
<h2>5.  You’ve Got Complex Infrastructure</h2>
<p>If your site uses a content management system (<span class="caps">CMS</span>), <em>+5 points.</em></p>
<p>If your site uses two content management systems,<em> +10 points</em>.</p>
<p>If your site uses:</p>
<ul>
<li>Multiple CMS’s;</li>
<li>An e-commerce platform;</li>
<li>A discussion forum;</li>
<li>Three different blogging packages set up by the last three CMOs (all with an average 2-month tenure); and</li>
<li>An undocumented custom store location tool that was written in <span class="caps">PERL</span> 1 in 2000 and crashes if a store address has a space in it.</li>
</ul>
<p><em>+30 points.</em></p>
<h2>6.  There’s Content Everywhere</h2>
<p>Enterprise <span class="caps">SEO</span> isn’t just about challenges. There are some huge advantages, too. Big companies spawn heaping mounds of content:</p>
<ul>
<li>Sales training;</li>
<li>Product documentation;</li>
<li>Technical specifications;</li>
<li>Knowledge bases;</li>
<li>Marketing copy; and</li>
<li>All other content imaginable.</li>
</ul>
<p>Harvest all that stuff and you’ve got an <span class="caps">SEO</span> powerhouse.</p>
<p>If you’ve got more content resources than hours in a year, <em>+20 points.</em></p>
<h2>7.  Size Doesn’t Matter (As Much As You Think)</h2>
<p>Note what I left out of this test: Site size. Here’s why: I’ve seen plenty of 2-person companies with 100,000+ <span class="caps">URL</span> websites and none of the challenges/advantages I listed above. And, I’ve worked with many corporations that had anemic 50-page websites.</p>
<p>Enterprise <span class="caps">SEO</span> isn’t so much about big sites as it’s about big teams, big resources and complex challenges.</p>
<p>If you already knew this, <em>+100 points.</em> You’re an enterprise <span class="caps">SEO</span>.</p>
<h2>Score Yourself!</h2>
<p>Check my handy-dandy scoring matrix:</p>
<ul>
<li>0-30 points: No enterprise <span class="caps">SEO</span> for you!</li>
<li>31-60 points: In the ballpark. Chances are, you’ve started the enterprise thing.</li>
<li>61-100 points: You’re a battle-scarred enterprise <span class="caps">SEO</span> veteran.</li>
<li>100+ points: Boba Fett gives you a respectful nod. You are an enterprise <span class="caps">SEO</span> machine.</li>
</ul>
<h2>Where This Post Came From (I Go Edgar Allen Poe)</h2>
<p>Once a month, I write this column. My topic selection goes something like this:</p>
<ul>
<li>Have I written about this <span class="caps">SEO</span> challenge/problem/bugaboo before?</li>
<li>Is it unique to large organizations?</li>
<li>Does it make me grind my teeth down to small, flat, domino-shaped nubs?</li>
</ul>
<p>Then I type furiously until done.</p>
<p>But every time, there’s a teeny voice in the back of my head. And it keeps getting louder, saying:</p>
<p>&#8220;Why is this ‘enterprise’ <span class="caps">SEO</span>?&#8221;</p>
<p>It’s my own personal Telltale Heart. Louder and louder, until finally, this week, as I sat and stared at my keyboard, I shrieked, &#8220;Enough already! I’ll tackle the question!&#8221;</p>
<p>And so, I wrote this list.</p>
<p>Leave your comments below, as always.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/you-know-youre-an-enterprise-seo-if-126028/feed</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>Why Enterprise SEO Shouldn&#8217;t Focus Solely On Keywords</title>
		<link>http://searchengineland.com/why-enterprise-seo-shouldnt-focus-solely-on-keywords-122656</link>
		<comments>http://searchengineland.com/why-enterprise-seo-shouldnt-focus-solely-on-keywords-122656#comments</comments>
		<pubDate>Tue, 29 May 2012 19:44:44 +0000</pubDate>
		<dc:creator>Ian Lurie</dc:creator>
				<category><![CDATA[Channel: SEO]]></category>
		<category><![CDATA[Enterprise SEO]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=122656</guid>
		<description><![CDATA[I’ve got a joke for ya: What has 250,000 URLs, a content team of 15 people and three target keywords? Your website. I understand SEO’s keyword obsession. It’s hard to let go, and a nice, high ranking for a really juicy phrase tends to justify budget. But, as I’ve written before, there’s more to justifying [...]]]></description>
				<content:encoded><![CDATA[<p>I’ve got a joke for ya: What has 250,000 URLs, a content team of 15 people and three target keywords?</p>
<p>Your website.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-122659" src="http://searchengineland.com/figz/wp-content/seloads/2012/05/kw-list-ship.jpg" alt="But... we had a keyword list?!" width="490" height="325" /></p>
<p>I understand SEO’s keyword obsession. It’s hard to let go, and a nice, high ranking for a really juicy phrase tends to justify budget. But, as I’ve <a href="http://searchengineland.com/the-challenge-of-justifying-enterprise-seo-110374">written before</a>, there’s more to justifying enterprise <span class="caps">SEO</span> than keywords alone.</p>
<p>In fact, in enterprise <span class="caps">SEO</span>, I’d say keywords should be the<em> last thing you look at.</em> You can get your biggest, best wins with a a general focus on site visibility, content clarity and site performance. Here’s why:</p>
<h2>Someone’s Already Picked Your Keywords</h2>
<p>Most enterprises have been around a while. If you fit that description, you already <em>have</em> a brand. Your audience already uses certain non-branded phrases to find you. And there are hundreds or thousands more long-tail terms that they’re using.</p>
<p>But you’re not getting any traffic from those terms, because you don’t appear. See &#8220;You’ve got bigger problems&#8221; below.</p>
<h2>You’ve Got Bigger Problems</h2>
<p>Show me a website larger than 10,000 pages, and I’ll show you a site with:</p>
<ul>
<li>Massive duplication</li>
<li>Thousands of un-crawled pages</li>
<li>Poor page load times</li>
<li>Improper <a href="http://searchengineland.com/the-enterprise-seo-guide-to-response-codes-107821">response code configuration</a></li>
<li>Broken external and internal links</li>
<li>Utterly nondescript, probably duplicate title tags on at least 10% of all pages</li>
<li>Content slightly less compelling than <a href="http://www.imdb.com/title/tt0093278/" target="_blank">Ishtar</a> (the movie, not the deity)</li>
</ul>
<p>So far this year, we’ve crawled and tested 10-15 sites I’d qualify as ‘enterprise’. Every one of them had the problems above. Address any three of them, and you build organic traffic.</p>
<p><div id="attachment_122658" class="wp-caption aligncenter" style="width: 598px"><img class="size-full wp-image-122658 " src="http://searchengineland.com/figz/wp-content/seloads/2012/05/sears-3021.gif" alt="sears 302 redirect. tsk." width="588" height="237" /><p class="wp-caption-text">If Sears wants to rank for dozens of &#39;automotive&#39; phrases, they should fix this 302.</p></div></p>
<p>The bigger the site, the more <a href="http://searchengineland.com/easy-seo-wins-for-big-sites-119937">easy wins</a> you’ve got. Go after those first — each easy win boosts every page’s <span class="caps">SEO</span>-readiness just a bit. Multiply that by every page on your site = Big Wins.</p>
<h2>Keyword Selection In A Large Organization = Herding Angry Cats</h2>
<p>Have you ever tried to get 5+ product teams to agree on a keyword set?</p>
<p>If you want a preview:</p>
<ol>
<li>Get four grumpy, hungry alley cats.</li>
<li>Hold them in opposite, equidistant corners of the room.</li>
<li>Put a nice big chunk of tuna in the middle.</li>
<li>Let go of the cats.</li>
</ol>
<p>When you send out the fateful &#8220;We’re starting an <span class="caps">SEO</span> campaign. Please send keywords.&#8221; e-mail, it’s like that, only uglier.</p>
<p>Everyone wants their ‘share’ of the keyword ‘pie’. Product managers who have poo-poo’ed the idea of <span class="caps">SEO</span> for years suddenly buy you lunch. Sales teams start calling you complaining they lost a sale because the company isn’t #1 for ‘Failover hardware with bright green enclosures.’</p>
<p>As difficult as it may be to convince your VP that yes, shaving 1 second off site-wide page load times is worth it, getting everyone in a large organization to agree on a keyword set is even harder.</p>
<p>Don’t say I didn’t warn ya.</p>
<h2>Keywords Are Getting Harder To Track</h2>
<p>With Google’s lovely <a href="http://searchengineland.com/encrypted-search-terms-hit-google-analytics-99685">not provided</a> rollout, it got a whole lot harder to track keyword-specific traffic.</p>
<p>You <em>can</em> track:</p>
<ul>
<li>Leads from organic search</li>
<li>Overall traffic from organic search</li>
<li>SEO’s contribution to the bottom line</li>
</ul>
<p>And those metrics are what really matter.</p>
<h2>It’s About Business Objectives, Not keywords</h2>
<p>Most important: <em>Enterprise <span class="caps">SEO</span> is not about a few fat head keywords</em>. It’s about visibility and discoverability in the long tail. That’s the best path to a natural rise in the rankings for relevant ‘head’ terms, anyway.</p>
<p>Your efforts help a page on your site rank for ‘legacy COBOL integration’. But they do more than that: They help you optimize for &#8216;COBOL integration&#8217; and &#8216;integration&#8217; at the same time. You get the early long-tail gains while building for more competitive terms later on. Trying to optimize your homepage for ‘integration’ is like emptying the Pacific Ocean with a thimble. You won’t make much progress.</p>
<p>Enterprise <span class="caps">SEO</span> is all about business objectives. I know what you’re thinking: <em>All</em> <span class="caps">SEO</span> is about business objectives. True. But in enterprise <span class="caps">SEO</span> a focus on visibility, clarity and site performance achieves those objectives far more easily than chasing a keyword list.</p>
<p>So please, do your brand a favor: Stop worrying out keywords. Focus on business objectives, instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://searchengineland.com/why-enterprise-seo-shouldnt-focus-solely-on-keywords-122656/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>
