Skip to main content
Inspiring
August 3, 2009
Question

Tracking changes

  • August 3, 2009
  • 1 reply
  • 1442 views

Has anyone come up with a process to track changes? I have a page where users can edit content with the built in FCKeditor and submit these changes but the users would like a way to see what the previous changes were. Any ideas and/or best practices would be appreciated. TIA.

This topic has been closed for replies.

1 reply

August 3, 2009

How many versions do you want? Is one enough or do you want to save all previous versions?

rmorganAuthor
Inspiring
August 3, 2009

Well, in theory, tracking changes from the previous edit would probably suffice. But who knows with end-users. I am currently storing all changes but only the last edit is presently available and viewable.

August 3, 2009

I built something that stores article data in a separate table (ex: article_data) from the articles table itself. I increment the version and insert the new data into a new row in the article_data table. I also store the master article ID to relate back to the articles itself. This way I can query for the article history by the master article id, getting each version. Hopefully that doesn't come across as confusing.