Be Your Own Boss Logo
_

_
| Archives | CD ROMs | HOME | Search | Newsletter

Ads by Smithfam.com
WebMaster's & Marketing CDs Information, software, graphics, and design tools are critical to success. 180+ Niche Ebook Package
Over 180+ Niche Targeted eBooks with Websites and Master Resale Rights.

You Need SSI Right Now!
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion By Bob McElwain   ©2004 All Rights Reserved

templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionI learned of SSI (Server Side Includes) long before I built my current site. Since it seemed the only way to go, I checked it out once again for the new site to be.

templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionWhat SSI amounts to is creating a new page for any elements common to all pages on your site. Then ask the server to include these pages whenever main pages are requested.
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionFor example, build a regular HTML page containing all the content, including graphics, as is often used in the left column of a page as the basis of navigation. Then, instead of adding this content to each page, simply include the file. And hey, it's super. If you need to make a change, you make it only once, instead of on every page on your site.
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion

SSI Slows Page Downloads?
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionWhat prevented me initially from using SSI were notes I read regards increasing page download time. Each page using included files needs to parsed (read) by the server to find any files to be included. Being an absolute fanatic about minimizing page download speed, I passed. Bad mistake.
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion

Updating Multiple Pages Chews Up Time
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionSix month later, changing a single menu item was taking hours. I decided to ignore the page download time and go. But I ran into another snag. Pages with includes need the SHTML extension, else the server won't parse them. (An S in front of HTML.)
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion

Switching From HTML to SHTML Busts Links
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionNuts. I already had lots of incoming links. Since I didn't want to bust them by changing file names, I passed once again.
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionI had heard people speak of ways in which a server in some cases could be instructed to treat HTML pages as SHTML pages. But I didn't check it out. Another bad mistake.
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion

The Perfect Solution
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionMany months later I ran across the following code. Add these lines to the top of your .htaccess file, and all existing HTML files will be parsed just as if they had the .SHTML extension. Neat. No changes in file names, which means no busted incoming links.
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion

Options Includes
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionAddType text/html .html
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionAddHandler server-parsed .html
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion.htaccess is a hidden file in the root directory on your server. It is helpful in doing many things, and can be located elsewhere as needed, but for now let's focus on the above.
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionIn WS_FTP, when you type -al into the blank field to the right, this file name will become visible. The best plan is to download the file, add the above code, then upload and overwrite the original. (The reason for downloading first is to be certain you hold whatever the file may already contain.)
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion

Creating Files
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionWhat I did next was create a file, yleftnav.html, containing all the content in the left column of a page. Then on each page, I replaced the content in that column with the following.
<!--#include file="yleftnav.html"-->
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionGiven the three lines above in the .htaccess file, each .HTML file is parsed for the include command. When found, the content of the file is included in the page at that point. You can see the results by viewing the source for one of my pages. And you can view the file included with ...
<http://sitetipsandtricks.com/yleftnav.html>
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionThe display of this page will be distorted, but it works fine when constrained by the first cell/column on each site page.
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionI'm also using ybotnav.html for the text links and contact info at the bottom of each page. Anything repeated on most or all pages can be handled in this way.
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion

Finally Getting To It
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionI continued to avoid the chore for many months. And when I did get to it, hours disappeared quickly, for by then I had more pages.
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionBut hey, I do love it. And there's good news besides. Those notes regards slowing page downloads (they're still around), appear to have applied in an earlier time when servers were slower. I haven't detected any increase in the download time for the pages on my site.
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionGet to this right now, before your site grows even larger. Whatever time it takes will be saved many times over on future changes required.
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion

Test First
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionBefore getting carried away, be sure to test to see that whatever code you choose works properly on your host server. If it does not, and your host can't help you, then you may be stuck with renaming page name extensions to .SHTML. Which also means changing links internal to your site. And losing any links to your site. (Even this option isn't available on all hosts.)
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion

An Alternative
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionHere is another include command I am not using on my site. It assumes all files to be included are in /includes/, a subdirectory within the directory containing your pages.
<!--#include virtual="includes/includefile.html"-->
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionSince my site layout is simple, and includes only three subdirectories for pages, I simply uploaded the files to be included to these three directories, and to the root directory. For me, this is a great solution for it takes only minutes to upload four copies. You might do better, however, with the above.
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion

Further Resources
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionWhat triggered me into action was Jennifer Johnson's article, "How To Avoid Website Growing Pains." She's been trying to talk me into using SSI for years. I should have listened to her and got to it sooner. (And so should you!) Here's a link to her article.
<http://sitetipsandtricks.com/art/a091101b.html>
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionHere's a page from Webopedia given a search on SSI. Lots of great info referenced here. Follow the link to Yahoo for a couple more. As a reminder, that bit about slowing download speed is included in one of the referenced articles. I'd ignore this, for I found no degradation at all.
<http://www.webopedia.com/TERM/S/SSI.html>

Wrapping Up
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotion
templete design, web design, web editing, web site advertising,  professional web site design,  website optimization, website promotionI should have done this years ago. Do it now. Or you'll be saying the same thing in a year or so. Honest, you will!.


BOB MCELWAIN , author of "Your Path To Success." How to build ANY business you want, just the way you want it, with only pocket money. http://sitetipsandtricks.com/opts/mcb.html

Get ANSWERS. Subscribe to "STAT News" now! join-stat@lyris.dundee.net


The #1 Rated Submission Software
More Info


_Traffic Seeker Submits To 800,000 Places Instantly. No other program comes close at any price. Traffic Seeker is the Highest Rated Submission Program. Find out more via autoresponder.
_Download The Free Demo


| Archives | CD ROMs | HOME | Search | Newsletter |
_

_
_

_
Bob's Marketing Phone Support
Home Business CD ROMs
Internet Marketing Tutorials
The eBook Wholesaler Site
The Internet Marketing Center
Good e-Books & Courses
Wholesale Info Publishing CD
Your Own Associate Program
Smithfam's Webmaster's Services
Downloadable Business Packages
Search Engine Submission Software
Find A Business Hosting Company
Low Cost Smart Autoresponder Script
Free Web Based Autoresponders
Credit Card Processing - Free Setup
Can´t find it Here? - Ask Bob
_
Truly Automate Your Website Submissions to Over 800,000 Places
Generate Free Web Site Traffic
Click HereTo Get More Information Via Email

| MoreTraffic | Support | Site Map | HOME | Ask Bob | CDs | Site Design |
| Bob's Articles | Search Site | Newsletter | Archives | Info Packages | About Bob |
| Half-Price Today | Good eBooks | Affiliate Program | eBook Wholesaler | Archives
| Credit Cards | Script Archives | Webmaster's Tools | Autoresponders | Business Opps |
| Hosting | Getting Started | Free Hosting | Free Software | Free Graphics | Site Promotion |
_
_
A Seed Gives Birth to Fruit of its Own Kind

Home-Based Business Support Services
2606 Summer Lane, Eugene OR, 97404
(541) 689-1847
 Click Here to Email Bob Smith
© 1996-2007 Smith's Family Enterprises Inc.
_
Proudly Hosted By
ICDSoft Hosting
_
SF