HighDots Forums  

Do Click monitor utils affect SE spidering?

Search Engine Optimization Discussion about SEO/Search Engine Optimization (alt.internet.search-engines)


Discuss Do Click monitor utils affect SE spidering? in the Search Engine Optimization forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
xyZed
 
Posts: n/a

Default Do Click monitor utils affect SE spidering? - 10-02-2003 , 03:15 PM






I'm looking into using a click monitor program to monitor how many
times certain links are clicked. Can Google (etc.) follow these links?
Are there good and bad ones in this regard?

I'm currently looking into Clicks counter Pro
http://www.mitridat.com/clicks-counter/index.html

but they haven't answered my e-mail query on this matter.
--

We've all got one - www.washerhelp.com

[remove mymask_ to email]

Reply With Quote
  #2  
Old   
xyZed
 
Posts: n/a

Default Re: Do Click monitor utils affect SE spidering? - 10-04-2003 , 11:02 AM






There is circumstantial evidence that on Thu, 02 Oct 2003 19:15:17
GMT, xyZed <xyzed (AT) mymask_xyzed (DOT) co.uk> wrote
__________________________________________________ _____

Quote:
› I'm looking into using a click monitor program to monitor how many
› times certain links are clicked. Can Google (etc.) follow these links?
› Are there good and bad ones in this regard?

› I'm currently looking into Clicks counter Pro
http://www.mitridat.com/clicks-counter/index.html

› but they haven't answered my e-mail query on this matter.
Does anyone know the answer to this? I saw one such util confess that
spiders would have difficulty crawling the modified links which is why
I'm concerned.

--

We've all got one - www.washerhelp.com

[remove mymask_ to email]


Reply With Quote
  #3  
Old   
Adrienne
 
Posts: n/a

Default Re: Do Click monitor utils affect SE spidering? - 10-04-2003 , 01:32 PM



Gazing into my crystal ball I observed xyZed <xyzed (AT) mymask_xyzed (DOT) co.uk>
writing in news:94otnv0od29afosjo0kcordi3j66sa4i61 (AT) 4ax (DOT) com:

Quote:
There is circumstantial evidence that on Thu, 02 Oct 2003 19:15:17
GMT, xyZed <xyzed (AT) mymask_xyzed (DOT) co.uk> wrote
__________________________________________________ _____

› I'm looking into using a click monitor program to monitor how many
› times certain links are clicked. Can Google (etc.) follow these
links? › Are there good and bad ones in this regard?

› I'm currently looking into Clicks counter Pro
http://www.mitridat.com/clicks-counter/index.html › › but they
haven't answered my e-mail query on this matter.

Does anyone know the answer to this? I saw one such util confess that
spiders would have difficulty crawling the modified links which is why
I'm concerned.

If you have access to server side script, you can roll your own. The
example shown below is ASP, but PHP or others are similar.

1. Create a database table, called maybe redirect, with at least three
fields: id, url, hits
2. Assign each link an id, then set the link up like <a href="rd.asp?
id=id">Name of Link</a>, where id is the id number that you assigned
3. On the rd.asp (or whatever server side language), have the script update
the increase the value of hits by one, then redirect to the url of that id

<%
dim id
dim update
dim sql
dim redirect

id = request.querystring("id")

update = "UPDATE redirect SET hits = hits + 1 WHERE id = " & id
Conn.Execute update

Set Rsrecordset = Server.CreateObject("ADODB.Recordset")
sql = "SELECT url from redirect WHERE id = " & id
rsrecordset.Open sql, Conn

redirect = trim(rsrecordset("url"))
rsrecordset.Close
set rsrecordset = nothing

response redirect redirect
response.end
%>
--
Adrienne Boswell
Please respond to the group so others can share
http://www.arbpen.com


Reply With Quote
  #4  
Old   
xyZed
 
Posts: n/a

Default Re: Do Click monitor utils affect SE spidering? - 10-06-2003 , 07:25 AM



There is circumstantial evidence that on Sat, 04 Oct 2003 17:32:01
GMT, Adrienne <arbpen (AT) sbcglobal (DOT) net> wrote
__________________________________________________ _____


Quote:
› If you have access to server side script, you can roll your own...
Thanks for that. I was hoping to use something like click-through
though because of all the many stats it can produce and for the
relatively small price it would save me a lot of time.


--

We've all got one - www.washerhelp.com

[remove mymask_ to email]


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



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.