You must have,

an http server running with php (version > 2 and < 4) support (width gd and mysql support)
a running mysql database.

-decompress the archive into the temporary directory.


-execute the install script and give as argument the installation directory
(must be under your web server directory)

ex: (the web server directory is /home/httpd/html)

  issue :  /tmp/easysite-2.0/install /home/httpd/html/easysite


NOTE: windows users must use install_for_windows.bat instead

point now your browser at the adress /relative_path/installation/config.php

and follow the instruction


that's all for the installation


For now for all your pages, all you have to do is to write the content of
the page and give this page the extension .html
Next create another file with the same name but with the extension .php3
and filled with the following code

<?
include "$DOCUMENT_ROOT/config_easysite.inc");
include "$EASYSITE_BASE/include/bd.inc";
faire_page ("the_absolute_path_of_your_html_page");
?>

exemple: suppose you want to write a page named my_page.html

and just want to say "good morning !".
But instead of having only a silly page with just "good morning" displayed, you
still want to have a good looking presentation and communication links to
the others pages and to the other categories.

So what you have to is the following.

Create a file named my_page.html and write into it
good morning !
next, create a file named my_page.php3
with in it the following code

<?
include "$DOCUMENT_ROOT/config_easysite.inc");
include "$EASYSITE_BASE/include/bd.inc";
faire_page ("the_absolute_path_of_your_html_page");
?>


To see the html page with all the presentation just point your browser to
my_page.php3.


that's all.
