Page 77 of 86 FirstFirst ... 27677576777879 ... LastLast
Results 761 to 770 of 858
  1. #761
    Join Date
    Jul 2012
    Posts
    16,799
    Plugin Contributions
    17

    Default Re: User tracking mod

    Yes, considering that I see those type entries and others that are historically known to allow some form of sql injection (in older versions of ZC), I would suspect that those using this mod would see something similar.

    So, with that in mind, my thought of approach is to create an admin configuration field, in which a portion of the string to cause the individual to be ignored would be entered.
    Then, another on screen option to either show or hide or only show those "visitors", but in any case to provide an indicator for each such visitor that they used one of the "key" words.

    This way, a review could be performed to see all traffic, all traffic that doesn't include that text or to look through all traffic of those that have tried that or similar.

    How's that sound to you (and others)?
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  2. #762
    Join Date
    Mar 2014
    Location
    Canada
    Posts
    22
    Plugin Contributions
    0

    Default Re: User tracking mod

    Quote Originally Posted by mc12345678 View Post
    Yes, considering that I see those type entries and others that are historically known to allow some form of sql injection (in older versions of ZC), I would suspect that those using this mod would see something similar.

    So, with that in mind, my thought of approach is to create an admin configuration field, in which a portion of the string to cause the individual to be ignored would be entered.
    Then, another on screen option to either show or hide or only show those "visitors", but in any case to provide an indicator for each such visitor that they used one of the "key" words.

    This way, a review could be performed to see all traffic, all traffic that doesn't include that text or to look through all traffic of those that have tried that or similar.

    How's that sound to you (and others)?
    That sounds fantastic and would work awesome. I'm glad I could communicate the problem effectively, as seeing all those hack attempts in between the real customer visits kinda messes up the activity report. If it's hidden then I can see the big benefit. Great idea!

  3. #763
    Join Date
    Jul 2012
    Posts
    16,799
    Plugin Contributions
    17

    Default Re: User tracking mod

    Quote Originally Posted by Nitroedge View Post
    That sounds fantastic and would work awesome. I'm glad I could communicate the problem effectively, as seeing all those hack attempts in between the real customer visits kinda messes up the activity report. If it's hidden then I can see the big benefit. Great idea!
    So I have this operational, I've chosen a few things to modify the "display", but I'd be glad to take others input for modification. Right now, a word is added in front of the "name" of the searcher (Guest or logged in individual) also there should be some color change made to parts of the row.

    While the genesis of this feature was to eliminate the presentation of records for users "testing" the site, the feature also allows filtering for other reasons (to show records of users getting to a particular web-page, etc..). Filter "words" are to be comma separated and suggest using whatever is displayed when looking at the UT admin screen.

    I have updated the github location but also have submitted the plugin to ZC with the following modifications identified:
    * Version 1.5.5:
    * - Removed HTML that was in the middle of PHP code.
    * - Moved Admin menu option "name" to the languages folder to support multiple languages.
    * - Improved sanitization for catalog and store side data capture.
    * - Made radio labels clickable to support radio button activation.
    * - Added feature to filter URL information that was captured when the site was visited.
    * - Added default settings to the top of the admin/user_tracking.php file.
    * - Removed unused code/variables in the two detection files.
    * - Updated version compare software to latest available in the ZC 1.5.5 series (not identified yet to a specific version)
    Once reviewed and accepted should be available from here.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  4. #764
    Join Date
    Mar 2014
    Location
    Canada
    Posts
    22
    Plugin Contributions
    0

    Default Re: User tracking mod

    That is awesome and thanks!

    Sorry I can't find the github location, could you post it again or point me in the right direction?

  5. #765
    Join Date
    Jul 2012
    Posts
    16,799
    Plugin Contributions
    17

    Default Re: User tracking mod

    Quote Originally Posted by Nitroedge View Post
    That is awesome and thanks!

    Sorry I can't find the github location, could you post it again or point me in the right direction?
    User Tracking on github can be found here.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  6. #766
    Join Date
    Mar 2014
    Location
    Canada
    Posts
    22
    Plugin Contributions
    0

    Default Re: User tracking mod

    Got it, since my mod is working with my Zen Cart v1.51, should I just FTP overwrite all the files with the new files?

    I don't need to do any install script or similar?

    Just overwrite and I'll have the new features for filter words etc?

  7. #767
    Join Date
    Jul 2012
    Posts
    16,799
    Plugin Contributions
    17

    Default Re: User tracking mod

    Quote Originally Posted by Nitroedge View Post
    Got it, since my mod is working with my Zen Cart v1.51, should I just FTP overwrite all the files with the new files?

    I don't need to do any install script or similar?

    Just overwrite and I'll have the new features for filter words etc?
    That's the expectation. Please report if that doesn't work, issues identified, and if had to work through something related to please identify the solution that worked. Or if no issues, would appreciate report back that worked and possibly other system conditions that may seem obscure or edge case (low/high PHP version, old ZC version, etc...)
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  8. #768
    Join Date
    Feb 2007
    Location
    Pennsylvania
    Posts
    814
    Plugin Contributions
    0

    Default Re: User tracking mod

    Not entirely sure what's going on with the latest user tracking mod in ZC 1.5.5, but working properly is not happening. First of all the auto install doesn't create a database table called user_tracing, it doesn't create a config menu option and it doesn't create a tools menu option.

    I ran the create user_tracking table function by planting it into a define page and loading the define page. Then the readme file says to add <?php $zco_notifier->notify('NOTIFY_FOOTER_END'); ?> to the end of the tpl_main_page.php file which doesn't make much sense as that call already exists there, but adding a call to the function zen_update_user_tracking(); does work. However, while this function call does get records added to the database table, the .com/admin/user_tracking.php still doesn't show any of those records. Just blank records area. User tracking back in the day had some issues, but this is crazy.

  9. #769
    Join Date
    Jul 2012
    Posts
    16,799
    Plugin Contributions
    17

    Default Re: User tracking mod

    Quote Originally Posted by bumba000 View Post
    Not entirely sure what's going on with the latest user tracking mod in ZC 1.5.5, but working properly is not happening. First of all the auto install doesn't create a database table called user_tracing, it doesn't create a config menu option and it doesn't create a tools menu option.

    I ran the create user_tracking table function by planting it into a define page and loading the define page. Then the readme file says to add <?php $zco_notifier->notify('NOTIFY_FOOTER_END'); ?> to the end of the tpl_main_page.php file which doesn't make much sense as that call already exists there, but adding a call to the function zen_update_user_tracking(); does work. However, while this function call does get records added to the database table, the .com/admin/user_tracking.php still doesn't show any of those records. Just blank records area. User tracking back in the day had some issues, but this is crazy.
    Sounds like an incomplete install/upload of files.

    The note about adding a notifier to the includes/templates/YOUR_TEMPLATE/common/tpl_main_page.php file is related to pre-ZC 1.5.5 because it is in ZC 1.5.5 that the notifier was added. There is the possibility that a newer template could have been installed to an older system that already had that line in it and yes the instruction would then be incorrect. It will be updated to indicate to add the line if it does not already exist.

    As to no action being taken even with its presence, but calling the function seems to work AND that the notifier has already been identified as being present implies that the includes/auto_loaders and/or includes/classes/observers related file(s) have not been put to the server at least in the expected location(s).

    I suggest also performing a search using the tools->developers tool kit for init_user_tracking and identifying the path(s) to the search response. Obscure the directory name for YOUR_SECRET_ADMIN directory if/when presented.

    As to the lack of table and/or admin menu options in relation to the discussion of an older User Tracking installation, what is the history of the database to which this was installed? Had it previously had User tracking installed? It may be a good idea to run the uninstall sql to ensure removal of old partial remnants. A lot of effort went into Version 1.5.3 to try to convert previous installations to using this more standardized installer primarily so that the user_tracking table didn't get wiped out every time a new version was presented. There hasn't been a change to the table in a very long time, so there doesn't seem to be a need to delete it when other features are added/modified.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  10. #770
    Join Date
    Feb 2007
    Location
    Pennsylvania
    Posts
    814
    Plugin Contributions
    0

    Default Re: User tracking mod

    I checked uploaded files against all included in download. All files were uploaded.

    public_html/shop/my_super_secret_admin_location/includes/auto_loaders/config.user_tracking_install.php

    there was no previous installation as this is a fresh install.

    Also, as stated previously. The responsive_classic template in use already includes the $zco_notifier->notify('NOTIFY_FOOTER_END', $current_page); mentioned in the installation_readme.txt file. It does not populate the user_tracking db table, but calling the function zen_update_user_tracking(); works as it always has.
    Last edited by bumba000; 13 Jul 2017 at 01:20 AM.

 

 
Page 77 of 86 FirstFirst ... 27677576777879 ... 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