Ok, this tutorial was wrote in Indonesian :) but i think you can use google to translate it.

Berikut ini saya mo memberitahukan bagaimana membuat custom status yahoo Anda sesederhana mungkin.

Dengan skrip ini berarti anda bisa menggunakan image atau gambar sendiri untuk menampilkan status yahoo messenger anda.

Ok berikut caranya:
- buatlah file dengan nama: customym.php
- Isikan kode berikut:

[sourcecode lang="php"]
//Gunakan variable berikut ini untuk menampilkan gambar custom anda
$image_on = 'http://serviceforweb.com/customym/online.jpg';
$image_off = 'http://serviceforweb.com/customym/offline.jpg';
//Nah ini untuk ID Yahoo anda
$yahoo_id = 'ceo.ahlul';
//Ok, lets go....
$status = intval(file_get_contents('http://opi.yahoo.com/online?u='.$yahoo_id.'&m=t&t=1'));
if($status) {
$loc = $image_on;
} else {
$loc = $image_off;
}
header('Location:'.$loc);
?>
[/sourcecode]

- Simpanlah customym.php

Cara pemakaian:
[sourcecode lang="html"]Status Yahoo[/sourcecode]

Ok, that it ;) Simple bukan.

Silahkan share klo menurut anda posting ini bermanfaat.

Related posts:

  1. WordPress-Plugin: WP CustomYM, Create Your Own Image for Yahoo Messenger Online Status
  2. Put Custom YM Anywhere
  3. Mengatasi Pidgin Error (Can not connect) ke Yahoo Messenger
  4. Ajakan: Jangan Asal Bikin Status!
  5. HyperIM: Yahoo Autoresponder(Mesin Penjawab) Super Bisa

12 Responses so far.

  1. irfani says:

    Tutorialnya keren, langsung di praktekin nih, ternyata bener-bener simple. aku lebih suka yang model ini daripada yg plugin. Trimakasih banyak mas.
    Salam.

  2. irfani says:

    Oya mas, skrip ini cuma nampilin status online/offline. biar bisa di klik, harus di tambahin :


    Mohon koreksinya. salam.

  3. fadli says:

    wah keren… jadinya saya bisa pake gambar sendiri ya kalo saya ganti
    $image_on = ‘http://serviceforweb.com/customym/online.jpg';
    $image_off = ‘http://serviceforweb.com/customym/offline.jpg';

    trims mas ahlul!

  4. mul14 says:

    Thanks, you saving my time.

  5. Ananto says:

    Kok setelah saya setting hasilnya YMnya off terus ya

  6. killua27 says:

    it work
    just edit like this

    thanks

  7. killua27 says:

    <?php
    $image_on = 'http://img248.imageshack.us/img248/2904/konmio1.gif';
    $image_off = 'http://img37.imageshack.us/img37/2643/mio2c.gif';

    $status = intval(file_get_contents('http://opi.yahoo.com/online?u=youryahooid&m=t&t=1&#039 ;) );
    if($status) {
    $loc = $image_on;
    } else {
    $loc = $image_off;
    }
    header('Location:'.$loc);
    ?>

  8. killua27 says:

    klo yar bisa di klik cb di tambah

    <a href mailto:email@yahoo.com>

    codingan yahoo status taruh di sini

    </a>

  9. mantap om tutorial nya… trims

  10. robert says:

    mungkin lebih tepatnya agar bisa di klik dan menuju ke aplikasi YM di komputer seoerti ini:

    codingan yahoo status taruh di sini

Leave a Reply