This little hack will store IP of user who uploaded image:
Run this in Phpmyadmin:
ALTER TABLE `4images_images` ADD `image_ip` VARCHAR( 20 ) NOT NULL ;
open member.php
find:
if ($direct_upload) {
add after:
$image_ip = $site_sess->user_ip;
$additional_field_sql .= ", image_ip";
$additional_value_sql .= ", '$image_ip'";
open: db_field_definitions.php
add:
$additional_image_fields['image_ip'] = array("User IP", "text", 0);
You'll see user IP in admin panel when editing image or other media.