Sweet, very useful tool. Do you own this? If so any plans for a large dump of keywords and a return for them? One by one kinda sucks...
SIG TOO BIG! Maximum 120x60 button and no more than 3 text lines of DEFAULT SIZE and COLOR. Unless your sig is for a GFY top banner sponsor, then you may use a 624x80 instead of a 120x60.
Originally posted by Brad-Wishing Sweet, very useful tool. Do you own this? If so any plans for a large dump of keywords and a return for them? One by one kinda sucks...
i believ it uses the google API tools , pretty sure it must have alimit on queeries per day though
Nah, I don't own it...wish I did. I just thought everyone would find it useful. The folks that wrote that program said that they actually got Google's approval to put it up for the general public to use.
Originally posted by SleazyDream Keyword: sleazydream
URL Pattern: sleazydream.com
Position 1. SleazyDream
Full url: http://www.sleazydream.com/main.html
Your results are being pulled from a different datacenter probably.
These guys steal your signups: Read here.
And sexsearch.com profit from it.
Check out which sponsors pay thieves here.
And here's a list of clean sponsors.
the tool is nice
however some additional features would be useful
for example...
it would be useful if you could create an account
add all your domains and favorited keywords in there and get the ranking for all domains
right now it is faster for me to enter the keywords i target on and check my position.....
i mean...
when you appear on position 2348756 for keyword XYZ this tool is more useful hehe
Originally posted by SleazyDream Keyword: sleazydream
URL Pattern: sleazydream.com
Position 1. SleazyDream
Full url: http://www.sleazydream.com/main.html
Originally posted by flashfreak doesn't work good!
adultgamestemple.com is #9 on google for "adult games" and googlerankings reports #14
this is a good tool but it actually gives different results from the mainstream google serps.
The results differ depending on the number of results you choose.As most surfers use googles default of 10 results per page they will often get different listings than the ones you get using this tool.
Its useful but not completely accurate.
Hey Johny Traffic, you probably have me confused with someone else. My "Mr Mom" username is one I picked out based on my mood at the moment. Matter of fact, I wish I could change it but haven't looked into how to do that, if it is possible. Sorry I'm not your "blast from the past."
#!/usr/bin/perl
#userp.pl
#this script was originally authored by brett tabke of webmaster world
#he wrote it in 30 minutes... about what it should take
#don't worry, he built it off an example
#and it didn't even work
#here is my working version
if ($query eq "-h" ||!$query) {
print qq|rank check:
[keyword] [url] [start] \n
Keyword is any search term (surround any kw with a space in it with quotes)
URL is the url to search for.
Start is an optional starting position\n
examples:
webmaster http: //www.fred.com
"mp3 rippers" http: //www.mp3.com
\n|;
exit;
}
#$query =~ s/\&/\&/g; #<- second & should be & a m p; (it's a display issue with the board)
$query =~ s/</\</g;
$query =~ s/>/\>/g;
$query =~ s/\"/\"/g;
$query =~ s/\'/\'/g;
$service = SOAP::Lite->service('file:./GoogleSearch.wsdl');
#$max=10;
my $endres = 120;
my $start_res = 1;
my $count = $start_res;
for($sres; $sres < $end ; $sres++) {
$url = $result->{resultElements}->[$sres]->{URL};
#print "\n".$url." ?= ";
#print $qurl;
#print " #".$count."\n";
if ($url eq $qurl) {
print "SERP rank of url: <font color=\"\#00CC00\">$qurl</font> for query: <font color=\"\#00CC00\">$query</font> is <font color=\"\#00CC00\">#$count</font>\.<br>";
$found++;
}
else {
}
$count++;
}
}
}
print "SERP rank of url: <font color=\"\#00CC00\">$qurl</font> for query: <font color=\"\#00CC00\">$query</font> was not found in the top $endres results.<br>" if !$found;
Comment