Forum Moderators: open
Subject and description says most of it...
I'm seeing some of my regular key words and phrases demarcated by %% in my logfiles and I can't suss out any pattern as to if there is anything about this that is useful..
Are these from a type of browser, type of engine, or completely useless?
Yes, unfortunately, I was unable to use site search here to learn about it...
Thanks,
C.
It's a bit hard to get an idea about what it is without seeing an example. Normally, a keyword would not be recorded in a log file unless it was part of an URL (on site or in querystring) or part of an User-Agent or referrer string.
/claus
yes, also in logs as:
httx://search.yahoo.com/search?p=%22frozen+widget%22&ei=UTF-8&fr=f
httx://ms101.mysearch.com/jsp/GGmain.jsp?searchfor=%27blue+widgets%2
sometimes with the "22%"
httx://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=%22sample+blue%22+widgets
etc.
C.
>> %22sample+blue%22+widgets
- means: "sample blue" widgets
Try entering the queries you posted in the address bar of your browser and watch the search box on the page, then you'll see it.
/claus
HTML Entities [google.com]
Looking around with Google (not to easy, the word "escape" occurs is so many contexes) I was led to How do I decode or create those %-encodings on the web? [perldoc.com], where I learned that these % escapes are just the hex value of the ASCII symbol, a table is found at AsciiTable.com [asciitable.com].
- escape()
- unescape()
I even found a translator using them. Link: [earthonly.com...]
/claus