Category Archives: Web

Permalink issue after wordpress migration to GCP (Google Cloud Platform)
One normal issue of WordPress migration from shared hosting to Google Cloud Platform VM is the broken permalink of WordPress entries. Just a quick fix for those who are looking (yeah I got this from Google too!): Edit /etc/apache2/apache2.conf Change from: Options Indexes FollowSymLinks AllowOverride None Require all granted to: Options Indexes FollowSymLinks AllowOverride all […]

Google Cloud Platform (GPC) Percubaan Selama 12 Bulan
Google Cloud Platform sekarang menawarkan percubaan percuma untuk perkhidmatan cloud mereka. Dalam pendaftaran pertama kali, pelanggan dibekalkan kredit sebanyak $300 untuk penggunaan selama 12 bulan. Apakah maknanya bagi anda penggemar CMS WordPress sekalian? Wow! Ini adalah peluang terbaik untuk para blog owner berpindah ke Google Cloud Platform tanpa sebarang bayaran selama 12 bulan. Apa yang […]

WP Autoset Featured Image (Enhanced)
There is a very cool plugin called Autoset Featured Image by Arefly. I like it because it let me getting lazy. I just post an article and put in a picture tag, the plugin then sweetly update the featured image field. Awesome. However I did some mods to it for my personal use. What Autoset […]
WordPress dashboard menu broken?
For chrome users having broken worpdress dasboard menu (overlapped, not in order, etc), this might be due to latest install of chrome. Check this link to fix it. Or install chrome admin menu fix plugin.
Using .htaccess to redirect www to non-www or vice versa
To redirect from www to non-www, edit your .htaccess file suc as: RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L] and to redirect from non-www to wwww: RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
How do you know type of codec is your movie?
Gspot might be able to help. Download here.

MYNIC user interface is getting better, but still not so good
Mynic, the national registrar. It is the governing body of the Malaysian TLDs. The last time I logged on to Mynic was last year, to update the name servers of one of my domains. And then yesterday is a revisit time. The feel and experience from the user interface is still the same – it […]
Carian hotel setempat, Malaysia atau lokasi lain
Saya telah melancarkan satu lagi web app yang berkonsepkan carian hotel. Web carian hotel ini boleh di lawati di http://www.hotels.ecom.my/ dan telah mula beroperasi sejak beberapa hari lepas. Apakah keistimewaan Big World Hotels ini? 1. Memaparkan lebih 90,000 hotel seluruh dunia. 2. Memaparkan hotel-hotel ternama dan berkualiti. 3. Pelawat boleh membuat tempahan dan confimation berlaku […]
Installing phpmyadmin on Ubuntu and secure it
This is the link: https://www.digitalocean.com/community/articles/how-to-install-and-secure-phpmyadmin-on-ubuntu-12-04 This is how to create the htpasswd: sudo htpasswd -c /path/to/passwords/.htpasswd username and this is how to change it later on: sudo htpasswd /path/to/passwords/.htpasswd username Ref: http://wiki.ultraseedbox.com/index.php?title=How_to_change_passwords
The easiest way to have your Google+ photo in Google search results
1. Have this link inside the HEAD of web document. <head> <link rel=”author” href=”https://plus.google.com/your-profile-id/posts”/> </head> 2. Add the link of your website to Google+. Edit Profile > Edit Contributor To. 3. Test it using Rich Snippet Test Tools.
Strange facebook warning of URL being unreachable
I use social plugin for Facebook comments. Nothing unusual initially. However after migrating to new hosting provider, I started to see the tiny Facebook warning under the comment box. It say something about the URL being unreachable. I tried few things, to the extend that I change to another hosting provider for this sake (because […]