I disagree with osBen. The system DOES work and doesn't require the alteration to login.php

----------

One fie to fix or your error messages won't work:

includes/languages/english/visitoremail.php

change:

ERROR_ALREADY_EXIST

to:

ALREADY_EXIST

and change:

ERROR_FROM_ADDRESS

to

ERROR_TO_ADDRESS

* you can also use the replacement file in this package.

----------

I had a problem with the database query. For some reason it won't accept it due to bad syntax (I use 1and1.com php 4.0). I used the following instead:

CREATE TABLE `visitor` (
`email` varchar(255) NOT NULL default 'CHARACTER SET utf8 COLLATE utf8_swedish_ci',
PRIMARY KEY (`email`)
) TYPE=MyISAM;





More...