Learning On Demand Learning anything from anywhere

Archive for May, 2008

Linux for Windows User

05.30.2008 · Posted in Blog

Is that hard to install linux? I don’t wanna loose my windows, can I try linux in save way? I wanna learn linux, have idea where I must start? Well, I’ll start with this option : 1. Live CD, using live CD what you need just make sure you choose to boot from CD-ROM or ...

auto and eth

05.28.2008 · Posted in Blog

Linux dns 2.6.15-26-server #1 SMP Thu Aug 3 04:09:15 UTC 2006 i686 GNU/Linux dnspct@dns:~$ # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth1 iface eth0 inet static address 172.88.1.6 netmask 255.255.yyy.0 network 172.88.1.0 broadcast 172.88.17.yyy iface eth1 inet static address 222.124.4.xxx netmask 255.255.255.xxx network 222.124.4.xxx broadcast ...

VirtualBox 1.6

05.22.2008 · Posted in Software

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 for ...

change wordpress password manually

05.21.2008 · Posted in Blog, PHP

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 content ...

$this and php

05.20.2008 · Posted in PHP

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"; } } ...

Install PHP6, easy install in windows

05.17.2008 · Posted in PHP

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 php6 downloadphp 6 download windowsinstall php 6how to install php 6download php 6 ...

MySQL and Null

05.16.2008 · Posted in Database

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 ...

Update to Windows XP Service Pack 3

05.15.2008 · Posted in Step By Step

Run a smooth and hassle free operating system is a dream of everyone who use windows as their daily friend including me. I wrote this post as result of my friend fear. She deny to update her windows installation because she afraid and want to see it in screenshot mode. 1. Download Windows XP SP3 ...

Setting path for PHP CLI

05.11.2008 · Posted in PHP

What is that for? my friend asked my a question after lunch. Well, install php using file from php.net don’t automatically set environment path for php location. As result we must type full location of php.exe each time we must execute php from command line. Microsoft Windows XP [Version 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. ...

Mysql Trigger Tutorial and Tools

05.09.2008 · Posted in Database

Deal with gammu and mysql make learn more about mysql feature in mysql 5.0 called trigger. Books always good to start with so I choose MySQL Stored Procedure Programming book to start with but others might help to for someone looking for practical solution in cookbook form etc : High Performance MySQL: Optimization, Backups, Replication, ...

Copy Paste in Remote Desktop session

05.08.2008 · Posted in Software

It’s not work! I said that to my staff when I copy his file and try to paste it on my computer using remote desktop. After look around in the option finally I can see my mistake Here the steps to enable copy and paste operation in my windows xp  : 1. Open Remote Desktop ...