1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Yahoo Status (Invisible or not) in PHP ?!

Discussion in 'PHP' started by redhits, Feb 21, 2008.

  1. jetagent

    jetagent Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #21
    chanakya,

    what does "gauravsparkle" signifies?
     
    jetagent, Sep 11, 2008 IP
  2. jetagent

    jetagent Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #22
    chanakya

    i saw an article from http://freeyahootoolsdownload.blogspot.com/2008/03/make-yahoo-messenger-status-in-blog.html
    which also use http://opi.yahoo.com/online?u=
     
    jetagent, Sep 11, 2008 IP
  3. chessh

    chessh Peon

    Messages:
    16
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #23
    I'm interested too. :) PMed.
     
    chessh, Sep 16, 2008 IP
  4. jetagent

    jetagent Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #24
    hope we got some good news to chanakya and imvisible here
     
    jetagent, Sep 16, 2008 IP
  5. IMvisible

    IMvisible Banned

    Messages:
    54
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #25
    Sorry for being late.

    About detection script just contact me.
    About indicator status pls wait for about one week and you will surprised about my new service. I'll be back with informations about it.

    Best regards
     
    IMvisible, Sep 17, 2008 IP
  6. jetagent

    jetagent Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #26
    Thank you and more power
     
    jetagent, Sep 26, 2008 IP
  7. FlakDevelopment

    FlakDevelopment Banned

    Messages:
    164
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #27
    FlakDevelopment, Oct 9, 2008 IP
  8. GARANTI

    GARANTI Peon

    Messages:
    75
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #28
    the site of persiangap.com is made by www.Persianblog.ir that is the top and famous weblog system for iranian users. if you would like to contact their company you can fill the form of persianblog.ir/Contact.aspx
     
    GARANTI, Oct 9, 2008 IP
  9. msmp3

    msmp3 Peon

    Messages:
    297
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #29
    @IMvisible: I am interested too about affiliation or to buy the script if you want to sell it.. What do you think? I am expecting a PM from you. Thanks.
     
    msmp3, Nov 4, 2008 IP
  10. w2art

    w2art Peon

    Messages:
    4
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #30
    Site: http://w2art.info
    -> Check status invisble, check webcam status, check alias id (main id).

    Good project ^^, see it.
    Code selling is 500$
    if you like, pm me ^^ Yahoo!: w2art :rolleyes::eek:
     
    w2art, Nov 5, 2008 IP
  11. redhits

    redhits Notable Member

    Messages:
    3,023
    Likes Received:
    277
    Best Answers:
    0
    Trophy Points:
    255
    #31
    I have the code source of it .... i have a script decting if somebody is online or offline

    i am reselling it for 30$

    thanks
     
    redhits, Nov 6, 2008 IP
  12. dynashox

    dynashox Premium Member Staff

    Messages:
    8,662
    Likes Received:
    563
    Best Answers:
    3
    Trophy Points:
    335
    #32
    Do you have demo for your script?
     
    dynashox, Nov 6, 2008 IP
  13. IMvisible

    IMvisible Banned

    Messages:
    54
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #33
    Invisible scanner with real bot technique are probably less then 10 in the world, but there are a lot of them who're stealing from this sites and pretend they have Yahoo Messenger invisible detector. So if you buy for 30$ one of that script take care, cause you're not gonna have real detector nor it's gonna work more than a few days.
     
    IMvisible, Nov 7, 2008 IP
  14. chanakya

    chanakya Peon

    Messages:
    361
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #34
    Are you willing to selll script or not ?

    If yes ? How much
     
    chanakya, Nov 12, 2008 IP
  15. proxywhereabouts

    proxywhereabouts Notable Member

    Messages:
    4,027
    Likes Received:
    110
    Best Answers:
    0
    Trophy Points:
    200
  16. cosminx2003

    cosminx2003 Active Member

    Messages:
    581
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #36
    I made fast a script that checks if an user is online or offline, check it :

    <?php
    if($_POST) {
    $url="http://opi.yahoo.com/online?u=".$_POST['user'];
    $request=file_get_contents($url);
    if(strlen($request)==140) echo $_POST['user']." is online";
    else echo $_POST['user']." is offline";
    } else echo '<form method="post">User <input type="text" name="user"><input type="submit" value="Check"></form>';
    ?>
    PHP:
     
    cosminx2003, Nov 12, 2008 IP
  17. keyaa

    keyaa Peon

    Messages:
    137
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #37
    Since we're posting code now, you might as well do it in just 1 line of code which generates even less traffic (it's not downloading the status image):
    <?php
    function isOnlineYahoo($yid) {
      return (boolean)(integer)file_get_contents('http://opi.yahoo.com/online?u='.urlencode($yid).'&m=&t=1');
    }
    ?>
    PHP:
    Quick sample form to try it:
    <html>
    <head>
    <title>YID Online Status</title>
    <body>
    <h1>YID Online Status</h1>
    <form action="<?php echo htmlentities($_SERVER['REQUEST_URL']); ?>" method="POST">
    <label for="yid">Yahoo ID:</label>
      <input type="text" name="yid" id="yid" value="<?php echo htmlentities($_POST['yid']); ?>" />
      <input type="submit" value="Check Online Status">
    </form>
    <?php
    if($_POST['yid']) { 
      echo '<p>' . htmlentities($_POST['yid']) . ' is currently '
           . (isOnlineYahoo($_POST['yid']) ? 'online' : 'offline') . '.</p>';
    }
    ?>
    </body>
    </html>
    Code (markup):
    Enjoy :)
     
    keyaa, Nov 13, 2008 IP
  18. chanakya

    chanakya Peon

    Messages:
    361
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #38
    Lolz, I have already mentioned online or offline code earlier

    We are talking invisible detector script it`s different
     
    chanakya, Nov 13, 2008 IP
  19. cosminx2003

    cosminx2003 Active Member

    Messages:
    581
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #39
    Does exist any way to verify if someone is invisibile via yahoo apis? if yes tell me and i will write a function.
     
    cosminx2003, Nov 14, 2008 IP
  20. keyaa

    keyaa Peon

    Messages:
    137
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #40
    Nope, Yahoo API doesn't cover invisibility :(
     
    keyaa, Nov 14, 2008 IP