Add GUI to Ubuntu Server
Posted on September 29th, 2011
We have already discussed how to install ubuntu 9.04 LAMP server .If you are a new user and not familiar with command prompt you can install GUI for your ubuntu LAMP server using the 2 options
1) Install desktop Environment
2) Install Webmin
1) Install desktop Environment
First you nee to make sure you have enabled Universe and multiverse repositories in /etc/apt/sources.list file once you have enable you need to use the following command to install GUI
sudo apt-get update
sudo apt-get install ubuntu-desktop
How To Share Media Between Xbox 360 and Linux
Posted on September 29th, 2011
I was surfing the internet looking for a solution to share media from a linux box to xbox 360 and this is what I found.
WordPress AntiVirus Protection
Posted on September 7th, 2011
AntiVirus for WordPress is a smart and effective solution to protect your blog against exploits and spam injections. Special feature of this plugin is Manual testing with immediate result of the infected files, and Daily automatic check with email notification.
This really works.. I installed this plugin on a theme running on justhost.com and it found a permalinks hack similar to the one on this link
http://mashable.com/2009/09/05/wordpress-attack/
CSS Rollovers 1 image
Posted on September 6th, 2011
The default image that is visible to the user is the black & white yaprak_bw.png and when you hover over the image, it’s replaced by yaprak_color.png with its full-color glory. However, if this is a user’s initial visit to the website and therefore the color image hasn’t already been cached, there may be a user-perceivable delay in switching to the color image. The net annoyance will depend on factors like the user’s connection speed, the load on the web server and most importantly, the attentiveness of the user. A couple of methods can be applied to pre-load alternate images to avoid the perceived latency but I will advocate for something else: don’t use separate alternate images in the first place. You can use a single image where the two rollover images are flush with each other, side by side or one on top of another. Here’s how:
PHP Limit String to Word or Sentences
Posted on September 6th, 2011
To limit a string to only first 3 sentences:
<?php preg_match('/^([^.!?]*[\.!?]+){0,3}/', strip_tags($text), $abstract); echo $abstract[0]; ?>
To limit a string to only first 30 words:
<? php preg_match('/^([^.!?\s]*[\.!?\s]+){0,30}/', strip_tags($text), $abstract); echo $abstract[0]; ?>
Add Maintenance Mode to WordPress
Posted on September 6th, 2011
This plugin adds a splash page to your blog that lets visitors know your blog is down for maintenance. Logged in administrators get full access to the blog including the front-end.
When the maintenance mode is activated, the following message is being displayed:
Of course you can fully modify this message in the plugin’s options.
