Content Management Systems made easy with Server Side Includes Content Management systems are an invaluable backend aspect of a webpage now-days. I honestly see very few websites that can really say they don t need some sort of Content Management system. However, not all content management needs are the same. There are plenty of instances where all that needs to be altered is slight text here and there, or details. It doesn t make sense for the company to pay a designer an hourly fee every time they need an update, and it doesn t help you to have to spend half your day working on pointless copy updates.
Here in lies the problem, most content management systems are not designed for small alterations. They are either custom modified code, where customers end up paying for development of features they are not even going to use (ie: the more complex functions they don t need), or you end up paying for an off the shelf package that takes more time and effort to setup and still has more than you ever needed.
What I do to solve this problem is simply use server side includes. Server side includes are basically a line of code in a webpage that says load this part of the website from this file. This makes it extremely easy to update a section of the website that is just a body of text.
So as you are developing the website, sit down with your clients and ask them which paragraphs they want to be able to edit. This could be news, about us, past projects, etc. Once you have found that out, store the text of each of those paragraphs into a .txt file in a cms or similar folder. You can then apply the proper markup around the server side include, and style it properly. For example,
Hello.txt in /public html/cms
Hello, and welcome to our site!
Then in the index.html
Now all that has to be done to edit the heading, is setting up an FTP account that drops them in the CMS folder, and they can upload the file as needed with the changes.
The drawbacks at this point are that they still have to deal with the hassle of FTP. Don t worry though, in part two I will describe how to make a simple CGI script to deal with that for you like I have done for clients such as Ann Arbor s Hideaway Lane. The other drawback is server side includes also do put an increased load on your website, so it will download slightly slower. The less server side includes on your page, the quicker it will download, and you can try and compensate for the increase in load by using proper code to reduce file size, and proper image optimization.
-Ross Johnson Ann Arbor Web Design Web Design Insight for Companies
Bookmark it:
Wednesday, March 12, 2008
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment