13 cara mengamankan wordpress anda

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.

Continue reading

menggunakan layanan gmail dengan nama domain sendiri

Menggunakan gmail sebagai layanan webmail adalah sesuatu yang sangat mustahal.. karena kenapa.? coz kite harus sewa hosting sama google. Tapi untung nya saat ini gratis. Yaitu dengan menggunakan layanan google apps.. Untuk yang terbiasa pakai cPanel, biar ga kesusahan aja buka webmail nya.

langkah langkah nya tinggal buka ini lalu isi form kaya di bawah ini

1. Masukkan nama domain

Continue reading

install Windows Server di xen domU melalui hypervm

pada tutz sebelum nya yaitu installasi hypervm di centos sekarang ane lagi coba-coba untuk install windows server di hypervm. langkah-langkah nya adalah sbb :

Langkah awal nya adalah membuat file iso yang akan di simpan di server. tutorial nya ada di sini

[root@localhost ~]$  ln -s /iso/win2k3r2-cd1.iso /home/wincd.img

lalu ubah file permission nya ke 755

[root@localhost ~]$ chmod 775 /iso/win2k3r2-cd1.iso

Now login to HyperVM by entering the IP address of the computer you installed it to in a web browser and connect to port 8887 or 8888. For example:

The interface will return you to the Virtual Machines listing. Click on vm name to go to it’s control panel. From there you can open the vm’s output display by selecting VNC Client under the Console category. Alternatively you can connect using a third party VNC client to the host machine’s IP address at the port specified in the VNC Client page. Once you’ve connected, you can install Windows as you normally would on a regular computer.

In Windows Server 2003 R2, the main installation will use only the first disc. After the OS is set up during the first logon the installer will ask for a second disc. You can skip this but should you want to continue with the second disc, this is what you have to do in the terminal console of the host machine:

Continue reading

Mengkunci www pada url website pakai .htaccess

Code:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^mydomain\.com$ [NC]
RewriteRule ^(.*) http://www.mydomain.com/$1 [L,R=301]

copy kode di atas pada .htaccess dalam root website kamu, kalau .htacess belum ada silakan buat sendiri. Dalam kode rewrite di atas setiap user masuk lewat mydomain.com akan langsung diredirect 301 menuju http://www.namadomain.tld

Trus apa keuntungannya mengkunci www.?
Sebenarnya ini adalah salah satu teknik seo, supaya tidak terjadi duplicate indexing pada website kamu. Selain itu kamu juga bisa memilih selalu memakai www (www.namadomain.tld) atau selalu tidak memakai www (http://www.namadomain.tld). Gw sendiri memilih selalu memakai www karena penggunaan www sangat umum dipakai. Tapi sebelum mencoba kode di atas coba dulu apakah http://namadomain.tld dan www.namadomain.tld meunuju tempat yg sama

Selamat Mencoba!!!

Belajar membuat Aplikasi Java di Handphone

setelah asik berkutat dengan server, belakangan ini gw terusik pengen belajar java :D ga tau kenapa pengen aja. kali ini saya akan membahas tentang membuat aplikasi java di HP. Pertama-tama teman-teman harus mempunyai aplikasi J2SE ( jdk-6u3-windows-i586-p ), J2ME WTK ( sun_java_wireless_toolkit-2_5-windows ), JCreator.
Urutan penginstalannya adalah sebagai berikut:

  1. install J2SE ( jdk-6u3-windows-i586-p )
  2. install J2ME WTK ( sun_java_wireless_toolkit-2_5-windows )
  3. klik kanan my computer, properties, advanced, enviroment variables,klik variable Path lalu klik edit. Di jendela Edit System Variable ketikkan ;C:\Program Files\Java\jdk1.6.0_10\bin;%PATH%
  4. install JCreator

Sebagai contohnya:
1. Buka aplikasi Wireless Toolkit 2.5

Continue reading