Webforumz's RSS FeedRSS Webforumz RegistrationRegister Contact Webforumz StaffContact

updating html pages client-side

This is a discussion on "updating html pages client-side" within the Web Page Design section. This forum, and the thread "updating html pages client-side are both part of the Design Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Jun 15th, 2006, 13:21
Junior Member
Join Date: Sep 2005
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
updating html pages client-side

Hi, i have recently designed a website for someone using dreamweaver.
The client wants a page that she can update every week with pictures etc. Is there a way she can update these pages without having to use dreamweaver. If so, do i have to use a totally different method such as php to create such a page
Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2  
Old Jun 15th, 2006, 14:19
minute44's Avatar
Most Reputable Member

SuperMember
Join Date: Apr 2006
Location: Nottingham UK
Age: 25
Posts: 1,361
Blog Entries: 3
Thanks: 0
Thanked 1 Time in 1 Post
Re: updating html pages client-side

Well, Macromedia have an application called Contribute... This allows users to add or modify content through a basic GUI.

The only other way really is to use some kind of PHP content mamagement system...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Jun 15th, 2006, 16:16
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Re: updating html pages client-side

Given that the web site is now designed and in place, using a CMS is not really an option, so you need a browser based web page editor.

As already mentioned, Contribute is one such option. The price of this product has recently been hiked up for whatever reason and its features may be more than you need for the price.

Another option you might look at is EasySiteEdit for $49.

http://www.easysiteedit.com/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Jun 15th, 2006, 16:20
minute44's Avatar
Most Reputable Member

SuperMember
Join Date: Apr 2006
Location: Nottingham UK
Age: 25
Posts: 1,361
Blog Entries: 3
Thanks: 0
Thanked 1 Time in 1 Post
Re: updating html pages client-side

Yeah, wow! I didn't realise they were charging £116 for it now! It must be because Adobe have taken over...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old Jun 16th, 2006, 05:35
Reputable Member
Join Date: Jul 2005
Posts: 400
Thanks: 0
Thanked 0 Times in 0 Posts
Re: updating html pages client-side

This is a pretty simple concept that I implemented for a church site who wanted to do the updating.

Use php includes to include data html files where the content should go. Set them up with FTP and for HTML files to open with Notepad. They won't ever have to open the actual coded page, just the data file. Put in their information, save and it's updated. No more difficult then a CMS. If they mess the data file up, they send me an email I can fix it in a few minutes.

For photos, an extremely simple PHP script can be written to read every jpg from a directory and display the photos. They just have to drop the new photo in place and it get's read. If you need captions, just create a txt comma delimited file with the image filename and description. Read that file in with the script and parse the two out and display the image with description.

image1,description of image 1
image2,description of image 2
image3,description of image 3

With very little training of simple header and paragraph elements, they were up and running on the html files. Taught them very simple Irfanview mods for photographs, but they usually leave those up to me since the images often need more fixing then they want to bother with.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old Jun 16th, 2006, 08:45
minute44's Avatar
Most Reputable Member

SuperMember
Join Date: Apr 2006
Location: Nottingham UK
Age: 25
Posts: 1,361
Blog Entries: 3
Thanks: 0
Thanked 1 Time in 1 Post
Re: updating html pages client-side

Yeah, that's along the lines of what I was thinking when I mentioned PHP. I don't know much about PHP at all though so I couldn't go into detail like that.

Nice post.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old Jun 16th, 2006, 12:28
herkalees's Avatar
Highly Reputable Member
Join Date: Jul 2005
Location: Massachusetts, USA
Age: 87
Posts: 576
Thanks: 0
Thanked 0 Times in 0 Posts
Re: updating html pages client-side

My two cents: I've used/implemented Macromedia Contribute for a client, and it STUNK. It's built-in browser rendered my (in my opinion) perfect code so poorly, that the client thought their site was broken.

In real browsers, it looked great of course, but Contribute had no idea what to do with clean, up-to-date code.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old Jun 17th, 2006, 14:29
Junior Member
Join Date: Sep 2005
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
Re: updating html pages client-side

Thanks for the feed back. i appreciate it. im not very well clued up in terms of php but would i be right in saying that the php code can be implimented into my html code.
Does anyone know of any sites that have good tutorials on php.
Thanks again
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9  
Old Jun 17th, 2006, 15:11
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Re: updating html pages client-side

Quote:
Originally Posted by forry
im not very well clued up in terms of php but would i be right in saying that the php code can be implimented into my html code.
Yes, php can be included in your html code.
You need to surround the php code with
<?php

?>
and for it to be actioned, you will either need to save your files with the extention of .php instead of .html or you tell your server, through an entry in the .htaccess file, (my prefered method) to process .html files for php code.

However, this thread seems to have gone off on a tangent from the original post. Using some kind of online browser based page editing software won't necessarily involve you in any understanding of php.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #10  
Old Jun 17th, 2006, 15:42
Highly Reputable Member
Join Date: Aug 2005
Location: 3rd Branch Up, Old Oak.
Age: 48
Posts: 658
Thanks: 0
Thanked 0 Times in 0 Posts
Re: updating html pages client-side

PHP Tutorials HERE.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #11  
Old Jun 19th, 2006, 21:25
Junior Member
Join Date: Sep 2005
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
Re: updating html pages client-side

Thanks for the feedback
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
updating, html, pages, clientside

Thread Tools

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 On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Auto updating client Deano Other Programming Languages 2 May 26th, 2008 19:26
Javascript - Updating web pages with snippets from other pages Ydot JavaScript Forum 3 Jul 10th, 2007 15:38
client-side web developer Web JobBot Job Opportunities 0 Feb 7th, 2007 11:40
Sever & Client side programming challenges Sagaris Other Programming Languages 1 Aug 24th, 2006 21:42
Client-Side VS Server Side Scripting redev2006 JavaScript Forum 1 Jul 30th, 2005 20:30


All times are GMT. The time now is 19:02.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8