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_url, 1), '\\') !== false) {
$wo_last_page_url = substr($wo_last_page_url, 0, -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_url, 1), '\\') !== false) {
$wo_last_page_url = substr($wo_last_page_url, 0, -1);
}
/* End - User tracking v1.4.3b modification*/
/* Start - User tracking v1.4.3b modification*/
while (strpos(right($referer_url, 1), '\\') !== false) {
$referer_url = substr($referer_url, 0, -1);
}
/* End - User tracking v1.4.3b modification*/
Can you please kindly provide the fix for that? Thanks!