Any time that you need a link for someone to click so you may track them to their ip address you can now create a tracker node. This comes in especially handy for verifying facebook and social media contacts through the chat window are actually in the country they say. Just create a node with any content and paste the following scripting code example. Notice how php is mixed with the shortcodes in this example.
Give out the address of the node in your chat window only so no one but the intended user is involved. To check on the results enter the node’s address and ip_log.txt in to your browser window. There are many free resources on the internet such as mxtoolbox.com for tracing the ip address to the country of origin.
Example output address : http://www.yoursite.com/thenode/ip_log.txt
OUTPUT: 2016 Nov 14 17:56:45 97.94.246.213 Mozilla/5.0 (Windows NT 5.1; rv:48.0) Gecko/20100101 Firefox/48.0
The code:
[[GET_SERVER:REMOTE_ADDR]] [[GET_SERVER:REMOTE_HOST]] [[GET_SERVER:HTTP_USER_AGENT]] [[INITIALIZE:delimiter|" , "]] <?php $NEWLINE = chr(13).chr(10); ?> [[GET_NOW:'Y M d H:i:s']] [[CONCATENATE:delimiter|delimiter,NEWLINE]] [[CONCATENATE:log_entry|NOW,delimiter,SERVER_REMOTE_ADDR,delimiter,SERVER_HTTP_USER_AGENT,delimiter,SERVER_REMOTE_HOST]] [[APPEND_FILE:ip_log.txt|log_entry]] OUTPUT: [[PRINT:log_entry]][[cr]][[hr]]