Results 1 to 10 of 858

Hybrid View

  1. #1
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: User tracking mod

    Quote Originally Posted by jaydamuss View Post
    yes the database and site was new a couple months ago and not transfered cheers
    Thanks for the clarification. Able to test the above code modification and post result?
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  2. #2
    Join Date
    Mar 2011
    Posts
    11
    Plugin Contributions
    0

    Default Re: User tracking mod

    Quote Originally Posted by mc12345678 View Post
    Thanks for the clarification. Able to test the above code modification and post result?
    yes i just copied your second code between lines 49-79 and the info is still there cheers

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

    Default Re: User tracking mod

    Quote Originally Posted by jaydamuss View Post
    yes i just copied your second code between lines 49-79 and the info is still there cheers
    I didn't catch the line numbers on my side, to be able to confirm those are the correct lines, but I suspect that they are. To also further confirm have you since tried to log out and back in to see if the message goes away.

    If you are also willing I'd like to insert some testing code to see what is going on with this and why/how the install is basically repetitively occurring (somewhat of and how). Are there any log errors generated in the logs directory? (if posting 2 things, 1) obscure your admin folder name, 2) please press the # button in the message box toolbar before pasting the code from the mydebug log(s)).

    This is the second reported occurrence of this issue and I have even installed it on at least three different vanilla installs as well as systems that had previous versions, uninstalled installed fresh again and even installed an older version and then this one... So anything that can help identify why this is occurring would be welcome.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  4. #4
    Join Date
    Mar 2011
    Posts
    11
    Plugin Contributions
    0

    Default Re: User tracking mod

    Quote Originally Posted by mc12345678 View Post
    I didn't catch the line numbers on my side, to be able to confirm those are the correct lines, but I suspect that they are. To also further confirm have you since tried to log out and back in to see if the message goes away.

    If you are also willing I'd like to insert some testing code to see what is going on with this and why/how the install is basically repetitively occurring (somewhat of and how). Are there any log errors generated in the logs directory? (if posting 2 things, 1) obscure your admin folder name, 2) please press the # button in the message box toolbar before pasting the code from the mydebug log(s)).

    This is the second reported occurrence of this issue and I have even installed it on at least three different vanilla installs as well as systems that had previous versions, uninstalled installed fresh again and even installed an older version and then this one... So anything that can help identify why this is occurring would be welcome.
    no worries, have logged in and out still the same, will get a log soon just taking son to school :)

  5. #5
    Join Date
    Mar 2011
    Posts
    11
    Plugin Contributions
    0

    Default Re: User tracking mod

    Quote Originally Posted by jaydamuss View Post
    no worries, have logged in and out still the same, will get a log soon just taking son to school :)
    here is the current log from yesterday cheers

    Code:
    [08-Jun-2017 18:06:52 America/New_York] Request URI: /###########/currencies.php, IP address: ########
    #1  require() called at [/home/eneripek/public_html/includes/autoload_func.php:48]
    #2  require(/home/eneripek/public_html/includes/autoload_func.php) called at [/home/eneripek/public_html/########/includes/application_top.php:171]
    #3  require(/home/eneripek/public_html/#########/includes/application_top.php) called at [/home/eneripek/public_html/#######/currencies.php:10]
    
    [08-Jun-2017 18:06:52 America/New_York] PHP Warning:  require(includes/init_includes/init_user_tracking.php): failed to open stream: No such file or directory in /home/eneripek/public_html/includes/autoload_func.php on line 48
    [08-Jun-2017 18:06:52 America/New_York] Request URI: /#############/currencies.php, IP address: ###########
    #1  require() called at [/home/eneripek/public_html/includes/autoload_func.php:48]
    #2  require(/home/eneripek/public_html/includes/autoload_func.php) called at [/home/eneripek/public_html/##########/includes/application_top.php:171]
    #3  require(/home/eneripek/public_html/##########/includes/application_top.php) called at [/home/eneripek/public_html/#########/currencies.php:10]
    
    [08-Jun-2017 18:06:52 America/New_York] PHP Warning:  require(includes/init_includes/init_user_tracking.php): failed to open stream: No such file or directory in /home/eneripek/public_html/includes/autoload_func.php on line 48
    [08-Jun-2017 18:06:52 America/New_York] PHP Fatal error:  require(): Failed opening required 'includes/init_includes/init_user_tracking.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/eneripek/public_html/includes/autoload_func.php on line 48

  6. #6
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: User tracking mod

    Ahhh... Another case of incorrect installation (file placement)...

    There is no file on the store side that is expected to call the init_includes folder. Meaning the incorrect includes/auto_loaders/ file is placed in the store/catalog side... config.user_tracking_install.php should not be in the catalog directory it should only be in the admin directory.

    All files and folders in YOUR_ADMIN directory should be placed only in the directory that is your secret admin. All files in the base includes directory should be in the catalog's includes directory. None of the files/folders found in the YOUR_ADMIN directory should be copied to the store's directory.

    Guess I'll have to do with this installer like I did with another plugin which is to prevent operation of the auto_loader when installed into the catalog side, generate a message or delete the file, etc... to prevent the issue that is being seen.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  7. #7
    Join Date
    Mar 2011
    Posts
    11
    Plugin Contributions
    0

    Default Re: User tracking mod

    Quote Originally Posted by mc12345678 View Post
    Ahhh... Another case of incorrect installation (file placement)...

    There is no file on the store side that is expected to call the init_includes folder. Meaning the incorrect includes/auto_loaders/ file is placed in the store/catalog side... config.user_tracking_install.php should not be in the catalog directory it should only be in the admin directory.

    All files and folders in YOUR_ADMIN directory should be placed only in the directory that is your secret admin. All files in the base includes directory should be in the catalog's includes directory. None of the files/folders found in the YOUR_ADMIN directory should be copied to the store's directory.

    Guess I'll have to do with this installer like I did with another plugin which is to prevent operation of the auto_loader when installed into the catalog side, generate a message or delete the file, etc... to prevent the issue that is being seen.
    im not sure what you mean, all admin files were only put in my admin folder and the seperate includes folder went into the store side

 

 

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

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