Archive for August, 2012

How to stop programs from automatically starting up in Windows

If you have tons of programs installed on your computer and most of them start up automatically in the background when Windows starts, then sooner or later your PC performance will suffer. Because the more programs that are loaded in Windows, the worse your computer performs.

This is also beneficial because it speeds up your computer and gives you more resources to work with.
 
Step 1
 
Click Start –>  and type ‘msconfig’ or press windows key + r in the search box as shown below and select the program from the list above.
 
Step 2
 
Select the StartUp Tab and uncheck the box next to the program you want to disable Once done, click OK.
 

windows run

Read more »

How to remove “headers already sent” error in PHP

 

This error occurs mainly when you are working PHP in Linux Servers.

Method 1

The "headers already sent" error is usually caused by having white space before or after the opening and closing PHP tags (<?php . . . ?>).


Method 2

In top of page put

ob_start();

In bottom of page put

ob_flush();


Read more »

Enable Nautilus Location Entry in Ubuntu

By default, this feature is disabled when you installed Ubuntu. The location entry in nautilus lets you use the location box to go to a folder by typing it instead of using to mouse to open one folder at a time until you reach your destination.

This can come in handy if you need to quickly go to a particular location in nautilus without individually opening each folder. 
 
To get started, press Ctrl + Alt + T on your keyboard to open Terminal. When it opens, run the commands below to turn it on.
 
gsettings set org.gnome.nautilus.preferences always-use-location-entry true
 

Read more »