My traffic is manageable enough that I would like to see them all.
Google's new Search Query Report shows a few and lists the majority as "other queries" What use is that?
Is there a way to get more detail?
I have a client who is trying to run a campaign that is rather unusual with negative keywords.
Say they sell "Britney Spears Apples" but they recently got a legal spanking for using the term "Britney Spears" They want to come up for searches of "Britney Spears Apples" without actually buying that term. Instead they want to buy "Apples" and try to negative out all the other terms "green apples" "washington apples" etc.
I know that Google would allow them to buy a trademarked term...just can't use it in their ad text. But they don't care about Google. They don't want to take the chance of being sued again.
So the question becomes how can I get good detail on every search phrase so I can start to negative out everything but "Britney Spears Apples"
Thanks
More details here -
[adwords.blogspot.com...]
Call an include file from within your landing page. Lets call it tracker.inc
tracker.inc writes to a text file with date/time, ip-address, and referer into a logfile (testlog.txt).
Don't forget to set write permissions for the log file.
Code for tracker.inc is here:
$timestamp=date("Y/m/j H:i:s");
$addr=getenv("REMOTE_ADDR");
$ref=getenv("HTTP_REFERER");
$myfile="/testlog.txt";
$fd=fopen($myfile,"a");
$success=fwrite($fd, $timestamp."¦".$addr."¦".$ref ."\n");
fclose($fd);
The textfile you can import into MS Excel and select all lines beginning with http:// www .google .tld/search?hl=en
Do a Text to columns conversion by using & as delimiter.
Next you get a column where the data beginns with q= and the original query.
I know, it is a little complicated, but it helps me in finding the real search phrases.
But PHP is probably beyond my skill set. Doesn't your whole page have to be in PHP to use that?
I really need something though. I just did a search query report for one campaign, and out of 32 searches, 23 are the so-called "other unique queries. Since the others were all my narrow search phrases, I would assume those "other unique queries" are probably the garbage that I need to negative keyword.
Doesn't your whole page have to be in PHP to use that?
No, it doesn't.
Copy it just like this into your .html page:
<%
$timestamp=date("Y/m/j H:i:s");
$addr=getenv("REMOTE_ADDR");
$ref=getenv("HTTP_REFERER");
$myfile="/testlog.txt";
$fd=fopen($myfile,"a");
$success=fwrite($fd, $timestamp."¦".$addr."¦".$ref ."\n");
fclose($fd);
%>
If you have a lot of traffic, that file could get pretty big, though.
more precise than google's Search Query Report
do your own web server log analysis to get this data