Hi !
I'd like to know how I can modify the webgallery to log the IP of every comment. Of course, this IP hasn't to be seen on the gallery. I think I first would have to add an "IP" row in the table "comments". Then, my idea was to add something like :
<input type="hidden" name="IP" value="<?php echo $_SERVER['REMOTE_ADDR']; ?>" />
where the comment is processed. However, I didn't find in the files where I could do this.
Is this idea good ? Can you help me to achieve this ?