Menu

HowtoInstall

Francesco Apollonio

Howto install OpenFlat

Howto install OpenFlat

  • Download all the code from the svn repository
  • copy it in your FTP server
  • create a new database
  • create tables executing queries that you can find in include/database/query_to_create_db.sql
  • insert one (or more) user using PhpMyAdmin into "login" table, password must be encripted using SHA1
  • create a new includes/configuration.inc.php as shown below:
<?php

        $LANGUAGE="en";
        $config_db = "MYDBNAME";
        $config_server = "MYDBSERVER";
        $config_username = "MYDBUSER";
        $config_password = "MYDBPASS";

        // FROM VERSION 0.3
        $website_name="WEBSITE_NAME";
        $mailfrom_name="SENDER_NAME";
        $mailfrom_address="SENDER_MAIL";


?>

Related

Wiki: Home