If you have previously installed
Proxy ip to real ip conversion or
Proxy Detector v3.1 then these install instructions will not work (or if you manage to find the block of code to replace, and then replace it as specified, your proxy hack will cease to function correctly).
This is because both proxy ip hacks add an extra field to all new posts. To fix this, edit the install instructions as follows.
find ;
PHP Code:
showsignature, ipaddress, iconid, visible, attach)
and replace with;
PHP Code:
showsignature, ipaddress, proxyip, iconid, visible, attach)
also find ;
PHP Code:
'" . addslashes($post['ipaddress']) . "', $post[iconid], $post[visible], $totalattachments)
and replace with ;
PHP Code:
'" . addslashes($post['ipaddress']) . "','" . addslashes($post['proxyip']) . "', $post[iconid], $post[visible], $totalattachments)
You can then apply this hack.