Quote Originally Posted by JeffD View Post
Over the years we have updated the user_tracking.php tool and made a few bug fixes. One feature we added was changing the script into a form and adding a popup date selection menu so you can select a specific date to begin the listing. This has proven invaluable since we actually keep several months worth of logs and it was difficult to page though using the previous page at a time GET method.

In any case, I have not previously read this thread so there could be a newer version out with other features or bug fixes. Perhaps who ever is maintaining the code (Pinghead) these days could merge this version with any fixes and updates previously done and make a new release. For now though, if you want to give the version we use a try, it is available here:

user_tracking.zip
.

BTW, this is just the single admin/user_tracking.php file and assumes you already have a working installation.
Hi Jeff,

Petter stated previously in this thread that he will not be able to continue work on the User Tracking mod:
http://www.zen-cart.com/forum/showpo...2&postcount=79

Can you integrate your UT code updates into a new version and upload to the ZC download area? Maybe we could "beta" test your updates here before uploading a new version?

BTW I just installed your updated /admin/user_tracking.php file. And I like.

I do note the content associated with the ENTRY_START_DATE and ENTRY_START_DATE_TEXT defines do not display. Is there another file we are suppose to upload or patch or icon images which need uploaded? The snippet below is where the defines are called in /admin/user_tracking.php

<tr>
<td class="pageHeading"><?php echo HEADING_TITLE; ?></td>
<td class="main"><?php echo ENTRY_START_DATE; ?></td>
<td class="main">
<?php
echo zen_draw_pull_down_menu('sdate_month', $date_month, $start_date_month_val);
echo zen_draw_pull_down_menu('sdate_day', $date_day, $start_date_day_val);
echo zen_draw_pull_down_menu('sdate_year', $date_year, $start_date_year_val);
echo zen_not_null(ENTRY_START_DATE_TEXT) ? '<span class="inputRequirement">' . ENTRY_START_DATE_TEXT . '</span>': '';
?>
</td>
<td class="main" align="left"><?php echo zen_image_submit('button_report.gif', 'Update Report'); ?></td>

</tr>
Woody