Events
26 July 2007 View Comments
I’m in Kota Kinabalu for holiday. Sorry for no updates about PHP Meetup 3.0. ashrufzz has made an interesting review on it. What I’ve Learned From PHP Meetup 3.0 (Part I) What I’ve Learned From PHP Meetup 3.0 (Part II) Thanks goes to ashrufzz. We’re looking forward to conduct grand event for the next meetup. [...]
CakePHP,Open Source
22 July 2007 View Comments
Yesterday, The Mambo Foundation announced that they will use CakePHP for the next version of Mambo and at the same day I presented about CakePHP at PHP Meetup 3.0. You can download my slide here and the announcement is here.
Events
15 July 2007 View Comments
PHP Meetup 3.0 will be held on 21 July 2007 at Faculty Information Technology & Quantitative Science (FTMSK), Universiti Teknologi MARA (UiTM), Shah Alam, Selangor. From 9.00 am to 5.00 pm. If you’re interested to come, please put your name & email, here. Speakers list will be updated soon. See you there!
Debian
13 July 2007 View Comments
If you would like to read & write to your ntfs partition (windows’s partition), installing ntfs-3g on your machine is a better solution. This is the method I used to install ntfs-3g on my debian etch : 1. Remove old libfuse (if any) : sudo apt-get remove libfuse2 fuse-utils 2. Get required package: wget http://snapshot.debian.net/archive/2007/04/10/debian/pool/main/n/ntfs-3g/ntfs-3g_1.328-2_i386.deb [...]
CakePHP
11 July 2007 View Comments
In Cakephp 1.1, if you want to display an image with a link, you’ll need to do something like this: echo $html->link( $html->image(‘myimage.jpg’), ‘/controller/action’, array(), null, false ) You need to tell CakePHP not to escape the content with last false statement. In CakePHP 1.2 you could do : echo $html->link( $html->image(‘myimage.jpg’), ‘/controller/action’, array(‘escape’ => [...]
Open Source
9 July 2007 View Comments
I had a problem connecting mysql from DBDesigner4. Error occurs : Connection to database failed. dbExpress Error: Invalid Username/Password Username/Password spelled correctly. The problem is because DBDesigner4 was designed for MySQL 3.x.x. For MySQL 4 and higher we have to do the old password trick. This is the solution which is works fine for me. [...]
Debian,Ubuntu
8 July 2007 View Comments
I have been using Eclipse for quite some time now. I prefer Eclipse as development IDE because its ease of use. The overall design of Eclipse keeps the tools you need immediately at your fingertips. Using APT to install Eclipse on your Debian / Ubuntu machine will give you the old version of Eclipse. I [...]
PHP Programming
7 July 2007 View Comments
As a PHP Developer, I think it’s time to move forward to PHP5. Today, I checked GoPHP5.org initiative: PHP developers cannot leverage PHP 5′s full potential without dropping support for PHP 4, but PHP 4 is still installed on a majority of shared web hosts and users would then be forced to switch to a [...]