CMS isn't an architecture, its just a class of application (like Word Processor).

Where do I store the information that are editable?

Anywhere you like, a relational database like MySQL is the normal choice.

I only want one version of my html pages (template file)

Template or HTML::Template are the usual choices.

The webpages should be multilingual

This makes things more complicated (since you will probably want your CMS to keep things in sync and fire off alerts to translators when a document is changed in one language), but not impossible to handle.

Need to have a wysiwyg editing tool

There is no such thing on the web (since HTML is a language for describing semantics and relationships, and CSS is (a) optional and (b) implemented inconsistantly). Graphical editors abound, although they are of variable quality.

You might want to look into some of the browser based graphical editors. Another option (and I don't know if such tools exist) might be to find an application (along the lines of Dreamweaver) that can work over WebDAV and then write a mod_perl module to handle the WebDAV interface. You could also try convincing users to learn HTML (which is, frankly, pretty trivial - especially if you restrict them to HTML 4.01 Strict (which is all the vast majority of people need)) and have them just write markup.


In reply to Re: new to CMS by dorward
in thread new to CMS by boboson

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.