Page 42 of 86 FirstFirst ... 32404142434452 ... LastLast
Results 411 to 420 of 858
  1. #411
    Join Date
    Feb 2007
    Posts
    284
    Plugin Contributions
    0

    Default Re: User tracking mod

    OK, my mistake by copying
    <?php if (ZEN_CONFIG_USER_TRACKING == 'true') { zen_update_user_tracking(); } ?>
    to the wrong template.

    It is working now.

  2. #412
    Join Date
    Feb 2007
    Posts
    284
    Plugin Contributions
    0

    Default Re: User tracking mod

    Quote Originally Posted by inola View Post
    I installed the user tracking mod yesterday and really followed the instructions. I can't get it working.
    Can anyone please help me out?

    In my Tools I now have 2 options:

    - User Tracking, wich shows the following:
    User Tracking Start: JanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecember010203 0405060708091011121314151617181920212223242526272829303120102009200820072006*
    This tool allows for you to see the click patterns of the users through your site, organized by sessions. This data can be very valuable to those looking for how to improve your site by watching how customers actually use it. You can surf back and forth through the days by using the link below.
    SELECT VIEW: Back to Feb 23, 2010

    Now displaying the latest CONFIG_USER_TRACKING_SESSION_LIMIT sessions of this 24 hour period. You can also purge all records past the last 72 hours of data.

    Delete all info from IP-Address CONFIG_USER_TRACKING_EXCLUDED purge all records

    There have been 0 page views in this 24 hour period.
    There have been 0 page views in this 24 hour period. Total number of users: .

    - User Tracking Config, wich shows nothing

    In my configurations I now have 1 option:
    - User Tracking Config, wich shows nothing

    Please help me out

    Greetz
    Laura
    troubelshootings: (from the readme file)
    1- first check again if all files are correctly located in the zen directories.
    2- go to phpmyadmin, in table, configuration, delete all values related to user tracker , in table configuration-group, delete the table user tracking
    3- try install sql package with alternative methode (if the first time was phpmyadmin, so this time do with zen admin add sql patch tools)
    4- chack again if you have added two modifications to tpl.footer.php and footer.php (Make sure it is the right template)

    Good luck

  3. #413
    Join Date
    Nov 2009
    Posts
    4
    Plugin Contributions
    0

    Default Re: User tracking mod

    Quote Originally Posted by Pinghead View Post
    To all the users of the usertracking mod!

    I'm in the process of upgrading to 1.3.0.1 from 1.2.6, and translating the english files to swedish (8815 lines of code...) and fixing the other mods I've installed.

    Please bear with me, this will take a while.

    In the meantime, post problems and solutions to the usertracking mod in this thread.
    Can you help me out with my user tracking?
    My admin shows nothing. If possible I would ask you to log in to my admin and fix my errors

    Greets
    Laura
    http://www.hoornvoelen.nl

  4. #414
    Join Date
    Feb 2007
    Location
    Pennsylvania
    Posts
    814
    Plugin Contributions
    0

    Default Re: User tracking mod

    I was just poking around the UT code a bit and noticed that the user tracking function file is checking to see if there's a customer id (in other words its checking to see if the person is logged in or not) and then querying the database for the customers first name and last name every single time a new page loads up for that person.

    So if the person is logged in we don't have to query the DB, their first and last name are already in the $_SESSION.

    As long as your user tracking code snippet isn't one of the first things to be loaded, to help improve your load time you may try the following.

    in includes/functions/extra_functions/user_tracking.php
    find the following code
    Code:
    if ($_SESSION['customer_id'])
                {
                    $customer = $db->Execute("select customers_firstname, customers_lastname from " . TABLE_CUSTOMERS . " where customers_id = '" . $_SESSION['customer_id'] . "'");
                    $wo_full_name = addslashes($customer->fields['customers_firstname'] . ' ' . $customer->fields['customers_lastname']);
                }
    replace it with
    Code:
    if ($_SESSION['customer_id'])
                {
                    $wo_full_name = $_SESSION['customer_first_name'] . ' ' . $_SESSION['customer_last_name'];
                }

  5. #415
    Join Date
    Feb 2009
    Posts
    120
    Plugin Contributions
    0

    Default Re: User tracking mod

    This mod is brilliant. Thank you.

    Highlights the odd thing on the site that needs tweaked when you realise the issues that make some customers leave.

    Also....Am I the only one who presses the 'report' button literally every other minute? It's like being down in that bunker they had in Lost!

  6. #416
    Join Date
    Nov 2006
    Posts
    160
    Plugin Contributions
    0

    Default Re: User tracking mod

    I posted here:
    http://www.zen-cart.com/forum/showth...990#post901990

    I upgraded my site yesterday. Everything was running smoothly. I went to check on a product I added early this afternoon (admin working fine) and I got a blank page.

    I installed the debugging and got this error:

    PHP Fatal error: Call to undefined function zen_update_user_tracking() in /includes/templates/custom/common/tpl_footer.php on line 67

    I went in an retyped the text into the tpl_footer as directed by the install directions but the error keeps showing. The whole site is non accessable except the admin side. I went in and "dropped" the user tracking table but that didn't work either.

    Anything I can do besides re-upgrade the site?


  7. #417
    Join Date
    Nov 2006
    Posts
    160
    Plugin Contributions
    0

    Default Re: User tracking mod

    just wanted to note my line 67 is :

    <?php if (ZEN_CONFIG_USER_TRACKING == 'true') { zen_update_user_tracking(); } ?>


  8. #418
    Join Date
    Nov 2006
    Posts
    160
    Plugin Contributions
    0

    Default Re: User tracking mod

    Got it figured out. I "uninstalled" the mod by removing all the files and dropping the table. Then I ran the debugger again and found a weird t-spring error in english.php so I replaced that with my backup version and now site is up.


  9. #419
    Join Date
    Apr 2010
    Location
    London, UK
    Posts
    38
    Plugin Contributions
    1

    Default Re: User tracking mod

    Hi all, been using this mod for a while now and have to say its great :) only minor problem ive got with it is that it seems to constantly get the users originating country wrong. Is this a known issue and is there any fix for it?
    Clever AV Ltd
    http://www.cleveravltd.co.uk
    ZenCart 1.3.9g

  10. #420
    Join Date
    Aug 2005
    Location
    Vic, Oz
    Posts
    1,905
    Plugin Contributions
    5

    Default Re: User tracking mod

    Quote Originally Posted by deathman2006 View Post
    Hi all, been using this mod for a while now and have to say its great :) only minor problem ive got with it is that it seems to constantly get the users originating country wrong. Is this a known issue and is there any fix for it?
    Have you updated the geoip info?

 

 
Page 42 of 86 FirstFirst ... 32404142434452 ... LastLast

Similar Threads

  1. User Tracking Mod only shows the Admin Session
    By Griff1324 in forum General Questions
    Replies: 6
    Last Post: 29 May 2008, 10:56 PM
  2. User Tracking Mod issue: repeated Logins: Admin: View Sessions
    By dharma in forum All Other Contributions/Addons
    Replies: 8
    Last Post: 20 Feb 2008, 04:48 AM
  3. Search log mod vs. user tracking
    By ashton0603 in forum General Questions
    Replies: 4
    Last Post: 30 Jan 2008, 08:43 AM
  4. Google Analytics vs User Tracking mod
    By miles in forum General Questions
    Replies: 1
    Last Post: 15 Jun 2007, 10:09 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