Webmaster Tips
Real Hosting
Jun 11th
Real hosting is something much more than what meets the eye. It is more than a place to merely store files and have a space on the Internet. It’s more than just unlimited this and unlimited that; it involves real space, real deals, real support, and real guarantees.
What you REALLY pay for
Ever heard of the Myth of Unlimited Hosting? Aside from being technically impossible, it is highly unlikely that a web hosting company will charge you $4.95 a month if you agree to stay for 60 months. This includes unlimited disk space, a free domain name, unlimited bandwidth, unlimited databases, unlimited FTP accounts, unlimited emails, and unlimited everything else.
If you happen to break the 60 month agreement you are slapped with a termination fee and other hidden fees. This can quickly become a major hassle, especially when you receive poor support and service when you just want out of a bad hosting situation.
Often, in these situations, the hosting companies will begin to nag at you when too much space is taken up on a shared server, you’re taking up too much CPU, or taking up too much RAM on the server. This renders the promise of unlimited features as invalid and not a real guarantee and not real, honest hosting.
These types of hosting companies will go into your account and begin changing things if you have too many files on the server, if the files are taking up too much space, or too many “unrelated files”. They will disable the website and then it becomes a hassle to get your website back online. While they’re breaking promises, you’re losing traffic, clients, and/or money. Whether it is a business website or a personal blog, it is embarrassing when you have to explain to clients and friends why your website is down in the first place.
While you’re banging your head against a wall wondering why your website was suspended, they will be helping other people and not replying to your support tickets, emails, or phone calls. Some hosts will treat you like a second-class citizen if your account is suspended.
What you get with real hosting from AtomicPages
AtomicPages Real Hosting is different; we do not make promises we cannot keep. We will never claim to have unlimited features and go back on our word later on. The amount of features you pay for is the amount of features you will actually receive and nothing less; no questions asked.
This is what defines real hosting from impostors. We are honest, backup our guarantees, and have real morals. You will never hear that we are suspending your account due to too much space, taking up too many resources on the server, or any other made-up excuse. We will not impose upon your website unless it is breaking the law. AtomicPages real hosting will never leave you in the dark about your website.
Helping people with websites and delivering good quality hosting while keeping a promise is not all smoke and mirrors. There is no mystery to keeping a promise.
XP versus Vista and 7
Jun 7th
The title is somewhat misleading. We’re not going to go over the ins and outs of XP, Vista, and 7, we’re not going to be comparing their kernels, hardware, structure of the OS, etc… This is simply on the drastic differences between the XP file system and the Vista/7 file system. Any user that switches from one OS to the other will notice that their files are stored differently.
XP
XP was somewhat revolutionary back in the day because it was a stable OS based on Windows NT, it was unlike any other Windows OS at the time, the themes were great, the graphics were state of the art, and the list goes on and on.
One advantage XP had over previous Windows Operating Systems was the file structure, how data was stored in the folders on the hard drive. This new file structure was an easy way to navigate through the hard drive to quickly find exactly the file you need. The file tree was easy to remember and it looked like the following:

This diagram does require some explanation, however. Admin, All Users, and Username (this is your account) do not all share “My Documents”. They are actually three difference types that they share. Think of this as it’s own user so no files are shared with the others.
Admin
|
All Users (Shared Documents and Programs)
|
Your Username
|
Each user has their own documents, favorites, etc… All Users will grab anything that is shared including programs, documents, startup programs such as anti-virus, and shared desktop items like shortcuts, etc.
Vista and Windows 7
Vista and Windows 7 have a different file structure than XP and is even easier to find files and folders in my opinion. One big advantage is the cut of “documents and settings” and it being replaced by “users“. Here is the general vista and 7 file structures:

From this chart, we can see that the path to files is significantly neater than XP. There are fewer directories to deal with, less typing involved in the command prompt environment, key directories like music and pictures are not embedded in my documents folder anymore, and many more advantages.
As mentioned for the XP file structure above, Your Account and Public will not contain the same files and same directory names. They are two different users; however, Vista and Windows 7 illustrate this concept much more clearly then XP does.
All you ever wanted to know about DOS
May 26th
DOS is an acronym that stands for Disk Operating System and was the base for Windows Operating systems until Windows 2000 when Windows NT took over. When you boil any windows os down you get dos eventually. DOS, cmd.exe, or command prompt — three terms that are not all mutually exclusive — is a very powerful tool when combating viruses, formatting your hard drive, or simply copying files and folder from one directory to another.
Please note: directories are different in XP and those examples will be clearly indicated with a line below the Vista and Windows 7 directories. So if you’re a faithful XP user, your command line is below the divider.
Note: All commands used in this tutorial series work on XP, Vista, and Windows 7.
In this tutorial, we will be going over basic DOS navigation commands. So let us begin already!
C:\> is how we often identify CMD from something like Windows Power Shell or a Unix Terminal.
This is an example of Windows Power Shell explaining foreach loops
Why would we use CMD?
There are a number of reasons why we would use CMD. Often, we use CMD to view network statuses, open Windows Utilities like System Configuration, or to delete stubborn files that we cannot delete normally.
Note: if you are using Vista or Windows 7, you will need to open cmd.exe as an administrator. This is called an elevated cmd where you start in the System32 directory and cmd.exe has full admin privileges.
Navigating Through DOS
Navigating through the command prompt is very easy and powered mostly by one simple command: cd.
cd or chdir stands for Change Directory. This allows us to change directories (or folders) in DOS. For example:
Let us assume we just opened the command prompt and we wish to navigate to the root directory of our C: drive. In order to do this we would do the following:
1 | cd C:\ |
This is telling DOS to change the directory to C:\ or the root directory of the Hard Drive.
Using a bit more complex directories, we can navigate to our music folder from the root directory (C:\>)
1 2 | C:\> cd C:\users\dennis\music - VISTA/7 C:\> cd C:\documents and settings\dennis\my documents\my music -XP |
Note: when using CMD, the commands and any text you write are NOT cap-sensitive. There is no difference between CHDIR and chdir, they both will work.
If we got lost in here, fret not. This brings us to our next command which is dir which stands for directory. A directory is any really just any old folder on your hard drive. This could be the Windows directory, the System32 directory, or the Music directory.
The dir commands shows us all of the directories and files within the directory we are in. Let us assume we’re back in the root directory of our C: drive and we want to see all files and folders within the C: directory we would simply type:
1 | C:\> dir |
| VISTA / 7 | XP |
|---|---|
![]() |
![]() |
We can see that there are many folder within the root directory of our C: drive. The Windows folder contains our operating system, the user folder contains out user accounts and personal files, and the Program Files contains all of our applications.
Switches
If you are familiar with programming then you are familiar with functions (methods for those java programmers). In DOS we have what are called switches. These switches or arguments, allow us to have a command do something specific or only do part of the command. For example,
1 2 3 4 5 | dir |more dir /4 taskkill /im iexplorer.exe /f erase C:\windows.old /f rd C:\windows.old /q /s |
The forward slash / designates the switch used for the DOS command.
The most important switch of all
By far the most important switch to know is /?. Confused a little? The /? switch allows us to get help with any command. Using this siwtch on a command will show us the syntax, all of the siwtches that can be used, and often it will show examples of the command in use. For example,
1 | dir /? |
Using this switch, we can figure out all other switches and easily determine what we need to do. If, for instance, we wanted to show the directories and files that end with .sys except, we want them in alphabetical order, we would do the following:
1 | dir *.sys /on |
This will find all files that end with .sys and place them in alphabetical order. The switch /on can be separated into two components first.
| /o | /n |
|---|---|
| Enables the sortorder switch. This allows you to sort the order of the directories you are searching through | The subswitch — so to speak — is like an extension of the sortorder switch. Since it’s a subswitch, we can negate the / before the n. |
Wildcard
You may have noticed the asterisk before the .sys. This is called a wildcard. If you’ve ever done programming of any kind of are proficient in CSS, then you may have encountered this wildcard before.
Basically, a wildcard is something that allows you to do something or apply something to multiple things without having to define them all directly. This can be important when navigating through DOS. If, for instance, we’re looking for a .exe file but we don’t know the name of it or even if you know part of the name, then we can use the wildcard to find it. COnsider the following:
1 | C:\users\{username}\documents\pictures> dir n*.jpg |
This will search through the entire picture folder for images that start with n and end in .jpg.
Question Mark Wildcard
The question mark is another form of wildcard with DOS. The difference is the number of character that can be used for each wildcard. The Asterisk (*) will allow up to an eight character substitution and the question mark (?) will allow for a single character substitution. For example,
1 | C:\Windows\System32\> dir x*.e?? /on |
This would search for any files and directories that begin with “x” and end with the file extension that starts with an “e”. These results would also return alphabetically via the switch “/on” as mentioned before.
Dark Code View for Dreamweaver
Nov 28th
If you stare at dreamweaver for hours upon hours each day, as I do, the default color scheme with the white background can get hard on the eyes. In the past I tried change the background color to black to give my eyes a break, but the code colors were then hard to see so I ended up switching back.
That was until last weekend when I came across this dark code view for Dreamweaver. I’ve now installed it on three of my computers and I am really liking it. I recommend checking it out.
Setting up your cPanel email in gmail
Nov 26th
cPanel accounts come with webmail clients like RoundCube, Horde, and Squirrel Mail. But you also have another free option, gmail. It takes a bit of setting up, but it’s well worth it for all the great features that gmail provides. Here are the steps to get it all set up:
- Create a Gmail Account. If you don’t already have a google/gmail account, create one here. Your gmail account name does not matter in this case. It will only be used by you, for logging in. The people to whom you send emails to will only see your cPanel address.
- Auto forward your emails to Gmail. Login to your cPanel email account at www.yoursite.com/webmail. Go to “Email Forwarding” and click “Add Forwarder”. You will need to forward your emails to your gmail address.
- Set up sending from your cPanel Address. Now login to your gmail account. Click “Settings” in the upper right hand corner. Then go the “Accounts and Settings” tab. Next to where it says “Send Mail as” click the “Send mail from another address” button.
- A new window will pop up. Enter your name and your cPanel email address. Go to the next step.
- Select “Send through Gmail (easier to set up).” Go to the next step.
- Click the “Send Verification” button.
- Go back to your gmail inbox. You will have a new email from gmail. Open the email and click the link.
- Head back to gmail and again click “Settings” in the upper right hand corner. Then go the “Accounts and Settings” tab. You should now see your cPanel email address listed. Next to your newly added email address click the “Make Default” button.
You’re done! Now you can test sending emails to your cPanel email address. If everything was setup correctly, they will immediately show up in your gmail account. When you click reply it will automatically reply from your cPanel address. ENJOY!







