sorry klaush i pulled the update, for now. I kind of rushed it, it doesn't do anything as of now anyway just starts collecting count so when the next big update is ready you will already have stats.
the release you grabbed relies on the table (which you can run this in a query to create)
Code:
CREATE TABLE redirect (
url varchar(100) NOT NULL,
hits int(10) DEFAULT '0' NOT NULL,
PRIMARY KEY (url)
);
but i forgot to add that to the install code. looking it over I'm going to rename a few things and probably append the table into another table for the final revision of 2.0
I'll try to have 1.5 done today which will include this feature, I'm just a little stuck at the moment.