Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: [Cleo_] Anyway to have the submitters IP address recorded?

Quote Reply
Re: [Cleo_] Anyway to have the submitters IP address recorded? In reply to
Try a Global:

sub {
return $ENV{REMOTE_ADDR}
}

Have a column to store this.
Use tags to have the value inserted.
Should work though never tried in LSQL

Go a step ahead with a second global:

sub {
return $ENV{HTTP_X_FORWARDED_FOR}
}

And u could perhaps also store the same (if available), if the Link Owner is using a connection of that sorts.

HyTC

Last edited by:

HyperTherm: Oct 10, 2004, 9:34 AM
Subject Author Views Date
Thread Anyway to have the submitters IP address recorded? Cleo_ 4897 Oct 10, 2004, 9:13 AM
Post Re: [Cleo_] Anyway to have the submitters IP address recorded?
Andy 4813 Oct 10, 2004, 9:30 AM
Post Re: [Cleo_] Anyway to have the submitters IP address recorded?
HyperTherm 4809 Oct 10, 2004, 9:30 AM
Thread Re: [Cleo_] Anyway to have the submitters IP address recorded?
Andy 4813 Oct 10, 2004, 9:37 AM
Thread Re: [Andy] Anyway to have the submitters IP address recorded?
HyperTherm 4805 Oct 10, 2004, 9:46 AM
Thread Re: [HyperTherm] Anyway to have the submitters IP address recorded?
Cleo_ 4813 Oct 10, 2004, 10:41 AM
Thread Re: [Cleo_] Anyway to have the submitters IP address recorded?
HyperTherm 4834 Oct 10, 2004, 11:56 AM
Thread Re: [HyperTherm] Anyway to have the submitters IP address recorded?
Cleo_ 4839 Oct 10, 2004, 1:03 PM
Post Re: [Cleo_] Anyway to have the submitters IP address recorded?
HyperTherm 4800 Oct 10, 2004, 1:40 PM
Thread Re: [Cleo_] Anyway to have the submitters IP address recorded?
HyperTherm 4826 Oct 10, 2004, 2:30 PM
Thread Re: [HyperTherm] Anyway to have the submitters IP address recorded?
Cleo_ 4787 Oct 10, 2004, 2:45 PM
Thread Re: [Cleo_] Anyway to have the submitters IP address recorded?
HyperTherm 4787 Oct 10, 2004, 2:52 PM
Post Re: [HyperTherm] Anyway to have the submitters IP address recorded?
Cleo_ 4796 Oct 10, 2004, 3:17 PM