31 March 2009

Ganti IP Harus Restart Komputer

ada yang pernah mengalami kejadian dibawah ini :

katakanlah IP kompi gw 192.168.1.7
pada suatu saat untuk keperluan tertentu, gw harus ganti IP gw jadi 192.168.0.7
pada sebelum2nya ganti IP ini biasa2 saja tak ada masalah
pada suatu ketika, gw dah ganti IP gw, tapi entah kenapa klo gw liat pake IPCONFIG melalui DOS Propmt IP gw ga berubah. inisiatif muncul tuk merestart kompi. langsung dech IP seketika itu juga berubah. gw pikir kejadian itu hanya sekali itu aja, namun ketika gw mau ngebalikin IP gw kesemula, gw juga harus restart kompi lagi. berikutnya juga kaya gitu lagi. BT ga Tuh . . .

gw nanya kan sama temen gw lewat milis. dapet jawaban kaya gini :

kayaknya primary routenya belon berganti tuh alias ipnya masih ke hold
berikut langkah2nya:

translate ndiri yah Om, hehehe
Here's How:

1. Click the Start menu button on the Windows taskbar.

2. Click Run... on this menu.

3. If the computer is holding a current IP address, type 'cmd' (without the quotes) in the text box that appears. A command prompt window appears on the screen.

4. Type 'ipconfig' (without the quotes) to view the status of the computer's IP address(es).

5. If the computer is holding a current IP address, type 'ipconfig /release' to let go of the address.

6. Type 'ipconfig /renew' to obtain a new IP address (whether or not the computer is holding a current address).

Tips:

1. If it is not necessary to view the current IP addresses on a computer, simply type 'ipconfig /release' or 'ipconfig /renew' (without the quotes) in the text box that appears in Step 3.

2. To bring a computer back onto the network after moving it to a different location, or experiencing an unexpected outage, first release, then renew the IP address. Computers on DHCP networks often (but not always) re-establish network connectivity automatically.

What You Need:

* WinXP, Win2000, or WinNT
* IP network connectivity

tq for fajar

27 March 2009

Lupa password root pada MySQL 5.0.45 di Windows

1. matiin service mysql pake task manager :
pada tab process cari proses mysqld-nt.exe -> klik kanan pada proses tsb
-> end process
2. buka MS-DOS Prompt :
[logo windows] + [R] -> ketik cmd -> enter
3. Masuk ke directory tempat mysqld-nt.exe terinstal.
Pada kasus saya ada di C:\wamp\bin\mysql\mysql5.0.45\bin>
4. ketik perintah ini mysqld-nt --skip-grant-tables
5. buka MS-DOS Prompt baru, masuk lagi ke directory tempat mysqld-nt.exe terinstal.
6. ketik perintah mysql -u root
7. klo ga da yg salah, kita dah bisa masuk. walaupun kita dah bisa masuk, sebenarnya password yg lama belum terhapus. untuk itu, kita reset password yg lama.
8. ketik perintah use mysql
9. ketik perintah UPDATE user SET Password=PASSWORD(’newrootpassword’) WHERE User=’root’;
10. ketik perintah FLUSH PRIVILEGES;
11. keluar dari mysql trus masuk lagi pake perintah mysql -u root -p
12. ketik password baru yg tadi dibikin.

inspirasi : disini

24 March 2009

Menghilangkan NavBar Blogger

Untuk menghilangkan navbar blogger, langkah-langkahnya sebagai berikut :

pilih tab layout -> pilih menu Edit HTML -> cari kode css seperti berikut lalu hapus.

#navbar-iframe {
height:0px;
visibility:hidden;
display:none
}

jika tidak ketemu, jangan takut! kita bisa pakai cara ini :

taro kode berikut persis di bawah tag <body>

<style type='text/css'>
#navbar-iframe {display:none;}
</style>

selamat mencoba dan nikmati blogger anda tanpa NavBar.

inspirasi : disini