Adobe Dreamweaver Forums



Last 10 THreads :         Making constraints on a symbol... (Last Post : sirkibble2 - Replies : 0 - Views : 1 )           »          Creating a boundry in the stage... (Last Post : fazstp - Replies : 2 - Views : 3 )           »          Director or Flash? (Last Post : Sean Wilson - Replies : 1 - Views : 2 )           »          DW8 Activation not working (Last Post : moonliner - Replies : 0 - Views : 1 )           »          Re: Mouse capture won't activate (Last Post : robertnagle - Replies : 0 - Views : 1 )           »          help! my FB3 has gone insane! (Last Post : peteandrus - Replies : 0 - Views : 1 )           »          help! my FB3 has gone insane! (Last Post : peteandrus - Replies : 0 - Views : 1 )           »          How come the html is being displayed, and not the link (Last Post : Skaterstu - Replies : 0 - Views : 1 )           »          Another way to accomplish this (Last Post : Andy-K - Replies : 2 - Views : 3 )           »          HELP! Cannot upload files in DW CS4 (Last Post : dan@hoppernet.org - Replies : 6 - Views : 7 )           »         


Home Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
User Info Statistics
Go Back   Adobe Dreamweaver Forums > Other Macromedia/Adobe Products > Cold Fusion > Getting Started
 
Tags:



Reply
  #1 (permalink)  
Old 10-01-2008, 03:17 PM
xstortionist
 
Posts: n/a
Diggs:
Default is there a way to track how many times a link isclicked?

Hi,
I've been looking around the net for CF scripts on how to track how many times
a link is clicked. I couldn't really find anything that was out there to help
me with the problem.

Does anyone know how to see how many times a link is clicked on? I just want
to see how many times a link is clicked on compared to how many leads are
captured so I can see how well our forms are doing?

Please let me know if you have any information on click tracking with CF.

Thank You

Derek Bess



Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 10-01-2008, 03:17 PM
Dan Bracuk
 
Posts: n/a
Diggs:
Default Re: is there a way to track how many times a link isclicked?

link to a cf page that updates something and cflocates to the page the user
thought he selected.

The downside of this approach is that an attentive user might see something
unexpected in their status bar.

Reply With Quote
  #3 (permalink)  
Old 10-01-2008, 03:17 PM
xstortionist
 
Posts: n/a
Diggs:
Default Re: is there a way to track how many times a link isclicked?

what's the method of achieving this though? Perhaps coldfusion isn't the way to go with click tracking. Perhaps there is software out there that can track the clicks like Google does with adwords?
Reply With Quote


  #4 (permalink)  
Old 10-01-2008, 03:17 PM
xstortionist
 
Posts: n/a
Diggs:
Default Re: is there a way to track how many times a link isclicked?

what's the method of achieving this though? Perhaps coldfusion isn't the way to go with click tracking. Perhaps there is software out there that can track the clicks like Google does with adwords?
Reply With Quote
  #5 (permalink)  
Old 10-01-2008, 03:17 PM
tclaremont
 
Posts: n/a
Diggs:
Default Re: is there a way to track how many times a link isclicked?

Put a database insert on your initially linked page, and then, further down the page, a CFLOCATION to the ultimately desired page.
Reply With Quote
  #6 (permalink)  
Old 10-01-2008, 03:17 PM
tclaremont
 
Posts: n/a
Diggs:
Default Re: is there a way to track how many times a link isclicked?

Put a database insert on your initially linked page, and then, further down the page, a CFLOCATION to the ultimately desired page.
Reply With Quote


  #7 (permalink)  
Old 10-01-2008, 03:17 PM
Adam Cameron
 
Posts: n/a
Diggs:
Default Re: is there a way to track how many times a link is clicked?

Do you want to know how many times a specific link has been clicked on, or
do you want to know how many times the target page has been visited?
They're two slightly different things.

The former measures how many people actually clicked a hyperlink on "page
A", which links through to "page B". It measures how good "page A" is at
directly people to "page B".

The latter just measures how many people visit "page B" (which could be
from a link on a page other than "page A", like a search result in Google,
or another site pointing to "page B" or a stored bookmark or something.

The web server will already be tracking every page that gets visited, so
there's nothing special you need to do if you're just wanting to see how
often "page B" is visited. Just parse the logs.

If you are really interested in the link on "page A", then there's a chance
the web server can also be set to log the REFERER for any request, in which
case all you need to do is to set that and then parse the log file.

If it cannot do that, then you can stick some code on "page B" which stores
the referer value of the request (eg: in a DB table), and subsequently
analyse where the referers came from, and whether it was "page A".

--
Adam
Reply With Quote
  #8 (permalink)  
Old 10-01-2008, 03:17 PM
Adam Cameron
 
Posts: n/a
Diggs:
Default Re: is there a way to track how many times a link is clicked?

Do you want to know how many times a specific link has been clicked on, or
do you want to know how many times the target page has been visited?
They're two slightly different things.

The former measures how many people actually clicked a hyperlink on "page
A", which links through to "page B". It measures how good "page A" is at
directly people to "page B".

The latter just measures how many people visit "page B" (which could be
from a link on a page other than "page A", like a search result in Google,
or another site pointing to "page B" or a stored bookmark or something.

The web server will already be tracking every page that gets visited, so
there's nothing special you need to do if you're just wanting to see how
often "page B" is visited. Just parse the logs.

If you are really interested in the link on "page A", then there's a chance
the web server can also be set to log the REFERER for any request, in which
case all you need to do is to set that and then parse the log file.

If it cannot do that, then you can stick some code on "page B" which stores
the referer value of the request (eg: in a DB table), and subsequently
analyse where the referers came from, and whether it was "page A".

--
Adam
Reply With Quote
  #9 (permalink)  
Old 10-01-2008, 03:17 PM
Ian Skinner
 
Posts: n/a
Diggs:
Default Re: is there a way to track how many times a link is clicked?

xstortionist wrote:
> what's the method of achieving this though? Perhaps coldfusion isn't the way to go with click tracking. Perhaps there is software out there that can track the clicks like Google does with adwords?


As well as all that Adam said, there is Google Analytics that has this
type of functionality if you are willing to open your site to them by
plugging the required JavaScript into your site.

Reply With Quote


  #10 (permalink)  
Old 10-01-2008, 03:17 PM
Ian Skinner
 
Posts: n/a
Diggs:
Default Re: is there a way to track how many times a link is clicked?

xstortionist wrote:
> what's the method of achieving this though? Perhaps coldfusion isn't the way to go with click tracking. Perhaps there is software out there that can track the clicks like Google does with adwords?


As well as all that Adam said, there is Google Analytics that has this
type of functionality if you are willing to open your site to them by
plugging the required JavaScript into your site.

Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



© Camley Interactive (camley.info) 2008 - all logos and images are copywrite their respective owners.
Proud member of the Camley Interactive Network
All times are GMT. The time now is 02:27 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
Inactive Reminders By Mished.co.uk