Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

Website Design Forum


You are currently viewing our Website Design Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Designing a site updateable for client
Old 05-18-2009, 07:19 PM Designing a site updateable for client
Skilled Talker

Posts: 90
Name: Ed
Trades: 0
I've been asked to design a website for a client who would like to be able to update certain aspects of the text on the website. I've delved into CMS's a little bit here and there but don't really have a good grasp on getting them functioning fully yet. Can someone shed some other alternatives so that the client can make simple updates to the website over time? I'd really appreciate any input on this matter. Thanks in advance!
mrflume is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 05-19-2009, 09:59 AM Re: Designing a site updateable for client
racer x's Avatar
Ultra Talker

Posts: 457
Name: Randy
Location: Northern Wisconsin
Trades: 0
I always suggest Wordpress when a client wants control over the text. WP has a small learning curve for creating custom designs, but once you get it, you'll want to do all your sites this way. It saves you from all those one or two word updates for clients AND allows you to charge more because the site is now a form of a cms.
racer x is offline
Reply With Quote
View Public Profile Visit racer x's homepage!
 
Old 05-19-2009, 10:32 AM Re: Designing a site updateable for client
Brian07002's Avatar
Defies a Status

Posts: 2,142
Name: ...
Location: ...
Trades: 0
If you're only updating text, why not just edit it in a simple html editor -- One that is already part of your ftp program, or better in the backend of your script? You can usually do everything you need like that.
__________________
Made2Own

Please login or register to view this content. Registration is FREE
Brian07002 is offline
Reply With Quote
View Public Profile
 
Old 05-19-2009, 12:36 PM Re: Designing a site updateable for client
zeruel's Avatar
Webmaster Talker

Posts: 515
Location: SouthEast
Trades: 0
WP is indeed one of the best option you can have here. You can set a user and it's limitations on that. Check it out.
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
zeruel is offline
Reply With Quote
View Public Profile Visit zeruel's homepage!
 
Old 05-19-2009, 05:21 PM Re: Designing a site updateable for client
vangogh's Avatar
Post Impressionist

Posts: 10,689
Name: Steven Bradley
Location: Boulder, Colorado
Trades: 0
The CMS option is going to be best for the client and I'll add another recommendation for WordPress.

Otherwise the client is going to need to edit your files directly. What I've done for clients in the past is to find out what they'll likely want to change and then comment your code so it's easy for them to find the code they need to edit. I'll also leave instructions for how to edit the content.

Then when the site is ready I'll walk them through making a change over the phone. I'll send them links to a free code editor and FTP program and take them through the process, reminding them early and often to make a copy of any file they edit. Make sure you also keep a backup of the site and then the worst case scenario is you get paid to upload their site again.
__________________
l Search Engine Friendly Web Design |
Please login or register to view this content. Registration is FREE

l Tips On Marketing, SEO, Design, and Development |
Please login or register to view this content. Registration is FREE

l
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
vangogh is offline
Reply With Quote
View Public Profile Visit vangogh's homepage!
 
Old 05-19-2009, 10:37 PM Re: Designing a site updateable for client
NewBreed's Avatar
Extreme Talker

Posts: 223
Name: Johnny
Location: Washington
Trades: 0
Haven't tried this yet, but I was wondering if one would be able to have their client write in a .doc file where the content should go in case the client wanted to change the wording around, they would only have to open the .doc and upload it. They would only need to know how to work word and a ftp manager.

For instance:

PHP Code:
<div class="content">
<?php
$content 
file_get_contents('content.doc');
echo 
$content;
?>
</div>
__________________
"The only thing that interferes with my learning is my education." -Albert Einstein
NewBreed is offline
Reply With Quote
View Public Profile
 
Old 05-20-2009, 12:31 AM Re: Designing a site updateable for client
Skilled Talker

Posts: 90
Name: Ed
Trades: 0
Cool. Thanks for the replies. I will definitely look into using Word Press.
mrflume is offline
Reply With Quote
View Public Profile
 
Old 05-20-2009, 04:05 AM Re: Designing a site updateable for client
X-Cart's Avatar
Skilled Talker

Posts: 61
Trades: 0
Quote:
Originally Posted by NewBreed View Post
Haven't tried this yet, but I was wondering if one would be able to have their client write in a .doc file where the content should go in case the client wanted to change the wording around, they would only have to open the .doc and upload it. They would only need to know how to work word and a ftp manager.

...
I'm afraid thing are far more complex than that. You may refer to a post called Extracting text from Word Documents via PHP and COM

What you really need to do is use COM to tell Word itself to handle parsing the file. You can create a new COM object with

Code:
$file = new COM("word.application");
which basically opens up a copy of Word on the server and gives you access to it from PHP.

But you need a Windows-based server in order to do this.
__________________

Please login or register to view this content. Registration is FREE
shopping cart software
Our
Please login or register to view this content. Registration is FREE
on Facebook
X-Cart is offline
Reply With Quote
View Public Profile Visit X-Cart's homepage!
 
Old 06-02-2009, 03:57 PM Re: Designing a site updateable for client
Skilled Talker

Posts: 90
Name: Ed
Trades: 0
I installed wordpress on my web server, and now I'm wondering if I can simply just pull the posts on the blog into my HTML/CSS design that I have designed and setup already, so that the text thats pulled from the blog will just acquire the CSS styles. I'm too sure what the procedure would be to attain this. Thanks for any help!
mrflume is offline
Reply With Quote
View Public Profile
 
Old 06-02-2009, 04:43 PM Re: Designing a site updateable for client
racer x's Avatar
Ultra Talker

Posts: 457
Name: Randy
Location: Northern Wisconsin
Trades: 0
Take a look at this for theming:
http://css-tricks.com/video-screenca...ress-part-one/
and for more info:
http://sixrevisions.com/wordpress/30...deo-tutorials/

Quote:
now I'm wondering if I can simply just pull the posts on the blog into my HTML/CSS design
Kind of. You integrate your html/css stuff into a WP theme. Within the wordpress loop you then have access to the blog posts to put into your design.
http://codex.wordpress.org/The_Loop
racer x is offline
Reply With Quote
View Public Profile Visit racer x's homepage!
 
Old 06-02-2009, 05:48 PM Re: Designing a site updateable for client
Novice Talker

Posts: 6
Name: Kiril
Trades: 0
I can recommend Joomla CMS. You can use the editor account for the client and not to worry about breaking the whole site down. Editor accounts have limited access, can add and edit articles. Wordpress is alsoo good but it depends on the complexity of the project. Me personally prefer Joomla. The site in my signature is made with this CMS.
__________________

Please login or register to view this content. Registration is FREE
kirilbug is offline
Reply With Quote
View Public Profile
 
Old 06-03-2009, 05:56 PM Re: Designing a site updateable for client
Skilled Talker

Posts: 90
Name: Ed
Trades: 0
so I made the design before I knew I would be using wordpress. Basically the client just wants to have a small area of text that says Weekly Events and then they can just add in an event with some information next to it. Do you still think Wordpress is the best option for this even though it's very simple?
mrflume is offline
Reply With Quote
View Public Profile
 
Old 06-03-2009, 07:12 PM Re: Designing a site updateable for client
racer x's Avatar
Ultra Talker

Posts: 457
Name: Randy
Location: Northern Wisconsin
Trades: 0
I actually think it might be overkill for creating a custom theme, etc. You can also install WP on a lower level so that you keep a regular site and the blog area is separate. With this method you would have to have a link on the home page that said "news" (or whatever) and then that led to the blog. Your regular site stays exactly the same.

For the WP part of it, you can just find a template that resembles your site and change some background colors, etc.to match nicely. I have done this before on clients with limited budgets. Full WP custom themes are a lot of work because there are so many files.

You could still "pull" recent blog posts through its RSS feed if you wanted to display on your home page. I will try to find the link for how to do that.

@kirilbug - I was only saying he had to break the whole site down to implement into a wordpress theme, not to simply allow a user to make posts. I don't see how you could create a completely custom theme for joomla without breaking down your code at some point, but I don't know all that much about joomla. Is it easy to create a custom theme in joomla?
racer x is offline
Reply With Quote
View Public Profile Visit racer x's homepage!
 
Old 06-03-2009, 07:49 PM Re: Designing a site updateable for client
Skilled Talker

Posts: 90
Name: Ed
Trades: 0
yea i think i like the idea of pulling an rss feed into the homepage and then just have css stylize it. The client isn't too picky they just want to be able to make weekly event/news updates. Really appreciate the help.
mrflume is offline
Reply With Quote
View Public Profile
 
Old 06-04-2009, 09:43 AM Re: Designing a site updateable for client
Novice Talker

Posts: 10
Trades: 0
I use joomla its more powerful than wordpress in my opinion
__________________

Please login or register to view this content. Registration is FREE
info@allwebserv is offline
Reply With Quote
View Public Profile Visit info@allwebserv's homepage!
 
Old 06-08-2009, 08:20 PM Re: Designing a site updateable for client
Super Talker

Posts: 116
Name: Start Up Web Company
Trades: 0
for a simple updatable website Word Press and Movable Type, has my vote. Advanced websites I would say Drupal or Joomla.

I am a die-hard Joomla fan since about 2006.
dalexdesign is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Designing a site updateable for client
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.49233 seconds with 12 queries