Sometimes we edit the windows firewall settings an start getting some problems in browsing websites because of some little silly errors. Incase we want to reset all the firewall settings, we can use any of below two methods working fine in windows xp service pack 2.
Method one:
Click on start >> run and type below code and click ok:
firewall.cpl
after that click on advance tab and reset the settings by clicking on restore defaults button.
Method two:
Open windows command prompt or terminal and type below command...
Thursday, September 8, 2011
How to Update Cpanel Licence Key (Remove The Trial Licence Error)
We can run the below command to update the cpanel licence key incase we are getting expired cpanel licence or trial mode warning.
/usr/local/cpanel/cpkeyclt
This will work if your server ip is licenced for cpanel/WHM. ...
How to Extract a Single Folder From a tarball (tar.gz) in 1 Command
Using this command you can extract a single file or folder from a tarball having an extension of tar.gz.
Sometimes we have a large tarball containing a number of files and folders. But we want to extract a single file or folder from that.
Now to do this in linux using commands ?
Open the command prompt or login to SSH and type the below commands after editing as per requirements.
gunzip -c /full path to tarball/filename.tar.gz | tar -xvf - path of file in the tarball/filename.zip
Now in the above codes first you will...
Sunday, September 4, 2011
In
easy tweaking of firefox,
firefox spell checker for input box
by Unknown
//
3:04 PM
//
Leave a Comment
Enable spell checker on input boxes in firefox
If you are a Firefox lover like me, you must have tried the inbuilt spell checker tool.
By default, the spell checker feature is enabled for textareas only.
To enable spell checker on input boxes, you'll have to do the following.
In the address bar, type about:config.
Type spell in the search box and hit enter.
Navigate to layout.spellcheckDefault. Initially, the value of this field would be set to 1.
Double click on it and...
How To Install FFmpeg Latest Version at CentOS5.5
This tutorial will guide you on how to install FFmpeg at CentOS5.5 with all the common errors that you may face. Before installing FFmpeg lets do some tests and make the system ready for FFmpeg installation.
Step 1) First of all open the directory /etc/yum.repos.d and create a new file dag.repo then paste the below code and save.
[dag]
name=Dag RPM Repository for Red Hat Enterprise Linux
baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag
gpgcheck=1
enabled=1
Step 2) Run the below command and the ffmpeg installation...
Installing FFmpeg-PHP Extension at Linux
In this tutorial we will learn about installation of FFmpeg PHP extension. As we know that FFmpeg is a very useful tool for audio video conversion etc.
To install FFmpeg PHP extension you must install the FFmpeg first.
Visit Below:
http://w3tool.blogspot.com/2011/09/how-to-install-ffmpeg-latest-version-at.html
After you install the FFmpeg you can now move forward to install the php extension:
Step 1) Download the latest version of FFmpeg-php.
Visit the Below site:
http://ffmpeg-php.sourceforge.net
You can download the...
Creating an FTP user using SSH command lines in linux.
Sometimes we want to host a website without a cpanel. This tutorial will explain the entire procedure of creating an FTP user using the linux command linees in SSH terminal.
1. Login as root through SSH.
2. Use below command to add an FTP user:
Code:
useradd myname
3. Now create a group for the user we created above or we can use an existing one too:
Code:
groupadd mygroup
4. Now to add the user to the group using below commands:
Code:
gpasswd -a myname mygroup
5. Change the group ownership of the special directory...
How to reboot a linux web server
We can reboot a linux web server using the below command.
reboot
You should be having root previllages to get that command working....