Rabu, 21 November 2007

Install Wordpress Blog di Ubuntu



Install Wordpress in Ubuntu
By: Onno W. Purbo


# apt-get install libmysqlclient15-dev
# apt-get install libphp-adodb
# apt-get install libgd2-xpm libgd2-xpm-dev
# apt-get install php5-mysql
# apt-get install php5-gd
# apt-get install php5-curl
# apt-get install php-image-graph php-image-canvas php-pear



# cp wordpress-2.1.1.tar.gz /var/www/
# cd /var/www
# tar zxvf wordpress-2.1.1.tar.gz
# cd /var/www/wordpress
# cp wp-config-sample.php wp-config.php
# vi wp-config.php
define('DB_NAME', 'wordpress');
define('DB_USER', 'wordpress');
define('DB_PASSWORD', 'wordpress');
define('DB_HOST', 'localhost');


mysql
mysql> SET PASSWORD FOR root@localhost=PASSWORD('password');

Alternatively

# mysql -u root -p
Enter password:
mysql> create database wordpress;
mysql> grant INSERT,SELECT on root.* to wordpress@localhost;
mysql> SET PASSWORD FOR wordpress@localhost=PASSWORD('password_from_wordpress.conf');
mysql> grant CREATE, INSERT, SELECT, DELETE, UPDATE on wordpress.* to wordpress@localhost;
mysql> grant CREATE, INSERT, SELECT, DELETE, UPDATE on wordpress.* to wordpress;
mysql> exit



Web Access
http://localhost/wordpress
install.php
First Step
Weblog title
Your e-mail
Second
admin
633615
wp-login.php



Source: opensource.telkomspeedy.com

Hardisk Virtual Pada Windows




Untuk pengguna windows dan gmail bila ingin mencari tambahan kapasitas HDD secara gratis bisa menggunakan GMail Drive shell extension yaitu menjadikan google kita sebagai hardisk virtual atau virtual filesystem.

Seperti kita ketahui, cukup lumayan besar untuk membuatnya menjadi tambahan HDD di komputer kita.

Google Hack




Google Hacks: Tips & Tools for Smarter Searching (ISBN 0-596-00447-8) is a book of tips about Google, a popular Internet search engine, by Tara Calishain and Rael Dornfest. The book was published by O'Reilly in February 2003. It covers tips of all kinds, from usage hints for the novice just using Google, to advice for the expert programming the Google Web API. Much of the content provided in the book can also be used for Google Hacking, finding security issues through Google searches. Most programming examples are written in Perl.

The second edition was published in December, 2004 (ISBN 0-596-00857-0).
There was also a third edition published (ISBN 0-596-52706-3).

http://en.wikipedia.org/wiki/Google_Hacks

Theres also Google Hacks Project that you can download http://code.google.com/p/googlehacks/