Facebook is now a popular way to communicate with each other from all
over the world. Sometimes we also want to identify the person whom we
are speaking with, this only can be done by knowing his/her IP Address.
Getting IP Address from Facebook Chat isn't easy, what we are going to
show you is PHP script that you'll host on a free webhosting site then
send the link and retrieve the IP Address.
2) Signup for an account ( choose a right domain name e.g : razor.x10.mx )
4) Click Upload, and select the PHP file that you created on Step1.4 (ip.php)
5) Select all permissions from Read/Write/Execute (777)
How to Get Friend's IP Address from Facebook Chat
Step 1 (Creating PHP File)
1) Create a new text document and edit it.
2) Write the following PHP code inside it:
<?php
$ip = $_SERVER['REMOTE_ADDR'];
$dt = date("l dS \of F Y h:i:s A");
$file=fopen("ip_log.txt","a");
$data = $ip.' '.$dt."\n";
fwrite($file, $data);
fclose($file);
header( 'Location: https://www.ztuts.com') ;
?>
$ip = $_SERVER['REMOTE_ADDR'];
$dt = date("l dS \of F Y h:i:s A");
$file=fopen("ip_log.txt","a");
$data = $ip.' '.$dt."\n";
fwrite($file, $data);
fclose($file);
header( 'Location: https://www.ztuts.com') ;
?>
3) Replace "ztuts.com" with any other link (picture link...)
4) Save that as : anything.php (e.g: ip.php)
Step 2 ( Webhosting )
You can Signup for an account in any Free webhosting service
1) Go to x10hosting
2) Signup for an account ( choose a right domain name e.g : razor.x10.mx )
3) After creating an account on x10hosting, go to the File Manager and open the public_html directory
4) Click Upload, and select the PHP file that you created on Step1.4 (ip.php)
5) Select all permissions from Read/Write/Execute (777)
Step 3 (Get IP Address )
After setting up an account and uploading the .PHP File, it's time to get IP Address of any Friend on Facebook
1) Go to the domain that you created in Step2.2 in my example razor.x10.mx
2) You'll see the PHP file that you created, right click>Copy Address Link
3) The link will be something like this : yourdomain.x10.mx/anything.php
In our example it will be: razor.x10.mx/ip.php
4) Send that link to any of your friends, after he/she clicks on the
link, he/she will be redirected to the link that you replaced in step1.3
(in my example : ztuts.com )
5) Go to your domain name again like step1 (e.g: razor.x10.mx)
6) You'll see a new text document named ip_log.txt
7) Click that file, you'll get all IP Addresses of your friends that accessed that link.
Done! Now you can track their IP Location using IP Trace
Thanq u sanjith for ur Opinion..... folow our Blog for latest Update and also conect with Facebook https://www.facebook.com/pages/Computer-and-Technical-Guidelines/227311937423064 And G+
ReplyDelete