Forum Moderators: open
Is there a solution which exisits to give me this information without me having to have access to my logs?
Thanks
I've been in Google off and on for the last 2 weeks, so I KNOW she visited.
I'm not at all handy with JAVA script. Can you give me an example of the code?
Thanks
While I have no idea whatsoever what click trails are I´m afraid you would have to use a server side solution. If you can use PHP or some other server side scripting language with Yahoo stores then you could build your own logfiles or log visits to a database.
BTW despite the similarities in their name JavaScript and Java are not related. JavaScript is not a scripting version of the Java language.
Andreas
The only thing I can really think of is to put a link to an external document with no other references to that external document. Google should request this external document some time after they hit your site (not each page). It will not be an accurate account, but give you some idea when it is around.
I have talked with Yahoo about this in the past and they would not budge. No logs and no 'click trail' file downloads period. You really have no good option since the only way to really see bots is servers side which you have no access to.
-------------
andreasfriedrich, thanks for stepping in before I frustrated someone. The click trails function is a utility in the Yahoo store manager which shows visitors by IP showing which pages where requested and at what time. This is a very good thing to have if you can see it all, but all they give you is a link to see one at a time. Very frustrating to use and worthless if you have many visitors. It would take you all day to get any idea of what is going on.
So this trick wouldn't work to track SE bots?
Add this to the head of the Yahoo page(s)...
<script language=Javascript src="path/to remote/server.php"> </script>
And server.php looks like this...
<?
$id = uniqid(ID);
echo "document.write('IP: $REMOTE_ADDR / Linked from: $HTTP_REFERER / UA: $HTTP_USER_AGENT / ID: $id');";
?>
Which would return something like this...
IP: 127.0.0.1 / Linked from: [localhost...] / UA: Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461) / ID: ID3dd9225a2cd4f
Of course you wouldn't "echo" the results to the Yahoo page, but save them to a log on the remote server.
CAVEAT:
This depends on a reliable remote server. If it's down a lot, or slow, then your store visitors will suffer.