Showing posts with label Tutorial. Show all posts
Showing posts with label Tutorial. Show all posts
Saturday

Tutorial membuat PC menyapamu saat LOGIN!!

0 Comments
Credits : demongill
Ni bro gw temuin cara biar pas login nanti OS lo ngomong salam selamat pagi, selamat siang dan selamat malam ke lo..
mantap dah, gw seneng banget pake ini, tapi gw buatnya pake bahasa inggris soalnya klo bahasa indonesia suaranya aneh pas ngomognya

1. Buka Notepad
2. copy code vbscript berikut ke notepad :

Code:
Dim speaks, speech, salam , username username = CreateObject("WScript.Network").Username If Hour(Time) < 12 Then salam = "Good morning" ElseIf Hour(Time) < 20 Then salam = "Good afternoon" Else salam = "Good night" End If speaks = salam + " " + Username + "! Welcome back to your computer! Have a nice work!" Set speech = CreateObject("sapi.spvoice") speech.Speak speaks

3. save file berikut jadi "welcome.vbs"
4. copy file tersebut ke :
Windows Vista & 7 -> "C:\Users\{username}\AppData\Roaming\Microsoft\Win dows\Start Menu\Programs\Startup"

Windows XP -> C:\Documents and Settings\{username}\Start Menu\ atau C:\Documents and Settings\All Users\Start Menu\Programs\Startup

Untuk merubah suara default windowsnya bisa download disini
ato kalo mo mencoba demonya disini :
http://www.cepstral.com/demos/

pilih sesuai dengan versi windows kalian, ada banyak suara disitu bro, gw si pake suara Callie..
soalnya sexy bgd
setelah install aplikasinya registrasi dulu softwarenya
caranya :
1. Buka program Cepstral Tool
2. Buka tab License dan isi datanya sebagai berikut :


Code:
Name: deMongiLL 
Company: PiracyIsFreedoM 
Voice Serials: 
Allison : d9-b85c90-c1f91d-d5c04a-aa846d-9c8d49 
David : 87-5a26d2-44df61-28171f-87f353-cbb408 
Diane : 22-eedde7-244023-a67b82-a48316-3af516 
William: bb-fd7343-ae597f-1e3b48-4bcbe3-bdb0d5 
Amy : 00-e202b1-a9c348-68afe8-4c8856-72af06 
Emily : 04-6bd6d6-baa76a-5d0eaf-4509dd-b50fbc 
Duncan: 10-317b9f-67a41e-839bf9-115698-332334 
Linda: 66-5fd936-1e19f0-b27e4d-f332de-c7fba7 
Robin: 07-470bcc-e0890c-c79da8-d8464b-2998ee 
Walter: 2a-8c73a3-c4cb7a-79819b-041c67-0197b5 
Lawrence: b2-cbac13-2d71e5-89cd17-6596dd-ea3a3c 
Millie: a6-79f5d8-ba91ca-90b8b5-79ddee-e7bb58 
Isabelle: d2-850e06-580b61-5b731b-fda1b2-88fb56 
Jean-Pierre: a6-fb83a2-b6f421-55ba98-da0da5-18009c 
Katrin: f6-302c89-cc1dfd-9a290a-2f8bd4-1ebda8 
Matthias: 61-8f8eb1-175f55-7a0f77-c85539-44cf2c 
Marta: bc-6e839a-4a0009-9453fa-0705ef-11c10a 
Miguel: 0d-bca334-f8deb6-c52e5d-7ec3aa-bf6fb2 
Damien: 13-9c409b-99d4ce-80dd4d-02e841-46d24a 
Duchess: 94-091fbd-3aa3e6-3aad01-8b1bb3-8f2c1e 
Vittoria: 9d-942b71-e0f83b-4fa894-6f2cf8-147968 
Dog: 3a-60b0f8-7578e7-266e40-c8dafc-da0a73 
Callie: d8-382eb6-cc2c7b-f0204e-136211-879218 
Shouty: 5a-9eacd6-f193af-8d4648-26cfc6-31d0d7 
Whispery: 98-2830cc-3e97e2-b8c92f-73b5c8-2be78b

NB : pilih serial sesuai nama voice yang lo pake bro

3. setelah ter-licensed, pilih default suara di sapi.cpl yang ada di
C:\Windows\SysWOW64\Speech\SpeechUX\-> Windows 7 64bit
di windows 32 bit coba gunain fungsi search untuk cari file sapi.cpl
4. klik 2x file sapi.cpl trus pilih de suara yang udah terinstall,..

untuk XP lihat disini ~ credit to Rayto
5. coba jalanin file welcome.vbs lagi pasti sekarang sudah berubah suaranya..

Password : rayto
Read more...
Wednesday

Tutorial Compile NGINX pada Debian

0 Comments
Tutorial Credits : Sheratan
Kali ini saya ingin memberi tahu tentang cara membuat sebuah web server pada keluarga Debian dengan menggunakan NGINX, PHP, dan MySQL. Pertama-tama kita compile NGINX dahulu.


Pra-Kerja (Tidak wajib sih, tapi buat jaga-jaga doang.)



apt-get install bison flex r2c re2c
apt-get install autoconf
apt-get install libtool


Buka Terminal.



apt-get update
cd /usr/
mkdir kerja
cd kerja

Pertama-tama kita update repositori. Lalu masuk ke usr, buat folder baru yang namanya "kerja" dan masuk ke folder itu. Tujuan buat folder ini adalah supaya file yang kita buat tidak berantakan.

Berikutnya download NGINX. Saat tulisan ini dibuat versi terbarunya adalah 1.2.1


wget http://nginx.org/nginx-1.2.1.tar.gz
tar zxvf nginx-1.2.1.tar.gz
cd nginx-1.2.1
./configure
make
make install


Setelah itu proses compile pun dimulai... Setelah selesai kita dapat memulai NGINX dengan cara:



cd /usr/local/nginx/sbin
./nginx


Untuk reload konfigurasi NGINX


kill -HUP `cat /usr/local/nginx/logs/nginx.pid`


Untuk membuat agar NGINX bisa membaca PHP (nb: Kalau PHPnya sudah ada)


nano /usr/local/nginx/conf/nginx.conf


Hilangkan komentar pada baris 65 - 71 sehingga tampilan baris itu seperti ini:



location ~ \.php$ {
            root           html;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }


Jangan lupa reload konfigurasi NGINX setelah itu.

Masalah-masalah yang saya hadapi:



error C compilet not found


Solusi : apt-get install g++


error: the HTTP rewrite module requires the PCRE library.


Solusi : apt-get install libpcre3 libpcre3-dev


error: the HTTP gzip module requires the zlib library.


Solusi : apt-get install zlib1g-dev


INFO: Jika ingin menambahkan dukungan OpenSSL, install dulu OpenSSL library dan dev


apt-get install libssl-dev libssl0.9.8 openssl


Jika sukses semua, maka NGINX ada di /usr/local/nginx
folder htdocs (dalam istilah apache) adalah folder html



Pertanyaan :


Q: Kk kok gak pake apt-get install nginx aja?
A: Yang di repositori kadang suka jadul.

Q: Kk kok gak pake yang dari dotdeb.org aja?
A: Kalau mau gampang silahkan. Tapi saya mau susahnya alias belajar compile sendiri biar ngerti.









Read more...
Monday

Tutorial Enable mod_rewrite di Debian/Ubuntu

0 Comments


Pertama anda harus sudah menginstal apache kalau belum gunakan perintah seperti dibawah ini :
apt-get install apache2
Sekarang kita akan mencoba mencari atau mendeteksi keberadaan file mod_rewrite.so dengan perintah dibawah ini :

updatedb
locate mod_rewrite.so

Kemudian akan ditemukan seperti ini : "/usr/lib/apache2/modules"
Sekarang untuk meng aktifkan mod dan mendisable bisa menggunakan perintah dibawah ini:

cd /etc/apache2/mods-enabled
touch rewrite.load
vim rewrite.load (Disini anda harus menggunakan text editor, untuk debian bisa menggunakan nano editor)

Sekarang copy dan paste kan kode dibawah ini ke rewrite.load tadi.
LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so

Kemudian edit dibawah ini:
/etc/apache2/sites-available/default

Cari kata yang sama persis seperti dibawah ini:

Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all

setelah ketemu kemudian anda ganti seperti dibawah ini :

Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from all

Terakhir anda Restart Apache

/etc/init.d/apache2 restart
Selamat, sekarang anda dapat menggunakan htaccess.
Read more...
Friday

Tutorial Xampp Not Running Thread Worker

5 Comments

Pernahkah anda mengalami Warning : terminating worker thread 0 atau trus Busy tetapi Apache tetap tidak jalan, atau pun MySQL Port 3306 error.
Nah Bagi Error Pertama yaitu error Terminating Worker Thread pada Apache anda bisa menggunakan Visual C++ 2008 SP 1 untuk menjalankan kembali apache.
Anda bisa download link nya dibawah ini :
http://www.microsoft.com/en-us/download/details.aspx?id=5582
Lalu bagaimana dengan Error MySQL error Port 3306 already use! anda cukup mencentang bagian service pada mysql di XAMPP Control Panel.
Read more...
Thursday

Trik Update ESET NOD32 Tanpa Harus Isi Ulang Username & Password

0 Comments

Fitur server update ESET NOD32 Smart Security defaultnya terkunci. Bagaimanakah agar dapat dibuka kuncinya seperti pada gambar berikut ???



Nah untuk mengaktifkan fitur tersebut saya punya trik yang sangat keren dan dijamin fitur tersebut dapat berfungsi dengan baik. Adapun langkah-langkahnya sebagi berikut :
Boot windows ke safe mode dengan menekan F8 atau F9 pada waktu booting. (Penting)
Setelah windows dalam mode safe mode masuk ke registry dengan cara mengetikan regedit pada menu "run"
Kemudian setelah masuk regedit cari :
HKEY_LOCAL_MACHINE\SOFTWARE\ESET\ESET Security\CurrentVersion\Info
Kemudian cari PackageFeatures dan ubah nilai default menjadi "00000001" (dengan cara klik 2 kali dan ganti angka 3 menjadi angka 1).


Restart komputer dan fitur server updatenya sudah aktif
Nah sekarang untuk server mirror ESET NOD32 Smart Security 5, dapat gunakan server berikut : http://www.ad4msan.com/ESET/updV5/


*)CATATAN : jika menggunakan server mirror, kosongkan username dan password (bisa digunakan pada ESET NOD32 ANTIVIRUS 5 dan ESET Smart Security 5)

Source : NeoZone

Read more...
Wednesday

Slide Unlock Jquery JavaScript + CSS

0 Comments
Click Image to view Large

HTML Code 
<html>
    <head>
        <meta charset='UTF-8'>
        <title>Slide To Unlock</title>
        <link rel='stylesheet' href='css/style.css'>
        <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js'></script>
        <script src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js'></script>
        <script src='js/slidetounlock.js'></script>
    </head>
    <body>
        <div id="page-wrap">
            <div id="well">
                <h2><strong id="slider"></strong> <span>slide to unlock</span></h2>
            </div>
        </div>
    </body>
</html>
 CSS Code

* { margin: 0; padding: 0; }
html { background: black; }
body {
font: 14px Georgia, serif;
background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #3b3b3b),color-stop(1, #000000));
background-repeat: no-repeat;
min-height: 350px;
}
#page-wrap { width: 720px; margin: 0 auto; padding-top: 100px; }
#well {
padding: 14px 20px 20px 20px;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
background: -moz-linear-gradient(top, #010101, #181818);
background: -webkit-gradient(linear,left top,left bottom,color-stop(0, #010101),color-stop(1, #181818));
border: 2px solid #454545;
overflow: hidden;
-webkit-user-select: none;
}
h2 {
  background: -moz-linear-gradient(left, #4d4d4d, 0.4, #4d4d4d, 0.5, white, 0.6, #4d4d4d, #4d4d4d);
  background: -webkit-gradient(linear,left top,right top,color-stop(0, #4d4d4d),color-stop(0.4, #4d4d4d),color-stop(0.5, white),color-stop(0.6, #4d4d4d),color-stop(1, #4d4d4d));
 
  -moz-background-clip: text;
  -webkit-background-clip: text;
 
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
 
  -webkit-animation: slidetounlock 5s infinite;
 
  font-size: 80px;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
 
  padding: 0;
  width: 200%;
 
  -webkit-text-size-adjust: none;
}
#slider {
background: url(../images/arrow.png) no-repeat;
width: 146px;
height: 98px;
display: inline-block;
vertical-align: middle;
line-height: 1;
}
@-webkit-keyframes slidetounlock {
0% {
background-position: -720px 0;
}
100%{
background-position: 720px 0;
}
}
 Javascript Code

$(function() {
$("#slider").draggable({
axis: 'x',
containment: 'parent',
drag: function(event, ui) {
if (ui.position.left > 550) {
$("#well").fadeOut();
}
},
stop: function(event, ui) {
if (ui.position.left < 551) {
$(this).animate({
left: 0
})
}
}
});
$('#slider')[0].addEventListener('touchmove', function(event) {
   event.preventDefault();
   var el = event.target;
   var touch = event.touches[0];
   curX = touch.pageX - this.offsetLeft - 73;
   if(curX <= 0) return;
   if(curX > 550){
    $('#well').fadeOut();
   }
  el.style.webkitTransform = 'translateX(' + curX + 'px)';
}, false);
$('#slider')[0].addEventListener('touchend', function(event) {    this.style.webkitTransition = '-webkit-transform 0.3s ease-in';
   this.addEventListener( 'webkitTransitionEnd', function( event ) { this.style.webkitTransition = 'none'; }, false );
   this.style.webkitTransform = 'translateX(0px)';
}, false);
});

Source Code Download
http://www.mediafire.com/?xewq6ftp7gl7bp9


Read more...
Monday

Setting SEO Blogger 2012

0 Comments

Optimasi SEO Setting robots.txt

1. Analyze our blogger robots.txt default
Cek http://www.cyberraptor.org/robots.txt
kemudian replace http://www.cyberraptor.org dengan Blogger Url anda, silahkan bandingkan perbedaannya dengan default robot blogger anda. Default robots.txt semua blogger bawaan lahir, biasanya seperti ini

User-agent: Mediapartners-Google
Disallow:
User-agent: *
Disallow: /search
Allow: /
Sitemap: http://www.cyberraptor.org/feeds/posts/default?orderby=updated

Disallow: /search, artinya blogger memberi batasan bahwa semua robot search engine dilarang untuk mengindex semua link di dalam blog yang diawali dengan /search.
Link label blogger atau juga wildcard query, misalnya : http://www.cyberraptor.org/search?q=SEO.

Sitemap: http://www.cyberraptor.org/feeds/posts/default?orderby=updated
Sitemap Query information

2. Customize Your Sitemap
Login to dashboard : draft.blogger.com bagi yang belum diupgrade dashboardnya
klik Settings - Search Preferences a.k.a Setelan - Preferensi penelusuran kalau gak salah inget
'Custom Robots' , klik Edit; Enable - Yes


Robots Blogger Sitemap Default:
Sitemap: http://www.cyberraptor.org/feeds/posts/default?orderby=updated

Setting robot default blogger, pada query peta situs bin sitemapnya hanya menginformasikan sebanyak 26 blog post alias 26 artikel yang baru diedit.

Blogger Sitemap Custom Version:
Sitemap: http://www.cyberraptor.org/feeds/posts/default?orderby=updated&max-results=500

The conclusion, 'optimasi seo robots blogger' versi blog seo katro kurang lebih seperti ini


Sitemap: http://www.cyberraptor.org/feeds/posts/default?orderby=updated&max-results=500
User-agent: Mediapartners-Google
Disallow:


User-agent: Alexibot
User-agent: Mozilla/4.0 (compatible; BullsEye; Windows 95)
User-agent: WebBandit
User-agent: Zeus
Disallow:/
User-agent: *
Disallow: /search
WARNING PREN: replace http://www.cyberraptor.org dengan url blog anda, kemudian Save changes.

Khusus yang ditandai warna merah adalah beberapa contoh bad robots.

3. Block URL post via Robots blogger

Optional, biasanya apabila in your blog memiliki contact pages, privacy policy, disclamer etc, You bisa menambahkan disallow pada beberapa link artikel tersebut. Alasannya karena tidak ada gunanya juga halaman tersebut terindex di search engine. Ada baiknya juga kalau dipindah dari navbar blog atau disisipi rel="nofollow" agar robot search engine tidak menggerayangi isi blog dikau :D

Contohnya satu saja ya; misalnya link artikel anda adalah yourblogspot.com/p/disclaimer.html
maka untuk block search engine, paste kode ini di bawahnya or add this code below afterDisallow: /search


Disallow: /p/disclaimer.html

Save Changes
Read more...
Thursday

Cityville hack Item dengan Charles Proxy Debugger

0 Comments

PERSYARATAN :


Harus Memiliki Charles Web Debugging Proxy anda bisa download di sini (http://www.mediafire.com/?llkvzfsdfrkpy5e)

License Key untuk meregistrasi Charles Proxy

Registered Name : Levin Prescott Tull

License Key : 1beda9831c78994f43

Registered Name : Stephen A Muniz

License Key : 8a2b9debb15766bff9



LANGKAH-LANGKAH:



1. Buka Charles dan buka CityVille, biarkan CityVille selesai dimuat (selesai loading);
2. Lihat ke Charles, buka dan perluas folder http://web-zc1.cityville.zynga.com / flashservices, klik kanan pada gateway.php, dan aktifkan breakpoints (tandai centang pasa Breakpoints) kemudian refresh (reload) CityVille;
3. Sebuah Breakpoints akan muncul di Charles, klik "Execute" pada Breakpoints pertama dan pada Breakpoints kedua klik Edit Response / AMF / data / userinfo / player dan rubah angka cash misal 4000;
4. Klik Exhagon Merah => di bagian atas Charles untuk menonaktifkan breakpoint dan Execute;
5. Klik menu Bangun dan pilih "peti misteri" tapi JANGAN klik "YA" untuk membeli;
6. Kembali ke Charles, klik Exhagon Merah => untuk mengaktifkan breakpoints
7. Kembali ke permainan, sekarang klik "YA" untuk membeli peti, breakpoint baru akan muncul di charles
8. Klik Edit Request / AMF / params dan mengganti kode "mystery_crate_winter1" ke "city_center_7" (contoh) dan rubah angka "1" di bawahnya (terserah berapa banyak items yang anda inginkan).
9. Klik Exhagon Merah => untuk menonaktifkan Breakpoints dan "Execute" Breakpoint

SELESAI,... LIHAT INVENTARIS ANDA dan Semoga Bermanfaat..

CATATAN : Bila setelah di execute peti misteri msih tetap berputar-putar (tracking reward), berarti code yang anda masukan tidak benar, atau items tidak dapat diambil memalui peti misteri, atau mungkin koin anda kurang.
Untuk Window 7, silahkan download file ini dan menginstalnya sebelum menggunakan Charles. PS3DNS: http://www.mediafire.com/?9vc9gldiuxg34jd


BEBERAPA KODE ITEMS :

mun_aquarium_3

mun_candyticketbooth_3

mun_doggiedaycare_3

mun_rangerstation_3

mun_aquarium_3

mun_carnivalticketbooth_3

mun_cityworks_3

mun_clerkoffice_3

mun_clinic_3

mun_downtownlibrary_3

mun_library_3

mun_middlechool_3

mun_museum_3

mun_newspaperhq_3

mun_postoffice_3

mun_prison

mun_shellticketbooth_3

mun_smallschool_3

mun_tvstation_3

mun_weatherstation_3

mun_passportoffice_3

mun_musicschool2

hood_gated_community_level3

hood_apartments_level3

hood_vacation_homes_level3

hood_mansions_level3

hood_family2_level3

hood_halloween_level_3

mall_fashion_center_level3

mall_food_court_level3

city_center_7

mun_govcenter_7

mun_historymuseum_3

storage_facility_level3

storage_outskirtsfarm_4 (storage 4850 goods)

storage_megasilo

learning_center_2

deco_airport_runway

res_aptcube storage_holidaybarn = reindeer barn storage 10k goods cost = 1 million coins res_key_marina_house = ferry terminal

res_key_residenceisland_tower = aloha island tower (allowed 5k population) can stack each other to place it so you easily can have 20 million of population limit :)

storage_key_fishing = fishing storage 4k premium goods can stack each other to place it

skyscraper_japanese_6 ( taki tower - 1 cost 15million coins )

skyscraper_cetronas_center_6 ( mirror heights - 1 cost 15million coins )

sky_blueskyscraper_6 ( platinium tower - 1 cost 15million coins )

skyscraper_dubai_6 ( dubai tower - 1 cost 15million coins )

solar mall = mall_solar_level3


DOWNTOWN
Residences (Perumahan)

res_apartments1 - Modern City Apartments

res_apartments2 - Urban Apartments

res_condos1 - Modern Condos

res_elderhome - Elder Home

res_lofts1 - Live Work Loft

res_lofts2 - Modern Loft

res_luxuryapartments - Luxury Apartments

res_portal1 - Sky Towers

res_portal2 - Modern Glass Condos

res_portal3 - Wave Suites

res_portal4 - Cloud Heights

res_skyscraper1 - Downtown Highrise

res_skyscraper2 - Luxury Highrise

res_victorian1 - Classic Victorian

res_victorian2 - Cosmopolitan Victorian



Municipals (Gedung Komunitas)

mun_ampitheatre - Ampitheatre

mun_botanicalgardens - Botanical Gardens

mun_broadway - Broadway

mun_centralpark_7 - Central Park Level 7

mun_conventioncenter - Convention Center

mun_downtownbank - Downtown Bank

mun_downtownbaseballstadium - Baseball Stadium

mun_downtowncityhall - Downtown City Hall

mun_downtowncityworks - Downtown City Works

mun_downtowncourthouse - Downtown Courthouse

mun_downtownfirestation - Downtown Fire Station

mun_downtownhospital - Downtown Hospital

mun_downtownlibrarybranch - Downtown Library

mun_downtownnewspaper - Downtown Newspaper Office

mun_downtownpolicestation_6 - Police Station Level 6

mun_downtownschool - Downtown School

mun_downtownsquare - Union Square

mun_operahouse - Opera House

mun_planetarium - Planetarium

mun_subway - Downtown Subway Station



Wonder

wonder_downtown_gala - Red Carpet Gala
Read more...
Sunday

Cara Merawat Website yang Benar

0 Comments
Click Image to view Large
Website sebuah per-umpamaan rumah atau kantor kita di dunia maya, seperti halnya di dunia nyata agar kantor atau rumah kita banyak di datangi tamu atau di dunia maya visitor, kita harus rajin merawatnya. Ada beberapa cara merawatnya, yaitu:

1. Update

Website yang tidak pernah diperbarui isinya sudah pasti akan membuat bosan pengunjungnya. Jadi kita perlu melakukan update content secara teratur.

Pengunjung bisa mendeteksi tanda-tanda kehidupan sebuah situs dari tanggal yang tertera pada halaman situs tersebut. Jika tanggal yang tertulis memiliki rentang yang sangat panjang dibandingkan hari ini maka hal tersebut akan menandakan bahwa website itu tidak terawat dan tidak pernah diperbarui.

Isi website dengan content yang bermanfaat bagi pengunjung seperti artikel, berita, agenda kegiatan atau yang lainnya. Jangan lupa untuk selalu mencantumkan tanggal pada setiap tulisan agar pengunjung tahu kapan terakhir halaman tersebut diperbarui.

2. Backup Data

Tindakan yang tidak kalah pentingnya yaitu backup data. Langkah ini perlu kita lakukan untuk mengantisipasi jika sewaktu-waktu terjadi gangguan pada web server. Apabila kita tidak melakukan backup secara teratur tentu semua data yang tersimpan di web server tersebut seketika akan hilang. Lain halnya jika kita memiliki backup data, kita bisa dengan mudah memulihkan data tersebut begitu web server selesai diperbaiki.

3. Monitor Statistik

Statistik website sangat penting untuk mengetahui perkembangan suatu website. Kita bisa tahu jumlah pengunjung, dari mana mereka berasal dan halaman apa saja yang menjadi favorit dari statistik tersebut. Kita bisa memanfaatkan layanan Google Analytic untuk mendapatkan data statistik tersebut.

Jangan lupa untuk selalu mengecek bandwidth yang dipakai setiap bulannya. Jika bandwidth tersebut hampir mencapai batas maksimum ada baiknya kita mempertimbangkan untuk menambah kuota bandwidth.

4. Ubah Tampilan Website

Agar terlihat fresh, kita bisa mengubah tampilan website. Tapi ingat, jangan terlalu sering mengubah tampilan, cukup satu atau dua tahun sekali saja kita melakukan perubahan.

5. Promosi Website

Untuk mencapai hasil yang maksimal kita perlu melakukan promosi secara teratur. Tujuannya agar pengunjung yang datang selalu meningkat dari waktu ke waktu.

Nah, itulah beberapa tips sederhana yang bisa kita lakukan untuk merawat website. Barangkali ada yang mempunyai ide lain?
Read more...
Thursday

Tutorial Pindah Hosting

0 Comments
PERTAMA
Masuk control panel terus bukan file manager. Pilih blog yang mau dipindahin dan cari file wp-config.php. Cari teks:
[CODE]('DB_NAME', 'namadb_wrdp1');[/CODE]Ini gunanya biar kita tau database mana yang digunakan blog yang mau dipindahin. Dalam tutorial ini berarti nama databasenya adalah wrp1. Inget2 tuh nama databasenya

KEDUA
Selanjutnya pilih semua file di directory blog, terus teken compress di sudut kanan atas. Biar ga bingung kasi nama sesuai nama blognya,

KETIGA
Klik file .zip tadi terus klik download (di sebelah delete).

KEEMPAT
Sekarang kita mau ambil databasenya. Balik lagi ke home terus klik phpMyadmin. Klik database yang digunakan blog yang mau kita pindahin (langkah pertama). Dalam tutorial ini ane pake contoh 'namadb_wrdp1'. Kemudian klik CHECK ALL dan teken EXPORT.

KELIMA
Di bagian paling pilih save as file dan gzipped (biar filenya kecil). Terus kasi nama namablog_db (bebas sih kasi nama,tapi kalo ane biasanya gini biar ga bingung/ketuker databasenya)

DI HOSTING BARU

PERTAMA
Pindahin file yang udah kita compress di langkah nomer 2 tadi. Buka software filezilla dan masukkan data kaya gini
Host: ftp.namadomain.com - Username dan password isi pake account control panel aja

Kalo belum punya filezilla donlot gratis disini: hxxp://filezilla-project.org/download.php?type=client

Drag file yang udah kita compress tadi ke directory:
- Kalo domain utama ke: /public_html
- Kalo addon domain ke: /public_html/namadomain

KEDUA
Masuk ke control panel hosting baru dan buka MySQL Databases dan buat database baru. Setelah itu add user ke database baru itu

KETIGA
Kemudian buka phpmyadmin dan klik database yang baru kita buat tadi. Klik Import > browse > dan pilih database yang kita save dari hoting tadi (gile gzip). Lalu teken GO. Kalo eror, di extract dulu. Jadi bentuknya .mysql

KEEMPAT
OK..untuk database udah beres. Sekarang balik lagi ke home terus buka file manager. Klik file yang kita upload di langkah nomer 2. Klik nama filenya terus teken extract

KELIMA
Langkah terakhir adalah konfigurasi WP dan database. Buka wp-config.php dan cari teks:

define('DB_NAME', 'hostingente_namadb');

/** MySQL database username */
define('DB_USER', 'hostingente_namauser');

/** MySQL database password */
define('DB_PASSWORD', 'passworduser');

Ubah settingnya sesuai nama,user,dan password yang kita bikin di nomer 3 (mysqlwizard)

Selesei deh

Cara ini juga bisa untuk install wordpress lama. Seperti yang ktia tau kalo install dari fantastico pasti pake WP versi terbaru. Tapi terkadang themes atau plugins yang kita punya ga compatible sama WP versi terbaru.

Kalo bingung sama penjelasan diatas donlot file PDF-nya disini:
hxxp://www.mediafire.com/?da112e42o8qp244
Read more...
Tuesday

How to Strecth or Full Page Background Image

0 Comments


Tujuan Full Page Background Image :
-Menutupi semua halaman website dengan image tanpa potong-potong
-Tidak ada garis putus-putus atau spasi putih
-Tidak menyebabkan scrollbar
-Gambar berada ditengah

background: url(images/bg.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;

Note : *ganti kalimat warna hijau diatas dengan link/path direktori gambar anda.
masukan kebagian body atau html pada css. 
Read more...

TIPS Tutorial : CARA MEMBUAT TOOLTIPS SEPERTI FACEBOOK

0 Comments
Tooltips adalah informasi yang biasanya tampil dalam kotak yang muncul saat mouse melayang di atas tautan atau gambar. Tooltips biasanya digunakan untuk memerjelas perintah atau fungsi dari suatu link, tombol, atau pun isian yang ada pada sebuah aplikasi. Tooltips juga sering digunakan pada web maupun blog dengan fungsi yang sama. Secara default, dengan menambahkan kode title (title="judul") pada suatu link, tooltips akan muncul saat mouseover dengan tampilan yang sederhana.



1.Cari Code </body> dan letakan kode dibawah sebelum tag </body>.
Code :
<!-- Tipsy -->
<script type='text/javascript'>
//<![CDATA[
// tipsy, facebook style tooltips for jquery
// version 1.0.0a
// (c) 2008-2010 jason frame [jason@onehackoranother.com]
// releated under the MIT license

(function($) {

function fixTitle($ele) {
if ($ele.attr('title') || typeof($ele.attr('original-title')) != 'string') {
$ele.attr('original-title', $ele.attr('title') || '').removeAttr('title');
}
}

function Tipsy(element, options) {
this.$element = $(element);
this.options = options;
this.enabled = true;
fixTitle(this.$element);
}

Tipsy.prototype = {
show: function() {
var title = this.getTitle();
if (title && this.enabled) {
var $tip = this.tip();

$tip.find('.tipsy-inner')[this.options.html ? 'html' : 'text'](title);
$tip[0].className = 'tipsy'; // reset classname in case of dynamic gravity
$tip.remove().css({top: 0, left: 0, visibility: 'hidden', display: 'block'}).appendTo(document.body);

var pos = $.extend({}, this.$element.offset(), {
width: this.$element[0].offsetWidth,
height: this.$element[0].offsetHeight
});

var actualWidth = $tip[0].offsetWidth, actualHeight = $tip[0].offsetHeight;
var gravity = (typeof this.options.gravity == 'function')
? this.options.gravity.call(this.$element[0])
: this.options.gravity;

var tp;
switch (gravity.charAt(0)) {
case 'n':
tp = {top: pos.top + pos.height + this.options.offset, left: pos.left + pos.width / 2 - actualWidth / 2};
break;
case 's':
tp = {top: pos.top - actualHeight - this.options.offset, left: pos.left + pos.width / 2 - actualWidth / 2};
break;
case 'e':
tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth - this.options.offset};
break;
case 'w':
tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width + this.options.offset};
break;
}

if (gravity.length == 2) {
if (gravity.charAt(1) == 'w') {
tp.left = pos.left + pos.width / 2 - 15;
} else {
tp.left = pos.left + pos.width / 2 - actualWidth + 15;
}
}

$tip.css(tp).addClass('tipsy-' + gravity);

if (this.options.fade) {
$tip.stop().css({opacity: 0, display: 'block', visibility: 'visible'}).animate({opacity: this.options.opacity});
} else {
$tip.css({visibility: 'visible', opacity: this.options.opacity});
}
}
},

hide: function() {
if (this.options.fade) {
this.tip().stop().fadeOut(function() { $(this).remove(); });
} else {
this.tip().remove();
}
},

getTitle: function() {
var title, $e = this.$element, o = this.options;
fixTitle($e);
var title, o = this.options;
if (typeof o.title == 'string') {
title = $e.attr(o.title == 'title' ? 'original-title' : o.title);
} else if (typeof o.title == 'function') {
title = o.title.call($e[0]);
}
title = ('' + title).replace(/(^\s*|\s*$)/, "");
return title || o.fallback;
},

tip: function() {
if (!this.$tip) {
this.$tip = $('<div class="tipsy"></div>').html('<div class="tipsy-arrow"></div><div class="tipsy-inner"/></div>');
}
return this.$tip;
},

validate: function() {
if (!this.$element[0].parentNode) {
this.hide();
this.$element = null;
this.options = null;
}
},

enable: function() { this.enabled = true; },
disable: function() { this.enabled = false; },
toggleEnabled: function() { this.enabled = !this.enabled; }
};

$.fn.tipsy = function(options) {

if (options === true) {
return this.data('tipsy');
} else if (typeof options == 'string') {
return this.data('tipsy')[options]();
}

options = $.extend({}, $.fn.tipsy.defaults, options);

function get(ele) {
var tipsy = $.data(ele, 'tipsy');
if (!tipsy) {
tipsy = new Tipsy(ele, $.fn.tipsy.elementOptions(ele, options));
$.data(ele, 'tipsy', tipsy);
}
return tipsy;
}

function enter() {
var tipsy = get(this);
tipsy.hoverState = 'in';
if (options.delayIn == 0) {
tipsy.show();
} else {
setTimeout(function() { if (tipsy.hoverState == 'in') tipsy.show(); }, options.delayIn);
}
};

function leave() {
var tipsy = get(this);
tipsy.hoverState = 'out';
if (options.delayOut == 0) {
tipsy.hide();
} else {
setTimeout(function() { if (tipsy.hoverState == 'out') tipsy.hide(); }, options.delayOut);
}
};

if (!options.live) this.each(function() { get(this); });

if (options.trigger != 'manual') {
var binder = options.live ? 'live' : 'bind',
eventIn = options.trigger == 'hover' ? 'mouseenter' : 'focus',
eventOut = options.trigger == 'hover' ? 'mouseleave' : 'blur';
this[binder](eventIn, enter)[binder](eventOut, leave);
}

return this;

};

$.fn.tipsy.defaults = {
delayIn: 0,
delayOut: 0,
fade: true,
fallback: '',
gravity: 'n',
html: false,
live: false,
offset: 0,
opacity: 0.8,
title: 'title',
trigger: 'hover'
};

// Overwrite this method to provide options on a per-element basis.
// For example, you could store the gravity in a 'tipsy-gravity' attribute:
// return $.extend({}, options, {gravity: $(ele).attr('tipsy-gravity') || 'n' });
// (remember - do not modify 'options' in place!)
$.fn.tipsy.elementOptions = function(ele, options) {
return $.metadata ? $.extend({}, options, $(ele).metadata()) : options;
};

$.fn.tipsy.autoNS = function() {
return $(this).offset().top > ($(document).scrollTop() + $(window).height() / 2) ? 's' : 'n';
};

$.fn.tipsy.autoWE = function() {
return $(this).offset().left > ($(document).scrollLeft() + $(window).width() / 2) ? 'e' : 'w';
};

})(jQuery);

//]]>
</script>
<script type='text/javascript'>
//<![CDATA[
$(function() {
$('.north').tipsy({gravity: 'n'});
$('#north').tipsy({gravity: 'n'});
$('.south').tipsy({gravity: 's'});
$('#south').tipsy({gravity: 's'});
$('.east').tipsy({gravity: 'e'});
$('#east').tipsy({gravity: 'e'});
$('.west').tipsy({gravity: 'w'});
$('#west').tipsy({gravity: 'w'});
$('.tips-fade').tipsy({fade: true});
$('#tips-fade').tipsy({fade: true});
$('.north-west').tipsy({gravity: 'nw'});
$('#north-west').tipsy({gravity: 'nw'});
$('.north-east').tipsy({gravity: 'ne'});
$('#north-east').tipsy({gravity: 'ne'});
$('.south-west').tipsy({gravity: 'sw'});
$('#south-west').tipsy({gravity: 'sw'});
$('.south-east').tipsy({gravity: 'se'});
$('#south-east').tipsy({gravity: 'se'});

});
//]]>
</script>

<!-- end Tipsy -->

2. Cari kode ]]></b:skin>, dan letakkan kode dibawah ini sebelum kode ]]></b:skin>
Code :

 .tipsy {font-size: 11px;font-weight:bold;padding: 5px;position: absolute;z-index: 100000;}
.tipsy-inner {background-color: black;color: white;max-width: 200px;padding: 5px 8px 4px;text-align: center;}
.tipsy-inner {-moz-border-radius: 3px 3px 3px 3px;-webkit-border-radius:3px 3px 3px 3px;}
.tipsy-arrow {background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirkC-lZ69XL0UGCXvYjkUixxxU1jeijR7RSUU49wkNeVa4OfXo_NszkFsPm8LuxHSeqT7pmBakPC5M4zgqAUKSw470GQBGZ_YZOva4ko6p8f3Lt_wiER_aXcYQG3RGvFpfVQ0VjfmFLbUI/s800/tipsy.gif") no-repeat scroll left top transparent;height: 5px;position: absolute;width: 9px;}
.tipsy-n .tipsy-arrow {left: 50%;margin-left: -4px;top: 0;}
.tipsy-nw .tipsy-arrow {left: 10px;top: 0;}
.tipsy-ne .tipsy-arrow {right: 10px;top: 0;}
.tipsy-s .tipsy-arrow {background-position: left bottom;bottom: 0;left: 50%;margin-left: -4px;}
.tipsy-sw .tipsy-arrow {background-position: left bottom;bottom: 0;left: 10px;}
.tipsy-se .tipsy-arrow {background-position: left bottom;bottom: 0;right: 10px;}
.tipsy-e .tipsy-arrow {background-position: right top;height: 9px;margin-top: -4px;right: 0;top: 50%;width: 5px;}
.tipsy-w .tipsy-arrow {height: 9px;left: 0;margin-top: -4px;top: 50%;width: 5px;}
3.Contoh Penulisan Link Tooltips :

<a href="#" class="north-west" title="Contoh north-west gravity">Northwest</a>

<a href="#" class="north" title="Contoh north gravity">North</a>

<a href="#" class="north-east" title="Contoh north-east gravity">Northeast</a>

<a href="#" class="west" title="Contoh west gravity">West</a>

<a href="#" class="east" title="Contoh east gravity">East</a>

<a href="#" class="south-west" title="Contoh south-west gravity">Southwest</a>

<a href="#" class="south" original-title="Contoh south gravity">South</a>

<a href="#" class="south-east" title="Contoh south-east gravity">Southeast</a>
Read more...
Wednesday

Auto SEO Script for Blogspot

0 Comments
Blogger Atau Blogspot, sebuah layanan blogging gratis yang dimiliki oleh Google telah membuat banyak rumor bahwa itu tidak baik dioptimalkan untuk search engine. Ada banyak blogsites tutorial blogspot dalam perjalanan mengajar bersih untuk mendapatkan peringkat tinggi di search engine. Tapi mungkin frustrasi bagi banyak orang bahwa saya tidak dapat mendapatkan Script yang mampu mendongkrak blog di atas di search engine rangking. Saya telah mencoba lebih dari 20 Script (Auto Judul Swap, Auto Meta Description, Auto Meta Keywords, Meta Robot dll) selama lebih dari 4 bulan tetapi akhirnya menemukan kebanyakan dari mereka tidak berguna kecuali Auto Judul Kode Swap. Kode ini dapat membantu Anda sedikit untuk mendapatkan peringkat yang lebih baik terhadap SERP. Oleh karena itu saya telah memutuskan untuk mengembangkan script sendiri untuk keluar masalah ini. Setelah menghabiskan beberapa minggu akhirnya saya telah mengembangkan Auto sendiri SEO Script untuk pengguna blogspot. Yang dapat membantu Anda untuk mendapatkan peringkat yang lebih tinggi atas SERP. Script ini sangat sederhana dan juga sangat mudah untuk menginstal. Tidak ada pengetahuan yang profesional yang diperlukan.

The Auto SEO Script has following features:-
* Auto change Blog Page Titles for every post.
* Auto insert Meta Description for every post.
* Auto insert Meta Keywords For every Post.
* Work for Monthly, Weekly and Daily Archives.
* Work for each blog label.
* Auto Meta Robot Tag
* Author Meta Tag.
You only have to insert a Simple Code to your blog template.

Follow Steps below to apply this script:-
1. Go to Blogspot account.
2. Select to Layout Button of your desired blog.(at Dashboard)
3. Now go to Edit HTML Section.
4. In Template Box, find the code below. ( This may be little bit different if you are using Title Swap code).


 <title><data:blog.pageTitle/></title> 


Cara 1 : ganti script code diatas dengan code berikut ini
<b:if cond='data:blog.pageType == "item"'>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/><title><data:blog.pageTitle/></title>
</b:if>
<b:if cond='data:blog.pageType == "archive"'>
<title><data:blog.pageName/> | <data:blog.title/></title>
</b:if>
<b:if cond='data:blog.pageType == "label"'>
<title><data:blog.pageName/> | <data:blog.title/></title>
</b:if>
<meta expr:content='data:blog.pageTitle + " - your blog description here (upto 200 charaters)"' name='description'/>
<meta expr:content='data:blog.pageName + ", Keyword 1, Keyword 2, Keyword 3, Keyword 4, Keyword 5"' name='keywords'/>
<meta content='Author Name Here' name='author'/>
<meta content='index,follow' name='robots'/>


Cara 2. atau bisa juga dengan menyisipkan code berikut setelah kode 
 <title><data:blog.pageTitle/></title> 


 <b:if cond='data:blog.pageType == &quot;item&quot;'>
<title><data:blog.pageName/> | <data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title>
</b:if>
<meta name="description" content="DESCRIPTION HERE"/>
<meta name="keywords" content="KEYWORDS HERE"/>
<meta name="robots" content="index,follow"/>
<meta name="revisit-after" content="always"/>
<meta name="language" content="english-us"/>
<meta name="rating" content="safe for kids."/>
<meta name="doc-type" content="Public"/> 


keterangan penggunaan :
setelah membuat script itu di html template blogmu, silahkan ganti isi KEYWORD, DESCRIPTION, AUTHOR.
Description = deskripsi singkat blog kamu
Keyword = Keyword yang berhubungan dengan blog kamu
Author = Kamu lah...
Read more...
Monday

Tutorial How To : Make a Fried Rice

0 Comments

What You'll Need to Make Fried Rice
Ingredients to make fried rice
 
The classic Chinese comfort dish, it's believed that fried rice (Chao Fan) originated in the city of Yangzhou in eastern Jiangsu province. Made with barbecued pork, shrimp and spring onions, Yangzhou Fried Rice is still the standard by which all other fried rice dishes are judged. But you don't need to follow a special recipe to enjoy fried rice - it's a great way to use up leftovers. This basic fried rice recipe makes a nice alternative to steamed rice as a side dish, or you can turn it into a main meal by adding meat/seafood and vegetables. (If you are adding other ingredients, increase the number of eggs to three).
Basic Fried Rice Ingredients

  • 2 green onions, finely chopped
  • 2 large eggs
  • 1 teaspoon salt
  • Pepper to taste
  • 3 tablespoons oil for stir-frying, or as needed
  • 4 cups previously cooked rice, at least 1 day old
  • 1 – 2 tablespoons light soy sauce or oyster sauce as desired (see Add the Seasonings for more suggestions)

  • Prepare the Rice
    Breaking up clumps in cold cooked rice
    The most important tip in making fried rice is to use rice that has been previously cooked. Using previously cooked rice helps keep the dish from turning out wet or mushy. While you can use rice that has been cooked the night before, 2 or 3-day old rice is even better. Gently rub the rice between your finger to break up any clumps (this will help the rice cook more evenly).
    Beat the Eggs
    Lightly beaten eggs
    In a small bowl, lightly beat the eggs with a fork or chopsticks until they are frothy.

    Scramble the Eggs
    Scrambled Eggs for Fried Rice
    Heat a frying pan or wok on medium-high heat and add 2 tablespoons oil, swirling so that the bottom of the pan is coated. When the oil is hot, reduce the heat to medium and add the eggs.Cook the eggs, stirring, until they are lightly scrambled but not too dry. Remove the eggs and clean out the pan.
    Cook the Rice
    Cooking rice to make basic fried rice, a Chinese side dish
    Add 1 tablespoon oil, swirling so that the bottom of the pan is coated. Add the rice. Stir-fry for 2 - 3 minutes, until the rice is heated through.
    Add the Seasonings
    Chinese Fried Rice - adding seasonings
    Stir in the soy sauce or oyster sauce as desired. Note: Traditionally, the Chinese do not add soy sauce to rice. If you like, you can serve the dish plain, without the soy or oyster sauce. Another option is to add a small amount (1/2 - 1 teaspoon) of XO sauce or thick soy sauce, or to use 2 - 3 teaspoons of dark soy sauce - these will give the rice a darker color.

    Putting it all Together
    Cooking Chinese fried rice
    When the rice is heated through, add the scrambled egg back into the pan. Add the green onion. Stir-fry to heat everything through.

    Serve the Fried Rice
    Beef Stir-fry With Fried Rice
    Basic Fried Rice makes a nice alternative to plain steamed rice as a side dish. Here it is paired with a Basic Beef Stir-fry.
    Read more...
    Saturday

    How to Increase Virtual RAM

    0 Comments
    Increase Virtual RAM - To Make Your System Faster

    0
    Follow the steps given below :-


    1) Hold down the 'Windows' Key and Press the 'Pause/Break' button at the top right of your keyboard.
    Another way is Right-Clicking 'My Computer' and then Select 'Properties'.

    2) Click on the 'Advanced' tab.

    3) Under 'Performance', click 'Settings'.

    4) Then click the 'Advanced' tab on the button that pops up.

    5) Under 'Virtual Memory' at the bottom, click 'Change'.

    6) Click the 'Custom Size' button.

    7) For the initial size (depending on your HD space), type in anywhere from 1000-1500 (although I use 4000), and for the Maximum size type in anywhere from 2000-2500 (although I use 6000).

    8) Click 'Set', and then exit out of all of the windows.

    9) Finally, Restart your computer.

    10) You now have a faster computer and 1-2GB of Virtual RAM..!
    Read more...

    Labels

     
    Cyber Raptor © 2011 -2012 DheTemplate.com & Main Blogger. Supported by Makeityourring Diamond Engagement Rings