Quote Originally Posted by JeffD View Post
Modified the user_tracking.sql by extending the size of the last_page_url field from 64 characters to 128 characters as this was previously too short and would often truncate URL link data.
Hi Jeff-

My assumption is the sql below is for those updating from the previous version of User Tracking (08/31/2006 - Version: 20060805 by PingHead)?

Below is the commands necessary for the sql patch tool to alter the table to the new format described in the user_tracking.sql and described above:

ALTER TABLE `user_tracking` CHANGE `session_id` `session_id` VARCHAR(32);
ALTER TABLE `user_tracking` CHANGE `last_page_url` `last_page_url` VARCHAR(128);
Thanks for the update,
Woody