Internet Security Basics 101

Written by Niall Roche


Continued from page 1

Antivirus software can only protect your computer from viruses trying to infect it via email, CD-Rom, floppy disk, Word documents or other types of computer files. Antivirus software alone will not keep your computer 100% safe. You also need to use firewall software.

Firewall Software The use of firewall software by home computer users is a relatively new occurence. All Internet connections are a two way process. Data must be sent and received by your computer. This data is sent through something called ports. These are not physical things rather aspects ofrepparttar way your computer communicates online.

Firewall software watches these ports to make sure that only safe communication is happening between your computer and other computers online. If it sees something dangerous happening it blocks that port on your computer to make sure your computer stays safe fromrepparttar 118686 person who is trying to hack into your system.

An easier way to understand a firewall would be to picture your computer as an apartment complex. Atrepparttar 118687 front door of this complex there is a security guard. Every person who entersrepparttar 118688 complex must pass this security guard. Ifrepparttar 118689 security guard recognizesrepparttar 118690 person entering as a resident he allows them to pass without saying anything. If, however,repparttar 118691 person enteringrepparttar 118692 complex is unknown to him then he will stop that person and ask for identification. If they have no business being atrepparttar 118693 apartment complex he escorts them fromrepparttar 118694 building.

If you are not currently using firewall software your computer will get hacked into - that's a guarantee.

PopUp Blocker You can get a good popup blocker at no cost. An easy way to do this is to install eitherrepparttar 118695 Google or Yahoo toolbar. Both of these come with popup blockers built in. Popups are not necessarily dangerous but are a nuisance and using either of these toolbars will make your life that bit easier.

A simple rule for practicing online security is: "If in doubt then don't". If you don't recognizerepparttar 118696 file,repparttar 118697 email address,repparttar 118698 website or if your gut feeling says "no" then don't click that button.

This article was provided courtesy of the Spyware & Malware Guide website. The site itself had lots of useful information on spyware removal and other spyware fighting info.


Save $100 in 5 Minutes Backing Up Your Web Site?

Written by Robert Plank


Continued from page 1

"dump.tar" isrepparttar name ofrepparttar 118685 file we want to save into, and repparttar 118686 "*" means we want to put everything into this TAR archive -- files, folders, everything.

You may get some sort of warning about not adding dump.tar torepparttar 118687 archive, that's no big deal because we don't want this file to add itself.

Your files are backed up. At this point it's time to move things over torepparttar 118688 next host. There's a way we can do this without you having to downloadrepparttar 118689 whole thing, and re-upload it.

STEP 4: ARRANGE YOUR FILE FOR PICKUP

Remember how I said when you were in "wwwroot" or "public_html" not to browse intorepparttar 118690 folder containing a domain name? Well now it's time to move that dump over into one of them so it can be picked up.

If one of your folders is, say, yourdomain.com, type:

mv dump.tar yourdomain.com

This moves "dump.tar" intorepparttar 118691 folder "yourdomain.com".

STEP 5: MOVE THE NEW FILE OVER

Login to your new host. Browse to its "wwwroot" or "public_html" folder.

Most hosts include a program called "wget" which works sort of like a browser in that you give it a URL to pick-up that it loads. Only this browser also savesrepparttar 118692 file you want to load.

If your old host was at yourdomain.com, you'd just type:

wget http://www.yourdomain.com/dump.tar

This will load that URL and save it as "dump.tar". You'll probably see some sort of progress indicator as it goes.

STEP 6: DECOMPRESSING THE FILE

Once you haverepparttar 118693 file, you use that same TAR program to decompress it. Type:

tar -xvf test.tar

The "v" and "f" are still there, but instead of "c" (create) we use "x" (extract). This will unpack each file and let us know which one it's working on.

STEP 7: RESTORING THE MYSQL DATABASE

Before you can putrepparttar 118694 mySQL dump back intorepparttar 118695 database, you have to go into this new web host's control panel and create blank databases withrepparttar 118696 same names as you had before.

You also have to create a mySQL user and make sure that user has access to all those databases you've created.

Once that's done findrepparttar 118697 dump.sql that was unpacked with all ofrepparttar 118698 other files.

Instead of usingrepparttar 118699 program "mysqldump" to dumprepparttar 118700 files, we userepparttar 118701 program "mysql" which let's us put commands into repparttar 118702 database. That's basically what a dump is, a file full of commands that, when run, will recreaterepparttar 118703 old database exactly.

This time we don't type inrepparttar 118704 database name right away. To get into mySQL fromrepparttar 118705 command prompt, type:

mysql -umyuser -pmypassword

Where "myuser" and "mypassword" are your mySQL username and password. Once you're in you'll get kind of a weird looking prompt. All you have to do at this point is type:

source dump.sql

This says, open uprepparttar 118706 file dump.sql, read through it and do whatever it says to do in that file. You will see a bunch of lines telling you a command has been entered (0 Rows Affected, 1 Rows Affected, something like that).

If everything goes smoothly, type "quit" and you will be back inrepparttar 118707 shell.

You've just moved one site (or a bunch of sites) over from one host to another in about 5 minutes.

Article by Robert Plank

Want to pick up more useful PHP and programming skills, even if you aren't "the programming type"? Subscribe here -- http://jumpx.com/newsletter


    <Back to Page 1
 
ImproveHomeLife.com © 2005
Terms of Use