Shame on me, not visiting VirtualBox for long time make my mind make tiny error in making conclusion. This project is dead. I’m totally wrong of course 🙂 VirtualBox 1.6 already released. Click here to download Some interesting feature in VirtualBox after acquisition by Sun : Solaris and Mac OS X host support Seamless windowing […]

Reset wordpress password using provided link not work, sadly no phpmyadmin available 🙂 Fortunately I have shell access which is enough, using built in md5 function to generate and update the password, here’s the steps: 1. Creating md5 – Using shell Just type : md5 -s your chosen password – Make php script with this […]

Little mistake on naming variable make me confuse for almost an hour. $this yes, $this is built-in variable that often use in OOP. By using $this, we refer to self referencing variable. More in php.net manual <?php class A { function foo() { if (isset($this)) { echo ‘$this is defined (‘; echo get_class($this); echo “)\n”; } else { echo “\$this is not defined.\n”; } } […]

PHP6, I thought I already have latest one. 5.2.6 but I’m wrong 🙂 Quick way to try PHP6 is by installing Appserv 2.6.0, click here to download php 6.0.0-dev Installation process is the same as other appserv series : 1. Double click installer

Just for my own record, dealing with Null type field. Checking with : select * from tablename where field1=”  -> this one not work select * from tablename where field1=’Null’ -> same too is null is the answer select * from tablename where field1 is null Save my day, thanks to St4r 🙂