Forum Moderators: mack

Message Too Old, No Replies

What method should I use as the backbone for my site?

         

Mugfins

7:15 pm on Apr 8, 2003 (gmt 0)



I am creating a website for a newspaper that's published a few times a month.

I'd like to be able to design a website for the newspaper that can display individual articles but still give me the flexability to modify the menu, header, footer text, etc. without having to change every article page and without using frames. (Whatever method I end up using, it has to be able to support a search feature.)

Right now I'm using Server Side Includes but this means I have 2 documents for every article: the .html page that contains only the article text and the .shtml page that links to the menu, header, footer text and article text html. I don't think the method I am using is the most efficient.

Should I use some sort of database for this? If so, what kind of database? Can anyone point me in the right direction?

txbakers

7:48 pm on Apr 8, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hello Mugfins and welcome to the Webmaster World.

There are a number of solutions to your problem, but all will involve getting a little more sophisticated than Server Side Includes.

Depending on your server and level of interest in programming, you can use a wide variety of server side processing languages. ASP, JSP, and PhP are probably the most common.

Technically you wouldn't need a database, but you would need a well developed template system that you could modify as needed.

Take a look at www.nytimes.com. Here is a newspaper website that is updated every fifteen minutes! Looking at the code won't help, because everything is processed server side.

Build a template, then all you need to create, or modify, is the content pages. You will still need multiple pages, but creating a newspaper is a tall order.

Filipe

10:27 pm on Apr 8, 2003 (gmt 0)

10+ Year Member



The cheapest solutions are PHP (free) and a Postgres (free) or mySQL database (free) hosted on a Unix-style (free) server.

u4eas

12:05 am on Apr 9, 2003 (gmt 0)

10+ Year Member



you may even want to consider a PHP Nuke type site as they are a nice easy CMS solution.

wwww.phpnuke.com
www.postnuke.com

choose postnuke if you need to handle different levels of permissions... i.e. mods, reports, users, anon, admin, owner etc...

I have had great success with them as they offer a total solution.

I currently have 2 postnuke sites and 2 phpnuke sites.

cheers-

u4ea

if you are unfamiliar let me know and I can help you.

mivox

12:16 am on Apr 9, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



A lot of 'blog scripts will do exactly what you describe. Greymatter and MoveableType are two popular ones, both written in Perl.