I use wp-shortstat (actually a heavily modified version of it). When I updated to WP2, it stopped logging stats. Not sure why it is not logging any stats.
I switched back to the original to make sure it wasn’t one of my modifications, but it didn’t log stats either.
I dropped the two tables, and let the program re-create them. It did re-create them, but still doesn’t log stats.
I am not sure if their is problem with the tracking hook: add_action(’shutdown’, array(&$wpss, ‘track’)); I did a search, and the shutdown thing still seems to be used in WP2.
I have read other people have had problems with shortstat and WP2, but not the same logging problem. Anyone else have any ideas?

I just read that wp-shortstat had worked fine with WP 2.0, but the problem started with WP 2.0.1 (which is what I installed). I hope they fix it! I like my stats!
Comment by Rob — February 3, 2006 @ 9:39 am
I got it fixed! Some guys at a place called HappyArt Blog had a fixed version. I just found what they changed, and tweaked my version. Basically, you just need to comment out the reference to is_admin_page():
if($wpdb->is_admin
|| strstr($_SERVER['PHP_SELF'], ‘wp-admin/’)
|| is_404()
// || is_admin_page()
)return; // let’s not track the admin pages — no one cares.
Thanks also to WKD at webkeydesign.com.
Comment by Rob — February 3, 2006 @ 7:04 pm