Sunday, August 30, 2009
Nokia N97 Review
There were lots of bugs present in 5800's platform and the OS seemed rather rudimentary, but Nokia managed to solve most of them by a wide sequence of firmware updates. Still, the graphical interface, as well as the basic control of the menus remained the same. This shouldn't be that bad, but when you intend to compete with one of the most successful smartphones on the market, the iPhone, you must provide something that has at least equal value. Either Nokia managed to do that with the N97 or not, we will see in the following review, so read and judge for yourselves.
Nokia N97 was announced in November 2008, but managed to hit the shelves only in June 2009, after almost seven months of struggle. The smartphone is available in two classic colors: Black and White. Currently, it can be bought for around 600USD, depending on the location and plan.
Happy Weekend
Wednesday, August 26, 2009
Remember When
and time stood still and love was all we knew
You were the first, so was I
We made love and then you cried
Remember when
Remember when we vowed the vows
and walked the walk
Gave our hearts, made the start, it was hard
We lived and learned, life threw curves
There was joy, there was hurt
Remember when
Remember when old ones died and new were born
And life was changed, disassembled, rearranged
We came together, fell apart
And broke each other's hearts
Remember when
Remember when the sound of little feet
was the music
We danced to week to week
Brought back the love, we found trust
Vowed we'd never give it up
Remember when
Remember when thirty seemed so old
Now lookn' back it's just a steppin' stone
To where we are,
Where we've been
Said we'd do it all again
Remember when
Remember when we said when we turned gray
When the children grow up and move away
We won't be sad, we'll be glad
For all the life we've had
And we'll remember when
Tuesday, August 25, 2009
Nearly get salary hery
My Nokia N95 8GB Great for me
Pizza World
It's rain
Sunday, August 16, 2009
ឆ្លងមេរោគទាំងកុំព្យូទ័រ និង ទូរស័ព្ទ
Wednesday, August 12, 2009
ប្តូរផ្ទះសំបែង
Monday, August 10, 2009
How to configure wordpress with easy PHP
What do you do when you want to test WordPress Themes and Plugins before activating them on your blog? Do you test them online and waste bandwidth? Well, there is a better way. With EasyPHP you can test WordPress Themes and Plugins offline. EasyPHP is a program that allows to easily install Apache, MySQL and PHP.
Here I will show you how to setup WordPress in EasyPHP. Before continuing download the latest version of WordPress and EasyPHP.
After installing EasyPHP you will find it has a www folder. If you installed the program in the default directory, the path will be C:\Program Files\EasyPHP1-8\www. Unzip WordPress into the www folder, in a folder called ‘WordPress’.
Now open wp-config-sample.php and find the following code
define('DB_NAME', 'wordpress');
define('DB_USER', 'username');
define('DB_PASSWORD', 'password');
define('DB_HOST', 'localhost');
This is where you define the MySQL settings for WordPress. Enter the Database name,username and password. You do not need to change the host name. These are the settings I am going to use
define('DB_NAME', 'wpblog');
define('DB_USER', 'sopheak');
define('DB_PASSWORD', 'password');
define('DB_HOST', 'localhost');
Save the file and rename it to wp-config.php
Double Click the EasyPHP icon on the system tray. Click the ‘e’ icon and select Administration

Now click Manage Database. The page you see now is the phpMyAdmin. From here you can create the Database for Wordpress. Under Create New Database enter the database name you entered in the wp-config.php file and click Create.
Click the back button of your browser and go to Privileges. To create a new user click Add a new user.

Enter the login information that you had earlier entered on wp-config.php. Click Check All and then Go.

Now enter http://127.0.0.1/wordpress/wp-admin/install.php in your browser. If you have configured the database properly, you will be presented with this page

Click First Step. Enter your Weblog title and email address and click Continue to Second Step. You will now be given a username and a random password. Note that password carefully!
If you lose it, you will have to delete the tables from the database yourself, and re-install WordPress.
That’s it! You just setup Wordpress on EasyPHP.
You can login by going to http://127.0.0.1/wordpress/wp-login.php. You can change your password by going to Users in the WordPress Admin Panel.