Results 1 to 7 of 7

Thread: Special Hit Counter

  1. #1
    Join Date
    Jan 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Special Hit Counter

    I have a question regarding hit counters. To anyone's knowledge, is there such a counter that will tell me what time my website is most visited? My webpage is over 300 pages and doing certain types of updates can take awhile.

    Thanks!


    Amie


  2. #2
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    I'm not sure about a "hit counter" that would do that but there are several services that you can use to get that kind of info -- Google Analytics being one.

  3. #3
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    as medyman said this isnt a hit counter.

    this is an analysis. Do a search of google and you shall find there are some free ones floating around. The one I use if called Funnel Web Analyzer. This is freeware software, however you need access to your website log files, which I believe you would need for any analytic tool of this nature.

  4. #4
    Join Date
    Nov 2007
    Posts
    346
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Try Google Analytics. http://www.google.com/analytics

  5. #5
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    Actually, there is one, and it's free, and it's easy to set up, and it updates often, and it is amazing the details you can get.

    Try getting this:

    top 25 browsers to visit your site
    top 25 OSes to visit your site
    top 25 extensions (.com, .co.uk, .de, etc)
    top 25 robots
    top 25 hosts
    top 25 visited pages
    top 25 referrers (which site/page they came from)
    top 25 search keywords to find your site.

    And that's just the over view page! Then you have visits broken down by last year, last month, last week and last day, plus total visits, and unique visits.

    But wait, you also get time stats that show break down of visits in a bar graph for each of those categories (I know my site is most popular in the winter months, during the early morning hours on Thursday through Monday).

    And you get detailed IP stats, and you can set this to save how many you want (mine is set to save the last 400). With that you get the IP, server, host, link referrer and entry page of the visitor, how many times they loaded the page, how many times the came back, how long they stayed, and on and on and on...

    All you have to do is upload it, and add 3 lines of PHP to your pages you want counted (I have mine on over 1200 )

    it's found HERE and is called bbclone - the web counter on steroids. I have been using it happily for over 2 years.
    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

  6. #6
    Join Date
    Nov 2007
    Posts
    346
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks Blizzard, that looks amazing!

  7. #7
    Join Date
    Jun 2006
    Posts
    42
    Thanks
    0
    Thanked 2 Times in 2 Posts

    Default

    You're right Blizzard bbclone is the best free counter avalaible , here is the code snippet to display the total unique visitor sessions to your site

    <?php
    //------ Display Total Unique ----------------------
    require("bbclone/var/access.php");
    $totalcount = $access["stat"]["totalcount"];
    echo "Total Unique Visitors $totalcount<br />";
    ?>
    I have a question if we have graphics images of numbers ( O,1,2,3....) is there a way to display them instead of text numbers ?

    Searching in BBclone's forum and didn't find anything

    Regards

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •