Thread: Supertracker

Page 3 of 33 FirstFirst 1234513 ... LastLast
Results 21 to 30 of 324
  1. #21
    Join Date
    Mar 2007
    Posts
    27
    Plugin Contributions
    0

    Default Re: Supertracker

    Quote Originally Posted by High Octane View Post
    Would somebody be so kind as to e-mail me the files?
    It seems the site they where hosted on doesn't have them anymore.

    Thanks in advance

    sales at MoparPartSales dot com
    Same problem here, if someone have it i wold like it to try this mod,
    Thank you

  2. #22
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Supertracker

    Supertracker 1.0 has been uploaded to the Zen Cart downloads area.
    No code changes. Readme is updated.

    -----------
    Supertracker for Zen Cart
    Version 1.0 (Ported to Zen Cart by Andrew Berezin - 05-09-07)
    Based on Supertracker v.3.20b (01-11-05) by Mark Stephens

    Download from:
    http://www.zen-cart.com/index.php?ma...roducts_id=683

    Support forum:
    http://www.zen-cart.com/forum/showthread.php?t=65040

    Supertracker records statistics for each user arriving at your shop and allows merchants to generate various reports.

    Straight forward installation. No core files overwritten.

    Download latest GeoIP.dat IP database separately
    (Required but free - see readme)
    Download flags separately
    (Optional and free - see readme)

    Supertracker records the following data:
    ====================
    • Referring page
    • Referring query (allows access to keywords used in search engine)
    • Landing page (including query string - important for PPC campaign assessment)
    • Arrival time / exit time / exit page
    • IP address
    • Country code / country name
    • Customer's cart contents
    • Number of clicks on shop (accuracy is not 100% as this is recorded based on session ID)
    • Products viewed / Categories viewed
    • Customer ID (if signed in)
    • Order ID (if order was placed)
    • Were products added to cart? (true/false)
    • Did the customer Checkout? (true/false)

    Reports Generated:
    ====================
    • Top Referrers
    • Top Sales Generating Referrers
    • Visiting Countries Stats
    • Search Keywords Used - Totals
    • Search Keywords Used in Last 24 Hours
    • Search Keywords Used in Last 3 Days
    • Search Keywords Used in Last Week
    • Search Keywords Used in Last Month
    • Top Exit Pages (No Sale)
    • Top Exit Pages (No Sale, but added to cart)
    • Average Clicks on Site by Referrer
    • Average Time Spent on Site by Referrer
    • Products Viewed Report
    • Last Ten Visitors

    History
    =======
    v.1.0.0 05.09.07 a_berezin
    (Initial ZC version - based on ported v.3.20b - 01.11.05)
    + Code optimization
    + Updated Readme (08.04.07)

  3. #23
    Join Date
    Jan 2004
    Location
    UK
    Posts
    1,230
    Plugin Contributions
    0

    Default Re: Supertracker

    Small typo in label/constant:

    admin/supertracker.php

    Lines c. 272 - 280

    PHP Code:
        case 'landing':
          
    $title TEXT_LANDING_PAGE;
          
    $headings[] = TEXT_SERIAL;
          
    $headings[] = TEXT_LANDING_PAGE;
          
    $headings[] = TEXT_NUMBER_OF_OCCURRENCES;
          
    $row_data[] = 'landing_page';
          
    $row_data[] = 'total';
          
    $tracker_query_raw="SELECT landing_page, landing_page_name, COUNT(*) as total FROM " TABLE_SUPERTRACKER " GROUP BY landing_page ORDER BY total DESC";
          break; 
    Needs 'TABLE_' in front of 'TEXT_LANDING_PAGE':

    PHP Code:
        case 'landing':
          
    $title TABLE_TEXT_LANDING_PAGE;
          
    $headings[] = TEXT_SERIAL;
          
    $headings[] = TABLE_TEXT_LANDING_PAGE;
          
    $headings[] = TEXT_NUMBER_OF_OCCURRENCES;
          
    $row_data[] = 'landing_page';
          
    $row_data[] = 'total';
          
    $tracker_query_raw="SELECT landing_page, landing_page_name, COUNT(*) as total FROM " TABLE_SUPERTRACKER " GROUP BY landing_page ORDER BY total DESC";
          break; 

  4. #24
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Supertracker

    Quote Originally Posted by Pixxi View Post
    Small typo in label/constant:
    admin/supertracker.php
    Lines c. 272 - 280
    Needs 'TABLE_' in front of 'TEXT_LANDING_PAGE':
    Thanks Pixxi.

    Would you know which Supertracker report(s) where this issue manifests itself?

    Woody

  5. #25
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Supertracker

    Quote Originally Posted by Woodymon View Post
    Would you know which Supertracker report(s) where this issue manifests itself?
    I see now. If you don't change the define the two Landing Page reports will not show in the drop down. Thanks for the heads up.

    BTW some of the features in Supertracker are disabled within the mod code. When Andrew ported he did not plan to further develop this mod, rather he was working on releasing his own tracking mod with features from Supertracker, User Tracking, BBClone, etc. But with Andrew saying goodbye to the Zen Cart community looks like that will never happen. So unless a developer picks this mod up to improve on it don't expect any bug patches or complex fixes or updates to be released. But might as well post your ideas and wishes for this mod in case a developer does pick up on it.

    Woody

  6. #26
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Supertracker

    In YOUR_ADMIN/includes/languages/english/supertracker.php

    After Line 65
    INSERT

    define('TEXT_LANDING_PAGE', 'Landing Page');


    It doesn't really matter where you insert it but that seemed like a nice location ;-)

    Woody

  7. #27
    Join Date
    Jun 2007
    Location
    Wagener, SC
    Posts
    27
    Plugin Contributions
    0

    Default Re: Supertracker

    Hi Woody,

    Does the release of SuperTracker in the downloads area include all the fixes discussed in this thread? Including the sql patch from Andrew on the first page of this thread?

    I just want to know where I need to start from before I attempt to install this mod.

    I love this mod! I've seen it in action on an OSC store. Would love to get it up on my Zen site.


    Thanks,
    Kevin

  8. #28
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Supertracker

    Quote Originally Posted by StoryBook View Post
    Does the release of SuperTracker in the downloads area include all the fixes discussed in this thread? Including the sql patch from Andrew on the first page of this thread?
    As far as I can see no code fixes were discussed or posted to this thread. Only sql patch by Andrew in post #3.

    Regarding the questin on if the updated sql patch is in the available download version of Supertracker mod, it is easy enough for you to check. Just download and compare!

    At bottom of the announce post:
    v.1.0.0 05.09.07 a_berezin
    (Initial ZC version - based on ported v.3.20b - 01.11.05)
    Since the release date of the mod, as listed above, is AFTER Andrew's sql fix posting, it could be presumed the updated sql patch would be in version in the ZC downloads area. But if you do not like to assume things then as stated it would easy enough for you to compare with the sql posted on the forum and rectify.

    At any rate Andrew would not have updated the mod version number just because of a slightly altered sql patch.

    But for you I just checked and the version in the downloads area indeed contains the updated sql patch. So please proceed.

    Woody

  9. #29
    Join Date
    Jun 2007
    Location
    Wagener, SC
    Posts
    27
    Plugin Contributions
    0

    Default Re: Supertracker

    Thanks Woody!

    Got it installed and it works flawlessly, as far as I can tell right now. Just as soon as I've collected enough data, I'll look over the wealth of information.

    I do appreciate the help.

    I think it's important to remember, that even though a lot of Zen Cart store owners are ahead of the curve, and have a good working knowledge of coding (or at least as far as ZenCart goes), our primary vocation is in what we sell, not how we sell it.

    I am, after all, a potter. I make cookie jars.

    The Zen Cart community is great, and I hope some day I'll be able to give back some of the help I've received thus far.

    Thanks again!
    StoryBook
    Last edited by StoryBook; 12 Aug 2007 at 03:16 PM.

  10. #30
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Supertracker

    Quote Originally Posted by StoryBook View Post
    I think it's important to remember, that even though a lot of Zen Cart store owners are ahead of the curve, and have a good working knowledge of coding (or at least as far as ZenCart goes), our primary vocation is in what we sell, not how we sell it. I am, after all, a potter. I make cookie jars.
    I recommended comparing files as it appeared that you did not know you could do that for sql files (otherwise you probably would have done that and not posted your question). sql patch files are just text files. Obtain a good compare tool and learn the basics in using it. If running Windows try WinMerge or Beyond & Compare. Just some hints to help you become a little more self-sufficient in Zen Cart shopowner basics.

    I need to visit my potters support website and ask them why my cookie jar broke when I dropped it and how to glue it back together it. Hope they understand my primary vocation is eating cookies, not fixing cookie jars.

    Woody

 

 
Page 3 of 33 FirstFirst 1234513 ... LastLast

Similar Threads

  1. Supertracker
    By enquirer66 in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 2 Mar 2011, 08:37 PM
  2. SuperTracker
    By ma.r.a in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 11 Feb 2011, 08:19 PM
  3. Supertracker referrals?
    By mlbacher in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 24 Aug 2009, 07:53 PM
  4. supertracker mod
    By confused_aswell in forum General Questions
    Replies: 2
    Last Post: 1 Aug 2008, 12:55 PM
  5. Supertracker Add-on
    By bcmartinez in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 19 May 2006, 01:24 AM

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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR