Full Server Path

September 30th, 2007

When working with cgi scripts and some other applications you often need to know the FULL SERVER PATH.  I do a lot of work for other people on many different servers, they just give me a confused look when I ask them if they know what their full server path is.

If the server is php enabled which most web servers are you can create and run a file on the server that will show you the path. 
<? print $PATH_TRANSLATED; ?> 
copy and paste the bolded text into a text editor and save it as findpath.php.  Upload it to your main directory, then run it in the browser.  http://www.myWebSite.com/findpath.php  It should show you the full server path. If not you may need to contact your web hosting  company.

On-Page SEO

September 29th, 2007

Before you even begin to create your first web site you should expect to spend several hours doing research. You need to go to google.com and type in keywords that you think people would use to find your site, see what comes up. Visit your competitors web sites and see what you like and dislike about them. Why is someone going to choose your product or service over the competition?

Use the Google keyword tool to see which keyword phrases are used most often.  These phrases are very important to use in your meta tags. Think what terms you want your page to rank for.  It is easier to rank for phrases than single terms.  Think about it like this.  You want a new pair of Nike running shoes and you type shoes in the search engine. You may find horse shoes, snow shoes or shoe stores that don’t even sell running shoes. If you type running shoes in the search engine you will get much closer to finding a shoe store that sells what you want, but maybe they don’t carrry Nike.  You type Nike running shoes into a search engine and you will be very close to finding exactly what you want.  Needless to say, it is much easier to rank for specific terms than generic terms. Specific terms also bring you more qualified traffic.

The Meta Title Tag is extremely  important to the search engines. Many people just put their company name here, but that is a huge mistake.  You want people that don’t know your company name to find your web site. List your product or service first, using common search phrases, then follow it with your company name. Is your location important? If it is make sure you include it as well.

If I am looking for a company to repair my plumbing, you can be sure their location is very important. Houston plumber, houston plumbing company, plumbing houston, houston plumbing contractor are all things I might type in to find a plumber.  I am shocked at how many companies that only provide local services, fail to put their location on their web site. 

Your title tag is often the text that shows up as a link in the search engines. A good title tag would be something like. Houston Plumbing Company - 24 Hour Service & Repair - ABZ Plumbing  The first part is a common search phrase, the second part tells people what you do and last is your company name.  You can use up to 70 characters here.

The title tag is so important that there is a SEO plugin  for WordPress that allows you to change the title tags on your blog.

The text in your Meta description tag often shows up under your link in the search engines. It is important to use  search phrases here and also important to use a different description for each page on your site.  You may use up to 255 characters here.   Example: “ABZ Plumbing company provides 24 hour emergency service for the Houston, Tx area. Call 281-000-0000 for fast service on overflowing toilets, clogged drains and water leaks. Print coupon from our web site for 10% discount on plumbing repair. “  This example contains important keyword search terms as well as info that is important to a customer. They know before they click that you work in their area. The discount offer may intice them to click your listing rather than someone elses.

 The keyword meta tag used to be of great importance but isn’t used much these days. This is an area that spammers used to abuse so many engines no longer pay it attention.  It doesn’t hurt to use it though and it may  be helpful to put misspellings that people often use in a search here.

The above on-page optimization tips used to be all that was required to rank high in the search engines. The engines did not like that we could control the rankings so easily so they started factoring in lots of off-page factors that are not so easily manipulated.

Setting Up Your WordPress Blog the Hard Way

September 29th, 2007

If your web hosting company doesn’t provide an easy click to install WordPress button like you may have to download and install the program yourself.

Go to http://www.wordpress.org/download to get the .zip file.

Download and unzip the file on your computer. Open the readme file to view the instructions.

You will need to edit the wp-config-sample.php file so that it has your database connection information.  This is where it can get very tricky for newbies.

Your web hosting provider may have already set up a database for you, or you may have to set one up yourself.  You may get lucky and find there is a database set up that uses the same login info you were sent when you signed up.  

define(’DB_NAME’, ‘yourDatabaseName‘);  Try using your ftp login name here

define(’DB_USER’, ‘YourUserName‘);  Use your ftp Login name here also.

define(’DB_PASSWORD’, ‘YourPassword‘); Use your ftp Password here.

 

After you have changed the connection info, save the file as wp-config.php and upload the entire WordPress directory to your web site.

 

Enter: http://www.YourWebAdress.com/WordPress/wp-admin/install.php into your browser. If you are lucky you will see a welcome screen that will guide you through setting up your blog.  After you enter your Blog Title and email address if the setup is successful a user name and password will be generated. WRITE IT DOWN!

 

Go to http://www.YourSite.com/wordpress/wp-login.php

After you login I suggest you Change your password to something you can remember.

If you can’t figure out the connection information for your database, you will need to contact your web hosting company.

Setting Up Your First WordPress Blog the Easy Way

September 29th, 2007

The first thing you need if you want to set up your own blog is a domain name and a web hosting company.  is a company I have used for years. It will cost you about $100.00 a year for your web hosting and domain name.

Go to  and click the buy now button. Enter the domain name you want and they will tell you if it is available. Once you find an available name continue your sign up online.
When they have your web space set up they will send you an email with your login information and a temporary web address that you can use. It may take several days for your domain to start working, but you can use your temporary address to go to your web site.

http://www.yourdomainname.com/vdeck will take you to a login page. Enter your user name and password to access your admin panel. A sample admin panel image is shown below.
Vdeck Admin Panel

This panel will make it very easy to set up your web site and even includes an easy to use web builder so you don’t need to know html.

Once you have logged into your panel at vdeck click the link that says Applications. Click on the Bulletin Boards links, then click on WordPress. Click on the install link, enter the required information and click install. Your blog will be set up!

Go to http://www.yourdomainname.com/WordPress/wp-login.php  Login and you are ready to go!

Post your comments here to let others know how easy or difficult you thought this was.