Monday, October 29, 2007

Sri Lanka win Hong Kong Sixes

Sri Lanka Cricket team beat ALL STAR team at the "Hong Kong Sixes" cricket tournament and became champions

Congratulations Sri Lanka Six-Side Cricket Team

http://content-www.cricinfo.com/other/content/current/story/317470.html

Sunday, October 7, 2007

How to create public_html in Debian

First of all check whether enable-modules under your apache server
for that
goto /etc/apache2/mods-enabled/ folder and check userdir.conf, userdir.load modules are enabled by simply typing ls command

if not then goto /etc/apache2/mods-enabled and create symbolic link as follow

sudo ln -s ../mods-available/userdir.load
sudo ln -s ../mods-available/userdir.conf

Finally create public_html folder under your home directory an give full access permission to it
then Please restart your apache server (sudo /etc/init.d/apache2 restart)

then access it through following link

http://localhost/~[your_home_directory_name]/ (for me it's http://localhost/~prabath/)

For Ubuntu also if public_html doesn't work do above instruction to enable it.