Quote Originally Posted by BlessIsaacola View Post
Thanks for the updates. Just upgraded to 1.4.3b and I am getting the following error: This means your change suggested above is not included in the downloaded mod. Here is the code from lines 78 and 79:
PHP Code:
while (strpos(right($wo_last_page_url1), '\\') !== false) {
        
$wo_last_page_url substr($wo_last_page_url0, -1);    
    } 
Once I applied your change I started getting another error:I believe this is because you erroneous use "right" in this section of the code:
PHP Code:
/* Start - User tracking v1.4.3b modification*/
    
while (strpos(right($wo_last_page_url1), '\\') !== false) {
        
$wo_last_page_url substr($wo_last_page_url0, -1);    
    }
    
/* End - User tracking v1.4.3b modification*/

    /* Start - User tracking v1.4.3b modification*/
    
while (strpos(right($referer_url1), '\\') !== false) {
        
$referer_url substr($referer_url0, -1);    
    }
    
/* End - User tracking v1.4.3b modification*/ 
Can you please kindly provide the fix for that? Thanks!
See last post on previous page. http://www.zen-cart.com/showthread.p...03#post1228003
I had uploaded a more recent rev b, but apparently the earlier version made it. Conceptually I had the right idea, but implemented the wrong version of coding for it to work in PHP and provided that change here in case things went amiss.

In playing with the changes made I also found a problem in user_tracking_config.php where a variable $gID is used in place of $UserTrackgID. I'll make the change and upload a newer version as well. Maybe I can do this upload one time right the first time.

It was a little difficult to test a problem I personally was not experiencing, but found a way using information you had provided. So thank you for that.