

*******
USE AT YOUR OWN RISK
******


To run the server yourself you have to:
1. Install LAMP (Linux/Appache/MySQL/PHP) server. There are steps to be found with Google.
2. When you have MySQL database running you have to create a database.
3. Put the contents of the .tar in the /var/www/html/ directory. Probably : /var/www/html/stencyl
4. Modify the connect.php and fill in all the variables that are required for your server.
5. Run the table creation scripts: php -f create_db.php
6. Put the xml file in the DocumentRoot (see Apache: httpd.conf) to allow cross-domain/protocol connections

Detail step 2:
$  mysql -u root -p mysql
SQL>  create database stencyl;
SQL>  grant all privileges on stencyl.* to root@localhost;
SQL> quit;

