How to SEO Flash

How to SEO Flash

Flash gets a bad rap, undeserved in my opinion, for harming search engine visibility. Why are search engine optimization (SEO) practitioners concerned about Flash, and how can we SEO Flash content? Flash content is often heavy on images and interactive features, and light on text. As of 2008, the leading search engines are heavily dependant on text to understand the meaning of pages.

The leading web development tool, Adobe Dreamweaver, embeds Flash in web pages with code that fails to provide accessibility for visitors or search spiders who cannot handle Flash. Instead of using the default code, my recommendation is to hand code Flash pages with primary HTML content, and a method of automatically testing for Flash support before attempting to insert the movie. The primary HTML content can be search optimized as if the Flash wasn’t there, while the Flash provides an enhanced user experience for those visitors who have the necessary Flash player.

The April 11, 2006 release of Microsoft’s popular Internet Explorer (IE) browser includes an update (“Eolas”) that prevents ActiveX-based Flash controls from working properly. When the user attempts to interact with the Flash, a tool tip appears, stating, “Click to activate and use this control.” That extra click is an annoyance. In addition to helping search engines, the programming techniques described in this article solve the Flash Eolas problem.

Search Engines and Flash

Search engines have the ability to read Flash files and extract text and links. In particular, Google and Adobe announced a new algorithm for indexing textual Flash content on June 20, 2008. As explained by Rand Fishkin in Flash and SEO – Compelling Reasons Why Search Engines & Flash Still Don’t Mix, and Vanessa Fox in Search-Friendly Flash?, hoping that search engines can decipher you Flash is not a substitute for providing indexable HTML content.

Requirements for Successful Use of Flash

Flash animation is a great way to present complex content because it allows the designer to put more content in a finite space, without wrecking page design. For technology sites, Flash is an ideal way to present a slide show or movie explaining a complex product. At the other end of the spectrum, art and entertainment sites have a real need for multimedia, and Flash is the perfect solution.

When using Flash, we’d like to satisfy each of these objectives:

  • Clean design
  • Search Engine Optimization
  • Accessibility for a wide variety of browsers, including screen readers and mobile phones
  • Code validation and standards compliance
  • Correct functionality with IE

SEO Flash Programming

My recommended Flash SEO method uses a DIV with search-engine-accessible, primary content, and an open source Javascript function called swfobject() to detect when browsers are capable of viewing Flash. When an appropriate version of Flash player is present, the Javascript manipulates the page’s document object model (DOM) to replace the primary content with the Flash movie. Most search engine spiders can’t handle Flash, so they will elect to view the primary content. The primary content may contain links, headings, styled text, images—anything we can add to an ordinary HTML page. With SEO copyediting and coding skills applied to the primary content, Flash becomes a non-issue.

Flash accessibility programming isn’t spamming, as long as the primary content and the visible movie are essentially the same. The World Wide Web Consortium (W3C) Web Accessibility Initiative (WAI) specifically states that multimedia content should have an alternative representation available. Accessibility programming creates the benefit of presenting visual information without losing the visitors and search engines who depend upon textual content.

As of July 2007, I discussed this method with Dan Crow of Google. He warned that this programming method could draw attention because of the possibility for abuse. If you use this method, make sure the alternative content is a faithful representation of the Flash content, and avoid combining this with other coding methods that could be abused. While this SEO method is not abusive, it is aggressive because there is a small risk that the search engines could mistakenly decide that the primary content is a form of cloaking.

SWFObject 2.0

SWFObject 2.0 is an open source project based on Geoff Sterns’ original SWFobject() and UFO (Unobtrusive Flash Objects) by Bobby van der Sluis. As reported at swfobject, Adobe is likely to include swfobject() in future releases of its web development tools.

Scalable Inman Flash Replacement

If you are only using Flash to enhance headings, quotes, or callout text, a method called Scalable Inman Flash Replacement is an excellent choice. SIFR automatically pulls text from an HTML document and modifies the Document Object Model to replace the text with a Flash rendering of the appropriate font. SIFR makes it easy to modify the text, and ensures that your Flash text always matches your HTML text, reducing the risk of abuse.

The drawback of SIFR is that it only handles the presentation of simple text. Complex Flash animations, such as menus, slide shows, and interactive presentations can not be programmed easily with SIFR. For these types of Flash, SWFOBJECT and UFO are more effective.

Example: Making Flash Home Page Spiderable

The sample code below is derived from the home page of TrueVector Technologies which includes two Flash objects. The content of that page can now be indexed because search engines can read the HTML-coded content, while visitors with Javascript and Flash can view enhanced visual content.

<head>
<!--snip-->
<script type="text/javascript" src="/js/swfobject.js">
</script>   
<script type="text/javascript">       
  var flashvars = {};     
  var params = {       
    wmode: "transparent"     
  };     
  var attributes = {}; 

  var flashvars2 = {};     
  var params2 = {       
    wmode: "transparent"     
  };     
  var attributes2 = {};

  swfobject.embedSWF("/flash/map_test.swf",
        "myContent", "760", "350", "9.0.0",
        "/flash/expressInstall.swf",
        flashvars, params, attributes);    

  swfobject.embedSWF("/flash/homepage2.swf",
        "headerbanner2", "760", "220", "9.0.0",
        "/flash/expressInstall.swf",
        flashvars2, params2, attributes2);    </script>

</head>
<body>
<!--snip-->

<!--primary content, for non-Flash visitors-->
<div id="myContent">
  <img src="/images/home-top.jpg" border="0"
    alt="TrueVector Technologies" height="350" width="760">
</div> 

<!--snip-->
<div id="headerbanner2">       
  <h1>TrueVector <em>noun</em></h1>
  <p>1) a tool designed to enhance web site navigation.
    2) by eliminating clumsy dropdown boxes and checklists.
    3) giving users easier access to data or inventory.
    4) leading to an enjoyable surfing experience.
    5) resulting in higher click-through rates and longer
    site visits. 6) which lead to more return visits and
    site referrals. 7) ultimately ending in trueVector's
    customers suffering <strong>higher profits</strong>.</p>
    <p><strong>Syn:</strong>
    Interactive Map/ Flash Map/ Zip Code Map/
    Rate Center Map/ Store Locator Map/ Real Estate Map/
    TrueVector Flash Map/ US Interactive Map</p>            
</div>

Flash accessibility programming will not magically cause a site to rise to the top of the rankings, but this Flash SEO method will eliminate any ranking disadvantages associated with Flash.

We’ve used this Flash SEO method on many high traffic sites. The code has been served hundreds of thousands of times. Sites using this Flash SEO method have achieved top rankings for keywords found only in the Flash content.

All Flash Sites

A site built entirely with Flash suffers a great disadvantage because it lacks page structure to organize the content, internal linking, and unique page titles. One remedy is to create distinct HTML pages to represent each Flash “page,” and install the Flash movie on each and every one of the HTML pages. When a visitor requests the page, they’ll see Flash if they can handle it. Otherwise, a non-Flash visitor, such as a search engine, will be able to spider the site. If a user follows a search result onto one of the inner pages, they’ll get the same Flash experience because the movie is available on every page. Another approach is to divide the Flash into pieces and put the relevant piece on each page.

Slicing up the Flash can result in page transitions that don’t provide the seamless effect that you want to create. To get the best of both worlds, pass a parameter into the Flash movie using FlashVars. The same movie can appear on each HTML page, but depending on the parameter value, the movie can start at an appropriate point to show the Flash content that corresponds to that page. To get rid of all the extra pages, but still be able to reference different parts of the Flash piece, add a # and a tag to the end of each URL, and pass that tag into the Flash. This approach can make the back and forward buttons work properly, and allow people to bookmark specific parts of the Flash site.

It is also possible to use PHP scripts to pull both the primary HTML content, and the Flash content from a MySQL database. This approach would greatly simplify the maintenance of an accessible Flash site by storing only one representation of the content.

Source: Jonathan Hochman

WordPress Google SEO Tips

Do you have a blog running on wordpress then it’s time to look this good in hands. With wordpress you can quickly and easily optimized a good blog. Many wordpress and wordpress themes are not or poorly optimized for search engines. By following these tips will surely be a better result in Google !

1 – Permalinks

Using a good URL structure for your web site will clearly be Google . Go into your admin in wordpress to settings -> permalinks -> and fill in “Custom Structure” the following: /% postname% / . Now the structure of your website as: http://www.website.nl/titel-blog-bericht

2 – All-In-One SEO Plugin

Most importantly, the All-In-One SEO Plugin. Lets you post a page or a custom title form. And many more good SEOoptions. Just look at this download: http://wordpress.org/extend/plugins/all-in-one-seo-pack/

3 – Social Media

Social media, here is it again. Use a twitter , facebook , hyves or Digg plugin. Known plugins for this include social bookmarks , WP-Hyves , Sociable and much more ! RSS is also a good way to get more readers. There are severalplug-ins for.

4 – Good titles

When coming up with a good title, or title front the title tag (set with the All-In-One SEO Plugin) you should look at where many sought in Google with the Google Keyword Tool . Optimize your title, and check whether there is much competition in Google

5 – Google XML Sitemaps Generator Plugin

sitemap is always an important part of the site, but always a lot of work around this by hand to keep. There is an ingenious plug-in that is fully automatic. Google XML Sitemaps Generator Plugin

6 – Optimal use of <H> tags in your theme!

Probably you have the theme of your blog picked for looks, of course accommodation. But some WordPress themes are very poorly optimized for Google . In a previous message from me about the H-tags, I explain how you can make best use of. The title of your site would, in the H1 tag should, and the sub topics in h2 tags.

7 – Speed

Speed ​​is very important to Google. To begin installing the WP Super Cache plugin . Now you should go see what plug-ins are important and not. Plug-ins you use, you should not remove the same. For pluginins much load you need to see if these plugins are really needed. My experience is far less totnu plugins faster your website. If you make use of many plugins you should also check for files multiple times geinclude like jquery.js. And look also atWebo

8 – SEO Smart Links

The plugins SEO Smart links allows a deeper and deeper into the website Gelink. Post a new message with a keyword that appears in the title of another message is not automatically there Gelink. Thus, more and deeper and deeper into the website linked. So bring your old messages also turned its attention.

9 – Noindex to archive

If you now plug the http://wordpress.org/extend/plugins/all-in-one-seo-pack/ have installed, you can choose whether you want the archive pages to index. This page is not indexed because otherwise you just get duplicate content. Otherwise you get some reports up to 4 times on your website, with tags, categories, archive and front page.

10 – Description and keywords

With the All in one SEO plugin will get to each page description and keywords options to fill in the meta tags. With keyword enter key words that are also reflected in the text. For description, enter a description in the blog post for the visitors from google to get to your page!

Now you’re probably thinking why is this not at all use this blog? Well, currently I am experimenting with charging and other things. But the tips above are certainly important! Do you have any good tips? Please let us know below!

11 – wpSEO (not free)

wpSEO provides automatic metatags

And more tips for your WordPress SEO

Speed ​​up your WordPress (used Webo for section 1 t / m 4)

  1. Use WP Super Cache (with GZIP enabled)
  2. Move. Htaccess directives as much as possible to your server config
  3. Combine all your CSS in a large CSS file, the same goes for javascript
  4. Use CSS sprites
  5. Optimize with PHP op-code cache
  6. Kill unnecessary plugins , and there is more redundant than you think
  7. Provide professional fast and secure hosting (like Ber | Art )

Step 2: Optimize your blog for SEO

  1. Set in permalinks (including postID if you want to get into Google News) see item 1 above …
  2. Ensure the post title for the blog name in the title is
  3. Block robots on irrelevant pages (noindex wp-admin, login, register) or use meta robot
  4. Optimize your titles with Headspace2 (or wpSEO , wpSEO does it all automatically!)
  5. Write good meta descriptions (call to action) Take a look at especially SEOBooster Pro !
  6. Ensure proper pagination, so that all pages are indexed (with the plugin wp-page navigation Lester Chan)
  7. Disable multiple pages for comments
  8. Implement the WordPress guide on Yoast.com
  9. Backup your database regularly WP (WP-DBManager Lester Chan)
  10. Optimize your database daily (via WP-DBManager)
  11. Backup your files daily ( blogtrafficexchange.com / wordpress-backup )
  12. Debug all your queries (debug queries)
  13. Use Akismet to prevent spam
  14. Check your referrers to see what responses come from ( tools.davidnaylor.co.uk )
  15. Avoid gimmicky widgets
  16. Monitor your uptime (Pingdom, Hyper Spin, WebBuddy or site uptime)
  17. Check your 404 pages, avoid them whenever possible but also allow for a steering page 404
  18. Remove unnecessary metadata information (rsd_link, wlwmanifest_link, wp_generator)
  19. Give canonical URLs in the HEAD again

Step 3: Promote your site via social media

  1. Add sociable to your site
  2. Send a newsletter and put a tell-a-friend option on the thank you page of your application process
  3. Use comment redirect and again, tell-a-friend on the thank you page
  4. WP Greet Box (includes related pages)
  5. Enable Gravatar in order to respond more personally
  6. Promote on Twitter and LinkedIn !
  7. Use Google Analytics and Google Sitemaps (look at the Google Labs features!)
  8. Use RSS RSS link tagger for visitors to track ( rebelic.nl / rsslinktagger )
  9. Track traffic from Twitter
  10. Use comment redirect to first-time-comme letters “to measure and set it as a goal in Google Analytics
  11. Track comments as a goal in Google Analytics (using onclick tracking)
  12. Track RSS notifications the same way
  13. Optimize your lyrics for the audience actually interacts (eg responding or register for your newsletter)
  14. Use metrics to measure your progress

Source: Ber|Art VOF

SEO Tips for Flash

SEO Tips for Flash

Creating accessible flash content for search engines is odd for you to preserve your online presence and drive traffic to your site. Follow these Flash Optimization Tips to get most out of the major search engines.

Adding SWF content to your HTML source
An iron-clad way to guarantee that a SWF’s content is picked up and ranked by search engines is to extract the content and place it into the page’s HTML source. Tools such as Dreamweaver use SWF Object to embed Flash. The code view in Dreamweaver displays comments where you should add your alternative HTML content.

Keep your URL unique
If your site is just one big lump of Flash in an HTML template, your page is never going to refresh. Consider having a different URL for each page of your site’s Flash content. Each page would have its own HTML source title, “H1″ and body copy containing the keyword you want to rank.

Use source content dumping
A one-page HTML rich internet application (RIA) will not be SEO enhanced simply by adding the content for each section of the Flash application into the HTML source for this page. Doing this doesn’t establish any prominence of content, as there are too many competing terms. Keep extracted Flash content relevant to the page it’s on.

Keep an eye on new initiatives
Adobe has been working with Google and Yahoo! to make the Flash file format (SWF) search engine friendly. This will enable the engines to see what’s inside a SWF’s content and index it. However, the use of Flash Player technology by search engines is still developing and so can’t be relied on as the only step towards optimizing your project for SEO.

Add text to your Flash applications
A simple Flash SEO enhancement is to use Flash-generated text in your creative when displaying or animating type. You can do this instead of using text that’s a flattened bitmap. Flash text can contain keyword-based messages, which help increase traffic. Include this text in the HTML source of the page as well.

Remember that search engine spiders hate pop-ups
We’ve all visited sites that urge us to click to launch Flash content into a new window. This removes any chance of the site’s content being picked up and indexed by search engines. In addition to search spiders not being able to see them, pop-ups suffer from being blocked by many browsers.

Get robotic help
Robots.txt is a plain text file found at the root of a server. This tells search bots which content needs to be allowed or disallowed when it visits their website. If your Flash text content is the same as your HTML version, you could set the Robots.txt file to ignore the SWF content and push only the HTML content to the search bots.

Embed Flash content with SWF Object
SWF Object is a search engine-friendly way to embed Flash content. Alternative (non-Flash) content is produced first, and then snippets of JavaScript are used to swap out the alternative content with the Flash movies. This ensures that the content is indexed by search engines. Users without Flash will still see a working HTML page.

Types of E-Commerce

Types of E-Commerce

E-commerce is the use of Internet and the web to transact business but when we focus on digitally enabled commercial transactions between and among organizations and individuals involving information systems under the control of the firm it takes the form of e-business. Nowadays, ‘e’ is gaining momentum and most of the things if not everything is getting digitally enabled. Thus, it becomes very important to clearly draw the line between different types of commerce or business integrated with the ‘e’ factor.

There are mainly five types of e-commerce models:

  1. Business to Consumer (B2C) – As the name suggests, it is the model involving businesses and consumers. This is the most common e-commerce segment. In this model, online businesses sell to individual consumers. When B2C started, it had a small share in the market but after 1995 its growth was exponential. The basic concept behind this type is that the online retailers and marketers can sell their products to the online consumer by using crystal clear data which is made available via various online marketing tools. E.g. An online pharmacy giving free medical consultation and selling medicines to patients is following B2C model.
  2. Business to Business (B2B) – It is the largest form of e-commerce involving business of trillions of dollars. In this form, the buyers and sellers are both business entities and do not involve an individual consumer. It is like the manufacturer supplying goods to the retailer or wholesaler. E.g. Dell sells computers and other related accessories online but it is does not manufacture all those products. So, in order to sell those products, it first purchases them from different businesses i.e. the manufacturers of those products.
  3. Consumer to Consumer (C2C) – It facilitates the online transaction of goods or services between two people. Though there is no visible intermediary involved but the parties cannot carry out the transactions without the platform which is provided by the online market maker such as eBay.
  4. Peer to Peer (P2P) – Though it is an e-commerce model but it is more than that. It is a technology in itself which helps people to directly share computer files and computer resources without having to go through a central web server. To use this, both sides need to install the required software so that they can communicate on the common platform. This type of e-commerce has quite low revenue generation as from the beginning it has been inclined to the free usage due to which it sometimes got entangled in cyber laws.
  5. m-Commerce – It refers to the use of mobile devices for conducting the transactions. The mobile device holders can contact each other and can conduct the business. Even the web design and development companies optimize the websites to be viewed correctly on mobile devices.

There are other types of e-commerce business models too like Business to Employee (B2E), Government to Business (G2B) and Government to Citizen (G2C) but in essence they are similar to the above mentioned types. Moreover, it is not necessary that these models are dedicatedly followed in all the online business types. It may be the case that a business is using all the models or only one of them or some of them as per its needs.

Video RSS and MRSS To Communities, Media Search Engines and Aggregators

Video RSS and MRSS To Communities, Media Search Engines and Aggregators

RSS is the future for content discovery. This is even more important when the “content” is not textual so it is not easily indexed by crawlers. Video RSS and MRSS feeds are a great way to distribute and share your videos to communities to increase your embeds and visibility for your video:

  • iTunes: Formed by the merger of PureVideo Networks, Inc., publisher of GrindTV, the action sports channel on Yahoo! Sports, and Wasserman Media Group’s Sportnet. Each month, the combined company’s ten enthusiast media brands attract 8 million plus online visits generating more than 60 million video views across a syndication network that includes Yahoo!, MSN and Comcast, and other premium distributors.
    • You can submit a number of differing types of files to iTunes. The Submit Rss on the specs page has all the details you need
  • ClipBlast: Founded in 2004 with patent-pending technologies designed to organize and simplify the “Video Web” helping users to search, navigate, watch and personalize their experience. Video Content Providers can monetize and distribute videos using a number of tools on the platform.
  • Truveo:Operates as a wholly owned subsidiary of AOL Inc with a comprehensive and innovative set of developer tools used by content producers in Truveo’s Director Account program to make their video searchable by the millions of users across the Truveo network. Additionally website developers have leveraged Truveo’s Open APIs to enhance their website.
  • Grind Networks: Formed by the merger of PureVideo Networks, Inc., publisher of GrindTV, the action sports channel on Yahoo! Sports, and Wasserman Media Group’s Sportnet. Each month, the combined company’s ten enthusiast media brands attract 8 million plus online visits generating more than 60 million video views across a syndication network that includes Yahoo!, MSN and Comcast, and other premium distributors.
  • World Wide Broadcast Network: Platform System uses a robust and scalable infrastructure designed for delivering rich media. WWBN.com enables any object in your digital media library to be instantly delivered and monetized while creating an unparalleled online experience for users.

RSS for Video Promotion

Upload Videos

Upload and share your videos to these communities to increase your embeds and visibility for your video:

  • MetaCafe: One of the leading video sharing networks on the internet. Upload your videos to your channel. Provides a player and tools to put video RSS feeds on your site.
  • Revver: Two interesting services provided are a plugin to monetizes video on blogs, and tools to email, embed and build custom RSS video feeds. The API is robust and community is fairly active.
  • Blip.tv: The Dashboard shows you exactly where your audience is, and increasingly who they are. Track audience and user engagement graphs to determine where the user fast forwards, where they rewind, and where you lose them. This enables you to improve your video and consequently YouTube and Google rankings since there is indications this engagement is part off the ranking algo.
    • When you upload to BlipTV, your videos can be syndicated to accounts you have on other Web sites such as blogs, iTunes , Yahoo Video, AOL Video, MySpace, FaceBook, and Feedburner.
    • The blip.tv distribution network reaches more than 80% of Americans on the Internet and a growing number of television households. Partners like YouTube, NBC, Apple, TiVo and AOL help blip.tv shows find their total potential audiences
    • Submit and Upload Videos to Blip
  • Veoh: Popular video content and Internet Television sites where Members can share video.
    • When you submit to Veoh, they syndicate your video to YouTube, mySpace, and Google video.
    • Upload Videos to Veoh
  • DivX’s Stage 6:
    • You can still watch and share high-quality DivX® video in your browser using DivX Web Player. Anyone with a website or blog can easily embed DivX video. And remember, you can enjoy your DivX video almost anywhere — on your computer, your phone and on your TV. Unfortunately the cost to run the upload site was prohibitive.

Sites to upload video to

Syndicate Videos for Promotion of Viral Videos On Video Search & Sharing Sites

Twitter for video traffic tops facebook yahoo google and bing TubeMogul provides some recent data showing video is a favorite share among Twitter users. Some of this is via favorited vids being tweeted. I likely do about 40-50 Grooveshark tweets a week… it is music but … I think it’s safe to say it is similar behavior!

Recent statistics by TubeMogul are showing a high increase in people using Twitter instead of its competitors Facebook, Yahoo, Google and Bing. According to Mashable, social media users are tending to steer towards Twitter as it not only gives them the option of watching videos but connecting them to real-world friends and not just their own interests.

The other day in the SEO Training Dojo chat I was asked about the role of linking and videos. Personally, I believe that embeds are the new link. They are easier to determine quality based on reactive engagement (comments, ratings, subs, friends and how much of the video was watched [attention]) making distribution and promotion of the video almost as important as what is in the video.

What is significant about the software and sites below are they are mass distributors, sometimes paid and some extremely powerful programs uploading videos combined with social bookmarking and sharing sites and communities. With the “buzz factor” from this activity likely a factor in getting Videos into Universal SERPs with Video, RealTime search and possibly.

  • Video Upload Pro: $95 paid Software to submit your videos to multiple video sites including Atom Films, Blip.tv, BoFunk, Bolt, ClipShack, EvideoShare, Flurl, Google Video, Guba, Jumpcut, Live Video, Myspace Video, PutFile, Veoh, Vimeo, Yahoo Video and Youtube.
  • HeySpread : Some services are paid but it doesn’t seem that they are very expensive. An online tool to send videos to multiple sites, with some interesting, reasonably priced services and an API based on REST with PHP and Ruby libraries available
  • TubeMogul: Submit videos to multiple video sharing sites at once. Currently supporting Metacafe, MySpace, Yahoo, Revver, AOL Video, DailyMotion, Blip, and BrightCove, TubeMogul syndicating your videos out to video sharing sites unique Titles, Tags, and Descriptions and provides analytics for tracking views across your syndicate.
  • TrafficGeyser: Distribute video to a large number of video search engines, sharing sites and social bookmarking sites. It’s a comprehensive service offering slidecasting, royalty-free music packs, video-to-audio conversion and broadcasting to podcast directories and social bookmarking sites. Site treats information about the products like they are an old school affiliate program. Highly recommended by a number of users I met in Dan Thies Link Liberator seminars. I highly recommend submitting the lead form for the excellent info and info about the company. Yeah I wasn’t happy but they at least gave me info for upping my email… I pity them if they spam me!
    • Free trial with subscription @ $97/month (not verified apparently pricing is a secret!)

I will not be surprised to see Video replace pictures in the News Paks in the near future. This is a prediction as I do not know for sure but the recent Google news bog post Making your video news more accessible seems to indicate interest in adding video to the News Pak and Google news listings.

Video Syndication Sites

Video Promotion and Video Syndication Site Considerations

Note that while I was going through these syndicators and sharing sites there were more but all were in varying degrees of going out of business. At least one had multiple services with low monthly prices. The problem here was clearly unrealistic pricing which should alerted us to the potential for the demise of free and freemium services. It is devastating to have invested into a community and have the community close. Keep this in mind as you build out your video syndication and sharing strategy.

Conclusions on Video Promotion

Video production and optimization are the foundation of your Universal SERPs video strategy. Promotion and engagement are the drivers of the viral video bus increasing brand visibility and and links.

SWOT ANALYSIS & SMART PLAN

SWOT ANALYSIS & SMART PLAN

There are many methodologies for business planning. One of the more well-known ones is the SWOT (Strengths, Weaknesses, Opportunities, Threats) Analysis. There are also methodologies for ensuring that the plan objectives are the right type of objectives, such as the SMART (Specific, Measurable, Achievable, Realistic, Time-lined) Plan. Next we will take a look at both of these in the context of SEO.

SWOT ANALYSIS:

Sometimes you need to get back to the basics and carry out a simple overview strategy of where you are in the marketplace, and where you would like to be. A simple SWOT analysis is a great starting point. It creates a grid from which to work and is very simple to execute.

As you can see from the SWOT chart in below, Strengths and Weaknesses usually stem from internal (on-site, business operational, business resource) sources, whereas Opportunities and Threats are from external sources.

SWOT ANALYSIS & SMART PLAN

Where does SEO fit in here? To explore this, it is helpful to use an example. Take Business X. It has a website that was built on WordPress, makes use of category tagging, adds at least one page of content every two days, and has excellent knowledge of its industry. Its domain name isn’t ideal — Businessnameandkeyword.com — but it is decent.

Business X does not get much traffic from search engines, but its rival, Business Y, does because Business Y has had its website up for a long period of time and received some great links along the way. Business Y doesn’t have any SEO plan and relies on its main page to bring in all traffic.

This is because Business Y has a keyword-rich domain name and people have linked to the site using the domain name (giving it keyword-rich anchor text), and because of its longevity on the Web.

There aren’t a lot of target search queries; in fact, there are fewer than 50,000 for the core set of keywords. Business X’s site ranks on the second page of Google results, whereas Business Y is ranked #3, with Wikipedia and About.com taking up the top two positions.

Neither of the businesses is spending money on PPC (paid search) traffic, and the niche doesn’t have much room for other entrants (there may be 10 to 15 competitors). Both sites have similar link authority in terms of strengths and numbers. The businesses deal in impulse purchases — the products evoke strong emotions.

SMART chart data for Business X

The preceding analysis suggests quick wins for the Business X site, as well as where the priorities are. It also forms a great starting point for a long-term strategy and tactical maneuvers. This example is simplistic, but it illustrates how instructive a fleshed out SWOT can be. It does require you to have analyzed your site, the main competitor(s), the keywords, and the search engine results pages (SERPs).

SMART PLAN

Every company is unique, so naturally their challenges are unique. Even a second SEO initiative within the same company is not the same as the first initiative. Your initial SEO efforts have changed things, creating new benchmarks, new expectations, and different objectives. These all make each SEO project a new endeavor.

One way to start a new project is to set SMART objectives. Let’s look at how to go about doing that in the world of SEO.

  • Specific objectives are important. It is easy to get caught up in details of the plan and lose sight of the broader site objectives. You may think you want to rank #1 for this phrase or that, but in reality you want more customers. Perhaps you don’t even need more customers, but you want higher sales volume, so in fact having the same number of orders but with a higher average order value would meet your objectives better.
  • Measurable objectives are essential if one is to manage the performance in meeting them — you can’t manage what you can’t measure. SEO practitioners have to help their clients or
    organizations come to grips with analytics, and not just the analytics software, but the actual processes of how to gather the data, how to sort it, and most important, how to use it to make informed decisions.
  • Achievable objectives are ones which can be accomplished with the available resources. You could decide to put a man on Mars next year, for example, but it is just too big an undertaking to be feasible. You can be ambitious, but it is important to pick goals that can be met. You cannot possibly sell to more people than exist in your market. There are limits to markets, and at a certain point the only growth can come from opening new markets, or developing new products for the existing market.Aside from basic business achievability, there are also limits to what can rank at #1 for a given search query. The search engines want the #1 result to be the one that offers the most value for users, and unless you are close to having the website that offers the most value to users, it may be unreasonable to expect to get to that position, or to maintain it if you succeed in getting there.
  • Realistic objectives are about context and resources. It may be perfectly achievable to meet a certain objective, but only with greater resources than may be presently available. Even a top ranking on the most competitive terms around is achievable for a relevant product, but it is realistic only if the resources required for such an effort are available.
  • Time-bound is the final part of a SMART objective. If there is no timeline, no project can ever fail, since it can’t run out of time. SEO generally tends to take longer to implement and gather momentum than paid advertising. It is important that milestones and deadlines be set so that expectations can be managed and course corrections made.

“We want to rank at #1 for Bunk Beds” is not a SMART objective. It doesn’t identify the specific reason why the company thinks a #1 ranking will help it. It doesn’t have a timeline, so there is no way to fail. It doesn’t state an engine on which to be #1, so there’s a guaranteed argument if it means to rank on GOOGLE and you get the job done on Yahoo!.

“To increase Term Bunk Beds generated by natural search by 30% over six months” is a far better objective. There is a deadline, and the company can certainly gauge progress toward the specific objective. The company can look at its current market share and the resources committed to see whether this is achievable and realistic.

Source: Art of SEO