How Google Works Infographic

how-google-works-infographic

PPCBlog.com came out with this awesome infographic that breaks down how Google works… very cool.

How Google Works.

Infographic by the Pay Per Click Blog

0 Comments

Matt Cutts In Space Promo Video

matt-cutts-in-space-promo-video

You’ve asked for more information and we’re here to give it to you.

When we announced that we were going to launch Matt Cutts into space and asked for your ideas on what we should name the rocket we received many emails asking for specifics on what we were going to do.  So, we had our video pro Adam Perry create this demo video that explains it all a bit further.  It’s well worth the watch… check it out.

Be a part of the experience and share this on your site! We’ve already put together the code for you:


Vote Now For What The Matt Cutts Rocket Should Be Named!

What should the Matt Cutts Rocket be named?

  • Spam Blaster (36%, 16 Votes)
  • The Mocket Cutter (18%, 8 Votes)
  • Black Hat Express (18%, 8 Votes)
  • Spam Cannon (14%, 6 Votes)
  • SPAMTRON5000 (14%, 6 Votes)

Total Voters: 44

Loading ... Loading ...
9 Comments

We’re Launching Matt Cutts To Space (We Need You To Name The Rocket)

were-launching-matt-cutts-to-space-we-need-you-to-name-the-rocket

UPDATE: New Promo Video For The Launch Here

Comment Below To Name The 10 Foot Matt Cutts Rocket That Sends Matt To Space In April

OK, not to space. BUT, we are indeed going to launch a rocket… and Matt Cutts… really freakin’ high.  The flight should last about 2 minutes and will be videotaped with both on board and exterior cameras.  If you’ve never see an on board rocket cam, you’re going to be in for a treat.

Matt CuttsFor those of you who don’t know (many of our readers are not actually in the internet marketing world), Matt Cutts is the spam engineer for Google. He’s kind of the “face” of Google at search conferences and the like.

We Had A Company Make A Custom Matt Cutts Action Figure

Last year, our team decided that we were going to spend a few bucks to have action figures created of different SEO’s and do some crazy videos and things with them throughout 2010.  Of course, it seemed appropriate to start with Matt being that he is the Greenspan of the search world.

Joe Latrell with the top portion of his custom made Matt Cutts rocket

Joe Latrell, a rocket scientist who works on the ProspectMX team with the top portion of his custom made rocket that is set to send Matt rocketing to space this April

Understand that when we ordered the Matt Cutts “doll,” Matt had just shaved his head and was looking extremely buff. So, you’ll notice that the action figure is that of a “ripped” Matt Cutts with a shaved head.  haha… We love you, Matt.  :)

After debating in our meetings about what we should do with him, we finally decided the obvious:

Build a 10 foot rocket and launch it into the air, with video cams on board.

It just so happens, that Joe Latrell (who is a rocket scientist… literally) works on our team and has been lauching enormous rockets (some the whole way to space) for years. While this one isn’t going to go to space, it will go about 1 mile into the atmosphere.

Matt Cutts sitting in his ergonomic custom chair inside of his  rocket

Matt Cutts relaxing in his ergonomic chair inside of his custom made rocket

So, the launch date that we’re shooting for is some time in April. But we have a problem. We need a name.

We Need Your Help To Come Up With A Name!

Soooo… All you have to do is comment below with what you think the name should be. Then, in a later blog post, we’re going to allow you to vote for the winner from the best 5 (as decided by us). The final name selected will be placed on the rocket.

We will keep you updated with the progress of our rocket as it’s assembled with videos and pictures right here on the ProspectMX blog.

So… go ahead… What should we name the rocket?

14 Comments

Reduce, Re-use, We’re Not Talking About Recycling Here.

reduce-re-use-were-not-talking-about-recycling-here

So your business is green now… how about your website?

Imagine if you printed each page of your site, and then gave them to Google. Then, after you handed them over, Google had to file them away in their archives. The smaller the pages are, the less space your pages would take up, correct?

If we look back at rule no. 1 of the Three Golden Rules Of SEO: “Do right to Google and Google will do right to you,” we uncover a great SEO rule for techs: the more we can reduce the size of the pages on a website, the better the website is for Google to crawl.

So – how do I reduce the size of my pages and my site?

Removing on-page CSS and Javascript and placing them in external files.

Reusing the same style sheet and javascript file will make your site easier to update and also more consistent. This will also reduce the total number of bytes the page contains when Google has to index it. In order to do this, you would need to edit the pages of your site and move the code into a seperate file.

Given the sample below, PennDOT has 87 lines of javascript on their home page. They could copy and paste that code into a file called home-page.js and replace all those lines of code with 1 line.

<script src=”/home-page.js” language=”JavaScript” type=”text/javascript”></script>

For moving CSS, it is the same approach but the code is slightly different. Take a look at the 300+ lines of CSS on the Lancaster County Library website. This can be easily moved to an external style-sheet by copying and pasting that code into a file named home-style.css and replaced with 1 line in the head section as follows:

<link href=”/home-style.css” rel=”stylesheet” type=”text/css” />

You’re welcome Google, we just saved you 8KB of bandwidth and 8KB of storage each time you index those two pages!


No-Index duplicate pages with robots.txt

Create a file in the main directory of your website named “robots.txt”. The search engines will read this file each time it crawls your site to see what urls you don’t want included in the index. To determine what urls to exclude, you could do a Google search using “site:yourdomain.com” and look at the results.

If you have a lot of duplicate pages, especially from a dynamically generated script, the results will most likely be displayed at the end of the results. Click to the end of the pages of results, and look for the caption at the end “In order to show you the most relevant results, we have omitted some entries very similar to the X already displayed.”

If you like, you can repeat the search with the omitted results included. Click on that link and browse through the duplicate results. Once you have determined some urls to exclude you would simply add them to the robots.txt one url per line, as follows:

User-agent: *
Disallow: /url-to-block

The search engine spiders support blocking an entire directory as follows:

User-agent: *
Disallow: /directory-to-block/

Googlebot specifically supports a wild card feature. So if you would like to block an entire range of urls, say from a web calendar at an address like /calendar-2009.html you could do this as follows:

User-agent: googlebot
Disallow: /calendar-*.html

See if your web server supports the If-Modified-Since HTTP headers

I use a Firefox plugin called Live HTTP Headers so that I can inspect the http server headers. This is a handy troubleshooting tool while testing 301 redirects as well.

In order to use this you would need to be using Firefox, and install the plugin. Go under the tools menu and choose “Live HTTP Headers.” Leave the box open and load your website in the browser.

Several lines of text will go whizzing past. Go the whole way up to the top to look at the original request and response. Note the headers for a page from Wikipedia in the image below. In the first section – “GET /wiki/Google HTTP/1.1″ – is the request that the browser sent to the server. Note the line “If-Modified-Since.” This second section is the response from the server. What we are looking for here is the first line “HTTP/1.x 304 Not Modified” and “Last-Modified: Sat, 24 Oct”… This server does support the If-Modified-Since HTTP header.

When the Googlebot spiders this page again, it will be able to determine if the current web page is newer then the one already in the Google cache, therefore saving bandwith to download the page and storage space to store duplicate pages.

0 Comments

Google Voice Applications For Internet Marketing

google-voice-applications-for-internet-marketing

Is Google finding a way to integrate the tracking of online and offline marketing results?

Many people know that one of the great things about internet marketing is the ease and accuracy with which marketers can track the results of their efforts. With internet marketing, it’s generally not a case of not enough data. It’s more like:

“What in the world do I do with all this data?! What’s relevant for my company?”

Google Voice Phone Call TrackingBut what about businesses that still rely on that antiquated tool – the telephone – to do business? How do you know which marketing activities generate the phone calls? Was it that magazine ad, an internet search, that midtown billboard, or a customer referral? Sure there are ways to track that, but none of them are convenient.

Your trusted, data hungry friends at Google may be working on a solution for at least part of this phone call tracking problem. Using Google Voice, the search engine has begun tracking phone calls that are coming from ALL Google-related internet marketing sources.

Google Voice allows for the creation of a phone number that is not tied to a particular location or phone. Instead, the number is tied to you or your company. The user can also control which phone rings (office, home, mobile, etc.) when someone dials a Google Voice number. A “G-Voice” account is similar to a Gmail account in that it’s portable and more flexible in where, when, and how it can be used.

One of the things that is rumored to be part of Google Voice (which is only available by invitation only at this point) is call tracking. If this is the case, companies would be able to use their Google Voice phone number in various internet marketing mediums to track calls generated from those sources. Two mediums that jump out right away are AdWords Pay-per-click and Google Local Business Center.

Yes, there are PPC management companies that connect sponsored ads to phone numbers. But if Google could provide a way to use that phone number across a variety of online properties, I think it would be quite valuable.

Ease of measuring marketing results is always a good thing in my book.

Get more info about Google Voice from this handy YouTube video.

0 Comments

How To Find Keyword Conversion Percentage By Landing Page Using Google Analytics

how-to-find-keyword-conversion-percentage-by-landing-page-using-google-analytics

At ProspectMX, we are proud to say that we aren’t just another internet marketing company that can rank websites with no regard for business goals. While sending an increased amount of traffic to a client website is a goal in nearly every campaign we launch, that increase in traffic is worthless if it doesn’t lead to more conversions on a site.

One of our clients recently came to us with a great question after noticing that a keyword was converting on their site while also generating traffic to on more than one webpage:

“Which landing page converts the best on my site for this keyword?”

The video above is a Google Analytics tutorial showing how to find keyword conversion by landing page. Hope you find it helpful. Enjoy!

So why is this Google Analytics tutorial valuable?

Because the information this analytics data provides can dictate which pages should rank for a particular search query in order to maximize conversions.

In the video above, the webpage that is home to our SEO link building chart drives more traffic than our homepage for the search term “SEO link building.” However, when reviewing goal conversion data by keyword, our homepage generates a much higher percentage of web leads and proposal requests for that same keyword.

So, from an search engine rankings perspective, the page hosting the link building chart is considered more relevant for the term “SEO link building” than our homepage. The ProspectMX.com homepage, in contrast, seems to be the better choice for generating conversions for that same keyword.

Based on these findings, it would be my recommendation to the client that the higher converting page should have a stronger presence for the search term. Perhaps a link building campaign and a review of the on-page optimization could done for that page, with the goal of creating an indented search result of the higher converting page underneath the higher ranking, traffic-generating page.

Search result listings that also include indented listings generally acquire a higher percentage of clicks than surrounding results without an indent. In some studies, the no. 2 search result with an indent even gets more click-throughs than the no. 1 search without an indent.

0 Comments

Study Guide for Becoming A Google Adwords Qualified Professional

study-guide-for-becoming-a-google-adwords-qualified-professional

Adwords Qualified Professional LogoSo I am now officially an Adwords Qualified Professional…woohoo! Just took the test this morning, so I figured it would be helpful to put together a quick study guide for anyone considering taking the exam.

Now, I won’t go into too much detail, since I don’t want to piss Google off, but since I was taken off guard by some of the questions, I think it’s only fair I share my opinion of it.
First off, I did study in the Google Advertising Fundamentals Exam Learning Center – but I basically did a review of the outline, skimmed the info and only read indepth on topics I felt I needed a little extra help in.

That was a mistake. While I am confident in my ability to use and build Adwords campaigns for our client’s benefits, there are still details of the program I could learn more about, and that certainly came up within the test.

For example, while I am familiar with Adwords’s billing policies, I don’t have the details memorized. I would suggest understanding their billing cycle before you take the test. Actually, my biggest recommendation is to simply study the Learning Center topics and take any example quizzes you can find.

Adwords Qualified Professional Study Guide

But if you’re like me, and your experience is more with the actual management and optimization of campaigns, here’s a particular list of subjects you may want to work on:

  1. Billing details, such as the billing cycle, where to go to change preferences, etc.
  2. The tabs/navigation of the Adwords interface and what each section includes.
  3. The pros and cons of the different keyword match types
  4. Editorial and policy guidelines for trademarks, ad formats, etc.
  5. Different ways of “targeting” your campaign
  6. The difference between Search Network and Content Network, and their individual policies. (Hint: Look into any difference in rules or approval policies in the Google Search Network between Google search results pages and the search results pages of other properties within the search network).

I think that’s enough for now – if I give too much away, Google might revoke my Google Adwords Qualified Professional status and I worked too dang hard to give up my pretty logo now!

Speaking of which, apparently it takes 1-3 days for the passed exam to show up in your Company profile. Guess I’ll just have to be patient.

1 Comment

3 Golden Rules of SEO (for the Tech)

3-golden-rules-of-seo-for-the-tech

We find, more often then not, that the people who develop business websites and web applications do not understand the basic principals of search engine optimization. Even if they do understand, they may not care, or may not find it to be an important enough part of the project, deciding to just worry about it later.

It is much easier to consider these tactics during the process of the project rather then trying to modify it after the fact. For all the tech’s out there, I’d like to offer my 3 golden rules of SEO:

  1. Do right to Google, and Google will do right to you.
  2. If you try to trick the search engines, it may work today. But eventually, you will be penalized.
  3. You don’t have to do everything right. Just do more right than your competition.

What do these golden rules actually mean?

Do right to Google, and Google will do right to you.

“Do right to Google” means several things. It means to follow their best practices. Think about what Google’s goal is – they want to provide their users with an efficient way to find the information they are looking for. In order to do that, they have created an algorithm to rank sites in order of which they feel is the most likely internet result to answer the user has queried. Most of the scoring techniques are secret, but the goal is not.

So think about it this way – anything we can do during site development to help Google do their job, is extra points for the site. See the Google Webmaster Tools site for more information.

If you try to trick the search engines, it may work today. But eventually, you will be penalized.

Even though rule number two simply states the opposite as number one, it still is important in its’ own right. If we are doing everything right to Google, we shouldn’t be doing anything wrong, right? Sometimes SEOs will employ methods to optimize their site to unnaturally inflate their rankings. Using these techniques are considered “Black Hat” or “Grey Hat.”

The entire premise of rule no. 2 is that we don’t want to do anything that appears like we are trying to trick the search engines. If so, you may not get caught today or tomorrow. But one day, maybe your site will have points taken away… therefore dropping your ranking.

You don’t have to do everything right. Just do everything more right than your competition.

Last but not least, you don’t have to do everything right. Just make sure you’re doing more things right than your competition. It makes sense… perfect sense.

Just like winning a race, a football game or the even the World Series. In all of those examples, the winners can still make all sorts of mistakes, and still end up winning. They just need to do better then the competition.

So fear not, developers of the world. You don’t have to become an expert overnight. Just take these three solid rules into account while working on your next project.

0 Comments

Top 10 Uses For The Yellow Pages

top-10-uses-for-the-yellow-pages

For many of us that get bombarded on an annual basis with the typical 6 inch, thick, yellow paged book from yester-year and do not feel comfortable with tossing it in the trash for fear getting attacked by many trees.

Here is a list of the Top 10 uses for the books:

10. Use many of them together as building blocks to for an incredible play house;

9.   Ideal book to place on top of head and walking for practicing balance and poise;

8.   Door Stop;

7.   Conduct annual Yellow Page Book throwing contest;

6.   Excellent mini step ladders for the hard to reach places around your house or business;

5.   Ideal for making several hundred paper airplanes;

4.   Excellent seat for those who are vertically challenged;

3.   Use as cones for out of bounds and the end zone during your next pick up game of football;

2.   Great wheel/tire chuck for under vehicles and trailers to prevent movement while parked;

1.   Perfect stand to place your desktop or notebook on for the correct height to conduct your Google searches.

Not to mention if the Google Gods caught you using such an antiquated instrument of Search….. you may have an algorithm change done to you :-)

2 Comments

You Are Not Using Google Mail!?

you-are-not-using-google-mail

I have had several conversations with clients and most recently a very good friend of mine about why they are not using Google Mail for everything. My good friend still has an AOL account that he has had since the time it took 7 days to connect….crazy! I have explained to him and have shown him the greatness of emailing, archiving, SPAM ELIMINATING, scheduling, chatting, document and spreadsheet creating/sharing, customizing and organizing found when you have a Gmail account. He/They simply say I have had my email address for years and I tell them there are tons of ways around that after a few weeks with Gmail, you will kick yourself for not making the switch sooner.

Now this is not a “Plug” for Google or maybe it is…..however, I would love to hear more excuses of why you would use a very limited system for email when there is such an amazing product available. Please tell me what you are thinking?!

I can see if you are concerned about Google going out of business before your existing provider :-)

3 Comments