Forum Moderators: buckworks & webwork

Message Too Old, No Replies

Parking Stats - what do you get?

         

ergophobe

4:37 am on Feb 24, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



I have a small handful of undeveloped domains. Real small handful, but I decided, "why not ponit them at the Namedrive DNS and see what happens?" They don't seem like they would get type in traffic, but why not?

So I did, and there's a small trickle of hits, but Namedrive says absolutely nothing about about the traffic source, UA or anything else. Is that typical of parking services or is ND just crap? I mean, I would expect that most of these visitors are either bots or coming from the WHOIS record. I wold like to know which ones are direct nav and which ones aren't - it doesn't need to be full blown analytics, but at least something useful.

Is there any way to get that for parked domains, or do you just need to host it and put up your own analytics?

Webwork

11:57 pm on Mar 8, 2009 (gmt 0)

WebmasterWorld Administrator 10+ Year Member Top Contributors Of The Month



Varies by domain parking service and not particularly robust from what I've seen with DomainSponsor and now Fabulous. Not sure about other service providers.

They provide nation of origin info, referrer/search engine query (if applies, surprising how many folks still type domain+com into SE query box), and spidering info.

Not all services require you to use their DNS. I haven't used any other version of domain redirection but it's my understanding that's the way to go if you want to maximize your data collection.

Sorry about the late reply. I've been away for awhile, chaperoning Pop on a trip to the Sunshine State.

webdoctor

12:30 pm on Mar 10, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Namedrive allows you to keep your own nameservers and hosting and serve the ND content to visitors using a frameset like this:


<HTML>
<FRAMESET ROWS="*" FRAMEBORDER="0" BORDER=0 BORDER="0">
<FRAME SRC="http://www.ndparking.com/example.com">
</FRAMESET>
</HTML>

I'm wondering - is there any way to combine this with e.g. Google Analytics tracking?

ergophobe

8:15 pm on Mar 10, 2009 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Interesting. Not sure how GA would work in frames, but at least you could get some data.

If they let you use iframes (should be the same), you could just put the GA on the page. You wouldn't get much data, but at least you would know a little better where traffic came from.

And you could easily do this for all your domains if you don't have too many. I suppose this is a lot more trouble than it's worth except for really good domains with some good numbers.

- point them all at the same file, say an index.php

- then just grab the requested domain and insert it into the frame source and key that to your domain profile in GA

<html>
<iframe src="http://ndparking.com/"<?php print $_SERVER['SERVER_NAME']; ?>
<p>Make an offer link or affiliate offer</p>
</iframe>

<?php
$gaProfileArray = array(
"site1.com" => 1,
"site2.com" => 2);

$gaProfileNum = (inarray($_SERVER['SERVER_NAME'], $gaProfileArray) ? $gaProfileArray[$_SERVER['SERVER_NAME']] : 0;

if ($gaProfileNum) {
?>
Insert GA code here

<?php
}
?>

Then in the GA code the line

var pageTracker = _gat._getTracker("UA-243849-1");

simply becomes

var pageTracker = _gat._getTracker("UA-243849-<?php print $gaProfileNum;?>");