Go Back   CodingForums.com > :: Client side development > General web building

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 07-20-2009, 05:46 PM   PM User | #1
alexmel7
New Coder

 
Join Date: Dec 2008
Posts: 95
Thanks: 7
Thanked 0 Times in 0 Posts
alexmel7 is an unknown quantity at this point
best free cms for site that's already built

Hey everyone, I have a site I've already built and I want to install a nice free cms system so someone else can manage the site easily (pretty much just editing content). I tried installing Joomla, but I don't see a way to easily recreate or import my already existing pages. Any good, free cms systems out there for this?
alexmel7 is offline   Reply With Quote
Old 07-20-2009, 05:59 PM   PM User | #2
Fumigator
UE Antagonizer


 
Fumigator's Avatar
 
Join Date: Dec 2005
Location: Utah, USA, Northwestern hemisphere, Earth, Solar System, Milky Way Galaxy, Alpha Quadrant
Posts: 7,686
Thanks: 42
Thanked 637 Times in 625 Posts
Fumigator is a glorious beacon of lightFumigator is a glorious beacon of lightFumigator is a glorious beacon of lightFumigator is a glorious beacon of lightFumigator is a glorious beacon of light
Sounds like you want it to be magic...?

Any conversion is going to take some work.
__________________
Fumigator is offline   Reply With Quote
Old 07-20-2009, 06:17 PM   PM User | #3
alexmel7
New Coder

 
Join Date: Dec 2008
Posts: 95
Thanks: 7
Thanked 0 Times in 0 Posts
alexmel7 is an unknown quantity at this point
Well, I've used CushyCMS (http://www.cushycms.com/), which I really liked except it screws up tables when someone tries to edit them.
alexmel7 is offline   Reply With Quote
Old 07-21-2009, 10:42 AM   PM User | #4
VIPStephan
The fat guy next door


 
VIPStephan's Avatar
 
Join Date: Jan 2006
Location: Halle (Saale), Germany
Posts: 7,587
Thanks: 5
Thanked 864 Times in 841 Posts
VIPStephan is a jewel in the roughVIPStephan is a jewel in the roughVIPStephan is a jewel in the rough
Quote:
Originally Posted by alexmel7 View Post
Hey everyone, I have a site I've already built and I want to install a nice free cms system so someone else can manage the site easily (pretty much just editing content). I tried installing Joomla, but I don't see a way to easily recreate or import my already existing pages. Any good, free cms systems out there for this?
You always have to do some (more or less) minor modifications in your code because you need to change your pages from static HTML to dynamic content management. I can recommend CMS Made Simple where you just have to copy and paste your template HTML and replace a few snippets with Smarty tags to indicate where the content goes (i. e. where one can change the content).

For example if you currently have a static page looking ike this:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
	<head>
		<title>here goes the website title</title>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<meta name="description" content="blabla" />
		<meta name="keywords" content="text here" />
	</head>
	<body>
		<div id="container">
			<div id="header">this is the header code</div>
			<hr />
			<div id="content">here comes the content</div>
			<hr />
			<div id="footer">and footer is here</div>
		</div>
	</body>
</html>
If you want to make your content editable remove the static code you currently have and replace it with the respective Smarty tag:
Code:
<div id="content">here comes the content</div>
.
.
.
<div id="content">{content}</div>
Then if you create a new page whatever you put into the editor will appear in that spot where you put the Smarty tag.

This is just the most basic way, there are a few more thing you can (but don’t have to) change to make them dynamic and editable from the CMS admin area.
__________________
Don’t click this link!
VIPStephan is offline   Reply With Quote
Old 07-21-2009, 02:54 PM   PM User | #5
alexmel7
New Coder

 
Join Date: Dec 2008
Posts: 95
Thanks: 7
Thanked 0 Times in 0 Posts
alexmel7 is an unknown quantity at this point
Thanks VIPStephan, that looks interesting. I'll check it out.
alexmel7 is offline   Reply With Quote
Old 07-22-2009, 11:02 AM   PM User | #6
extokas
New Coder

 
Join Date: Apr 2009
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
extokas is an unknown quantity at this point
Looks quite interesting, need to test it )
Thanks a lot
extokas is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 10:28 PM.


Advertisement
Log in to turn off these ads.