English 中文(简体)
logging incoming traffic from google Sponsored Links clicks
原标题:

a client asked me to write a script that will log visitors reaching hs site via google adds (Sponsored Links). the idea is to keep track of: 1.users ip 2. what add they clicked 3. what key words they submitted in the Google search that led the them to the result page in which that add was displayed

i will attempt that in php. are there any "tools" at my disposal (objects, constants etc) that can be used to accomplish this?

问题回答

Are you aware that Google Analytics can be configured to track AdWords clicks?

Edit:

There are a variety of other analytics services that you can use, including Mixpanel, KISSmetrics, and Heels Conversion Tracking.

By far the easiest way to just log them is to use your regular server (Apache or Ngnix) logs and manual tagging, whereby you append special parameters to your destination URL like so: http://stackoverflow.com/?utm_source=google&utm_medium=cpc&utm_term=Logging%2BPaid%2BSearch&utm_content=Question%2B1&utm_campaign=StackOverflow%2BQuestions





相关问题
Best logging approach for composite app?

I am creating a Composite WPF (Prism) app with several different projects (Shell, modules, and so on). I am getting ready to implement logging, using Log4Net. It seems there are two ways to set up the ...

How to make logging.debug work on Appengine?

I m having a tough time getting the logging on Appengine working. the statement import logging is flagged as an unrecognized import in my PyDev Appengine project. I suspected that this was just an ...

How to validate Java logging properties files?

I have a basic facility for allowing users to remotely apply changes to the logging files in my application. Some logs are configured using java.util.logging properties files, and some are configured ...

Logging SAS scripts

I ve been developing a lot of Java, PHP and Python. All of which offer great logging packages (Log4J, Log or logging respectively). This is a great help when debugging applications. Especially if the ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

热门标签