Tags:

Add Facebook di Google Wave


wkwkw

google wave mang mangtaps…

cara untuk add Fb di google wave yaitu :

  1. klik new wave setelah masuk ke account anda
  2. add gadget by URL
  3. masukan link http://spongestuff.googlepages.com/fbook.xml
  4. tinggal login deh ke account Facebooknya…

Selamat mencoba

Popularity: 1% [?]

  • Share/Bookmark

Posted in WebComments (0)

Tags:

Add Twitter di Google Wave


twitterwave

Caranya simpel aja

  1. setelah masuk ke account google wave kliklah new wave
  2. maka muncul kotak dialog wave baru, kliklah Add gadget y URL
  3. ketikan url berikut “http://www.twittergadget.com/gadget.xml”
  4. anda tinggal masukan user dan passwordnya saja

Mudah bukan :D

Popularity: 1% [?]

  • Share/Bookmark

Posted in WebComments (0)

Tags:

13 Vital Tips and Hacks to Protect Your WordPress Admin Area


Informasi ini saya copy dari www.wpbeginner.com. Sangat berguna untuk melindungi web wp anda dari tangan – tangan jahil alias tidak bertanggung jawab :D

1. Create Custom Login Links

It is very obvious that in order to access the WordPress admin panel, all one has to do is type in the url of the site with /wp-login.php. Now if you used a same password in more than one location, and it was jeopardized then it is easy for the hacker to hack your site. A plugin called Stealth Login allows you to create custom URLs for logging in, logging out, administration and registering for your WordPress blog. You can also enable “Stealth Mode” which will prevent users from being able to access ‘wp-login.php’ directly. You can then set your login url to something more cryptic. This won’t secure your website perfectly, but if someone does manage to crack your password, it can make it difficult for them to find where to actually login. This also prevents any bots that are used for malicious intents from accessing your wp-login.php file and attempting to break in.

2. Pick a Strong Password

This is a very obvious step, but we must mention it as it can’t be emphasized enough. Do not use the same password in other places. Try to make each password different and hard to guess. Use the WordPress Password Strength Detector to your advantage and make your password strong. Another thing you want to do is change your password periodically, so even if some has guessed your password, it is useless to them once you have changed it.

Excellent guide to Create Strong Passwords.

3. Limit Login Attempts

Sometimes the hacker might think they know your password, or they might develop a script to guess your password. In that case what you need to do is limit the login attempts. You can easily do so by using a plugin called Login Lockdown which will lock a user out if they entered the wrong password more than the specified time. They will be locked out for a specified time. You can control the settings via your wp-admin panel.

4. Use Secure SSL Login Pages

You can login to WordPress Admin Panel through the encrypted channels with SSL meaning your session URLs will have https://. You must confirm with your webhosts that you have Shared SSL, or you own a SSL certificate. Once you have confirmed paste the following code in your wp-config.php file:

define(’FORCE_SSL_ADMIN’, true);

There is also a plugin called Admin SSL that will force SSL on all pages. It is easier if you run this plugin, but it is only compatible with version 2.7 and above.

5. Password Protect WP-Admin Directory

There is nothing wrong with having two passwords. It just adds another level of security to your WordPress Admin Area. This can be done by using a plugin called AskApache Password Protect. It encrypts your password and creates the .htpasswd file, as well as setting the correct security-enhanced file permissions on both. You can also use cPanel Password Protection on a Directory if you are using a cPanel Web Host to password protect wp-admin directory.

6. Limit Access via IP Address

You can limit access to your WP-Admin Panel and only allow certain IP Addresses to access. All you have to do is create a .htaccess file in /wp-admin/ folder if there is not one there already. Paste the following code:

AuthUserFile /dev/null
AuthGroupFile /dev/null
AuthName “WordPress Admin Access Control”
AuthType Basic

order deny,allow
deny from all
# whitelist Syed’s IP address
allow from xx.xx.xx.xxx
# whitelist David’s IP address
allow from xx.xx.xx.xxx
# whitelist Amanda’s IP address
allow from xx.xx.xx.xxx
# whitelist Muhammad’s IP address
allow from xx.xx.xx.xxx
# whitelist Work IP address
allow from xx.xx.xx.xxx

Change the IP Address and it will work. The downside to this hack is that if you ever want to access the admin panel from some other place, you won’t be able to do so unless you add that extra IP in your .htaccess file.

Update: In the comments Henry suggested an alternate way using htpasswd and combo with the IP which will allow you to enter from other places as well. Check it out here.

Source

7. Never use “admin” Username

This is the first user that is created when WordPress is installed. You should never use or keep this user. Because in the past multiple loopholes have been found that are linked to Brute Force Attack and admin username, you should refrain from using it. You should create another user using your WordPress admin panel, and assign administrator roles to it. Try to make this username something that is not obvious, so it is harder for the hacker to guess. Then delete the admin user altogether to stay on the safe side.

8. Remove Error Message on the Login Page

When you enter a wrong password or an invalid username, you get an error message in the login page. So if a hacker gets one thing right, the error message will help them identify that. Therefore it is recommended if you remove that error message entirely. Open your functions.php located in your theme folder and paste the following code:

add_filter(’login_errors’,create_function(’$a’, “return null;”));

A plugin called Secure WordPress also accomplishes this and it has other features as well. Check it out to see if you are interested.

9. Use Encrypted Password to Login

When you don’t have SSL enabled, this method comes in handy. There is a plugin that lets you do this job, and it is called Semisecure Login Reimagined. Semisecure Login Reimagined increases the security of the login process using an RSA public key to encrypt the password on the client-side when a user logs in. The server then decrypts the encrypted password with the private key. JavaScript is required to enable encryption.

10. WordPress AntiVirus Protection

AntiVirus for WordPress is a smart and effective solution to protect your blog against exploits and spam injections. Special feature of this plugin is Manual testing with immediate result of the infected files, and Daily automatic check with email notification.

11. Stay Updated with the Latest WordPress Version

Last but definitely not the least is to stay updated with the latest version of WordPress because after each version is release, WordPress also releases the bugs and exploits of the previous version which puts your Admin Area in risk if you don’t upgrade.

12. One Time Password

One Time Password plugin enables you to login to your WordPress weblog using passwords which are valid for one session only. One-time passwords prevent stealing of your main WordPress password in less trustworthy environments, like internet cafés, for example by keyloggers.

Another good plugin suggested by Constantine in the comments:

13. WordPress Firewall Plugin

WordPress Firewall Plugin Detect, intecept, and log suspicious-looking parameters — and prevent them compromising WordPress. It also protect most WordPress plugins from the same attacks. You can optionally configure as the first plugin to load for maximum security. It will give you an option to send an email to you with a useful dump of information upon blocking a potential attack and much more.

Popularity: 6% [?]

  • Share/Bookmark

Posted in WebComments (4)

Komentar pada Page


Buka page.php di folder themes
Tambahin kode ini:

       <?php comments_template(); ?>

contoh :
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id="main-block">
 <div id="content">
   <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
      <div id="post-<?php the_ID(); ?>">
                <div>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to
 <?php the_title(); ?>">
       <?php the_title(); ?></a></h2>
         </div>
            <div>
            <?php the_content('Continue reading &raquo;'); ?>
                </div>
            </div>
            <?php endwhile; ?>
            <p><?php next_posts_link('&laquo; Previous Entries') ?>
          <?php previous_posts_link('Next Entries &raquo;') ?></p>
        <?php else : ?>
            <h2>Not Found</h2>
   <p>Sorry, but you are looking for something that isn't here.</p>
   <?php endif; ?>
<?php comments_template(); ?>
    </div>
    <?php get_footer(); ?>

Muncul deh Leave Commentnya. Copas dari sini

Popularity: 3% [?]

  • Share/Bookmark

Posted in WebComments (3)

Say “NO!!!” to Megawati VS Lawan Pembuat SAY NO TO MEGA


Gw hanya bisa tertawa wakaka melihat perselisahan antara dua grup Facebook yang menamakan Say “NO!!!” to Megawati dan Lawan Pembuat SAY NO TO MEGA.

Dimulailah grup Say “NO!!!” to Megawati muncul di hadapan para pengguna Facebook. Dalam hitungan hari page tersebut sukses mendulang suara 90.558 (terus bertambah setiap detiknya). Seakan tidak mau kalah dibikinkanlah grup Lawan Pembuat SAY NO TO MEGA tapi apa daya grup ini hanya mampu menjaring 112 suara dan tentu tidak akan bertambah setiap detiknya. Lucunya ternyata yang menjadi pendukung Lawan Pembuat SAY NO TO MEGA tak lain dan tak bukan mereka yang telah menjadi pendukung grup Say “NO!!!” to Megawati dengan alasan agar bisa menulis komentar di grup Lawan Pembuat SAY NO TO MEGA.

Komentar – komentar yang ditampilkan sangat beragam mulai dari yang kecewa kenapa komennya yang baru ia tinggalkan sudah digantikan dengan komentar baru karena saking banyaknya komentar yang masuk sampai ada yang jualan kacang dan rokok. :D
Kritik itu memang pedas apalagi kripik pedas bisa membuat perut mulas. Tapi jiwa kita akan semakin sakit bila tidak ada orang yang mau mengkritik kita. Cuma mau menyampaikan bagi yang memberikan komentar hendaklah saran dan kritik yang bersifat membangun bukan saling menghujat serta melecehkan. Semoga bangsa ini menjadi lebih baik. Amin.

Popularity: 26% [?]

  • Share/Bookmark

Posted in Uncategorized, WebComments (3)

Tags: , ,

Menampilkan Avatar


Bagi teman – teman yang ingin komentarnya ada tampilan foto teman – teman sendiri. Begini caranya…

  • masuk ke www.gravatar.com
  • klik sign up dan isikan alamat email anda
  • Buka inbox email Anda, kemudian carilah email yang datang dari Gravatar. Setelah Anda buka email tersebut, klik tautan yang ada di email tersebut untuk mem-verifikasi pendaftaran Anda. Secara otomatis, Anda akan masuk ke account Anda di gravatar dan harus mengisikan beberapa data.
    Data yang harus diisikan tersebut, adalah Nickname (silahkan cepat-cepat mendaftar, sebelum nama yang Anda inginkan dipakai orang lain), Password (diisikan sebanyak dua kali). Kemudian klik Signup.
  • Untuk memilih gambar avatar, caranya dengan klik pada tulisan Add one by clicking here!. Kemudian pilih sumber gambar. Untuk membuka gambar yang sudah tersimpan di komputer, maka pilihlah My computer’s hard drive.
    Setelah itu, klik Browse, cari file yang akan Anda gunakan sebagai avatar. Kemudian klik Next.
  • Ubahlah ukuran kotak yang berwarna terang sesuai dengan ukuran foto yang anda inginkan. Apabila foto ini sebelumnya belum di-crop, langkah ini adalah untuk menyesuaikan panjang dan lebarnya. Setelah ukuran sesuai, klik tombol Crop and Finish!
  • Pilihlah tingkat penilaian sosial tentang avatar Anda ini.
    Terdapat empat pilihan, berikut ini penafsiran saya sendiri:1. G = Bisa dilihat oleh semua umur, dari anak kecil sampai mbah-mbah. Saya sarankan untuk menggunakan foto/gambar yang sopan, dan memilih tingkat penilaian ini.
    2. PG = Ada sedikit unsur kekerasan, dan atau pakaian yang menantang. Gampangnya, saat Anda melihat gambar ini kening Anda agak berkerut, dan mikir sedikit “apakah adik kecil Anda pantas melihatnya”.
    3. R = Terdapat gambar yang bisa membuat Anda malu dan atau takut-takut saat menonton ini dihadapan orang tua, mertua, atau pimpinan Anda.
    4. X = Jika gambar Anda pampang di papan pengumuman kampung, bisa membuat para tetangga Anda melaporkan Anda ke Pak RT.

    Langkah pembuatan avatar di gravatar sudah jadi. Setelah ini, jika Anda ingin avatar Anda muncul pada blog-blog yang mendukung gravatar, Anda tinggal menggunakan email yang Anda daftarkan tadi saat memberikan komentar.

  • Popularity: 18% [?]

    • Share/Bookmark

    Posted in WebComments (9)

    Tags: , ,

    Pasang Shoutbox


    Untuk memasang shoutbox di wordpress anda bisa melalui http://oggix.com/, cbox , atau shoutmix.

    Yang saya tulis anda langkah – langkah pada oggix.
    Langkah awal anda harus register terlebih dahulu di site itu. Proses registrasi selesai anda harus login. Setelah login anda akan dihadapkan pada control panel. Anda bisa mengupload avatar anda, dan avatar anda akan muncul bila anda meninggalkan pesan di shoutbox anda.
    Read the full story

    Popularity: 15% [?]

    • Share/Bookmark

    Posted in WebComments (0)

    • Page 1 of 2
    • 1
    • 2
    • >

    Translator

    Indonesian flagChinese (Simplified) flagEnglish flagGerman flagJapanese flagDutch flag                                    
    By N2H

    tinggalkan jejakmu..

    Name :
    Web URL :
    Message :
    :) :( :D :p :(( :)) :x

    Roy Tanck's Flickr Widget requires Flash Player 9 or better.

    Get this widget at roytanck.com