I am getting no response from Google for any search phrases I have set up. I get them for Yahoo and Bing. But if I search Google manually for some of the phrases, the site is found. 15th for one phrase, 40th for another for example. Not sure why.

Comments

omer_sim’s picture

Hi,
Is someone found a solution for google reports?
Thanks
Omer

nicolasM’s picture

Subscribing

artscoop’s picture

Yes, line 1018,
preg_match_all('/ class=r><a href="([^"\?]+?)["\?].*?class=l>/', $html, $links);
must be
preg_match_all('/ class="r"><a href="([^"\?]+?)["\?].*?class=l>/', $html, $links);

Not everyone experienced this before. It is because of the new GG search pages.

Tilt_11’s picture

Thanks, but it didn't solve then problem for me...Still no report from Google.

j0nathan’s picture

Hi,
I had the same issue as #0 and now resolved with #3.

j0nathan’s picture

It seems the report is not complete with this change (#3). It reports some keywords with google.com but not all. There is a keyword the site is second in Google when I search, but it shows "-" in the report.

pixture’s picture

Please try the following change.

Current:

preg_match_all('/ class=r><a href="([^"\?]+?)["\?].*?class=l>/', $html, $links);

New:

preg_match_all('/ class="r"><a href="([^"\?]+?)["\?].*?class=l.*?>/', $html, $links);
j0nathan’s picture

Hi,
It doesn't work very well either with this:
preg_match_all('/ class="r"><a href="([^"\?]+?)["\?].*?class=l.*?>/', $html, $links);

pixture’s picture

@J0nathan,

That's strange. It works for me. Could you send me the page source (generated source after Javascript is executed) of the google search results in which SEO watcher does not pick up the correct ranking?

Thanks,

pixture’s picture

Status: Active » Fixed

Dev snapshot (released on Sep 21, 2010) has the fix stated in #7.

j0nathan’s picture

I've just installed the new dev version. I will provide more information if I have inconsistency between my own searches and the reports.

jeanpierre’s picture

Hi,
#7 works for me !
Thanks for the fix

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.