Missing Custom Fields on WordPress 3.2

I’m now using WordPress 3.2 in all my new installation. Of course, I already upgraded the rest of my websites. But I found something that’s really strange. The Custom Fields and a few other modules are missing the the post editor. I was thinking maybe it was removed in the latest version or that it may have been affected by an errant plugin. The problem is that I’m using TwentyEleven theme and no plugins and yet the Custom Fields module is missing. It turned out that there’s actually an option in the Screen Options menu to display/hide certain parts of the editor.
[Read more...]

Update User Password in MySQL

Apparently, quite a number of people are looking into my humble website trying to find out how to change a password of an existing user. Doing this is easy in Oracle with a ALTER USER command. In MySQL, it is different in such a way that you need to update a table. Here’s the command.
[Read more...]

How To Cancel Subscription on Paypal

The menu on PayPal dashboard is very confusing to say the least. You have to dig into the menu to be able to find what exactly you are looking for. Case in point is the subscription. You’ll have to click several links just to see what your current subscriptions are. So for the benefit of mankind, I’m listing the steps down.
[Read more...]

Recursive setacl command on Linux/Unix

Setting access control list(acl) recursively is not as straigthforward in HP/UX. I believe the same is true for other Unix flavors. In case you are wondering how, the command is shown below.
[Read more...]

SubVersion Initialization Error

After installing subversion, I hit some error when I tried to restart Apache. When I removed/renamed the subversion.conf and the error went away. Obviously, subversion did not work. So I investigated to find out the root cause.
[Read more...]

How To Install Subversion on CentOS

I finally decided to setup an online version control and chose subversion (instead of cvs which I use on my macbook). Initially, I was thinking of subscribing to github but the prospect of paying monthly did not bode well especially that it would only be me who will be updating the codes. Github has a free service though. But that’s if you open-source your code.
[Read more...]

Jing : Free Screencapture for Mac

The default screen capture of Mac, command+shift+4, is good. I can specify the part of the screen I want to capture and it’s automatically saved into a PNG file. It’s very simple and straightforward. But the longer I use it, the more I miss Greenshot. But that’s not (yet?) available for Mac.
[Read more...]

How To Burn ISO Image to DVD in Mac

Mac OS X already comes with the Disk Utility app which you can use to burn ISO images into a CD/DVD. You don’t have to buy or download a new app to just do that. The step-by-step procedure is shown below.
[Read more...]

Read Input Without Echo in Bash

I have a script that needs to be deployed in different environment as most scripts are. This script requires asking for userid, tnsname and password during deployment. I tried to use READ but it echoes the password on the screen as soon as I type it. So how can we hide the password? Here’s how.
[Read more...]

Update Oracle Sequence Last Number

I only realized this last week that direct update of the last number of the sequence. Or maybe I just don’t know so what I did was to create a workaround.
[Read more...]