Posts

Showing posts from August 2, 2009

Mengubah Setting Bandwith pada windows

> Menggubah setting bandwith pada > windows (Hanya kami uji pada Windows XP) > > Pada dasarnya OS windows sudah > membatasi bandwidth untuk koneksi internet sebanyak 20% dari total bandwidth > yang seharusnya bisa maksimal, jika netter ingin menambah bandwidth internet > supaya koneksinya terasa lebih cepat dan kencang bisa dengan cara mengurangi > atau mengosongkan batasan bandwidth tersebut supaya pada Windows kita bisa > maksimal dalam menggunakan bandwidth yang sudah ada. > > Ikuti petunjuknya seperti dibawah > ini : > > 1. Klik Start > > 2. Klik Run > > 3. Ketik gpedit.msc > > 4. Kemudian klik Ok > > 5. Setelah masuk klik (buka) Administrative Templates > > 6. Kemudian klik (buka) Network > > 7. Setelah terbuka klik QoS Packet scheduler > > 8. Kemudian klik Limit Reservable Bandwidth > > 9. Dan setelah terbuka ubah setting menjadi Enable > > 10. Kemudian ubah Bandwidth Limitnya menjadi

Wordpress - Lighttpd - Permalinks - Without rewrite

Ok, I setup lighttpd on my machine and found out lighttpd can’t handle some mod_rewrite directives (used with permalinks). Specifically, sending a request to index.php if a file couldn’t be found. Here is an easy work around. First, you need to make sure your current theme has a 404 page. Goto Presentation->Theme Editor and see if you have a template called “404 template”. If you don’t, just copy wp-content/themes/default/404.php to your theme directory: Code: cp wp-content/themes/default/404.php wp-content/themes/YOUR_THEME Then edit the 404 template file and add: Code: < ?php header("HTTP/1.1 404 Not Found"); ?> at the top of the script. This is so pages that are not found actually send 404 response headers. This is important for search engine bots like google. After that, edit lighttpd. You just need this line in your virtual host: Code: server.error-handler-404 = "/index.php" Thats it. Let me know if you have any issues with this.