wCMF  3.6
 All Classes Namespaces Files Functions Variables Groups Pages
howtostart.doxy
Go to the documentation of this file.
1 /** @page howtostart
2  *
3  * @section howtostart Howto Start
4  * The directory @em blank of the framework contains an application template, which
5  * can be used as entry point for the development of customized applications.@n
6  * Please follow these steps for building your own application:
7  *
8  * 1. Copy the directory named blank to the directory ../application@n@n
9  * 2. Create a database (e.g. wcmf)@n@n
10  * 3. Define your wCMF application model and create the application using wCMFGenerator@n
11  * or@n
12  * 3.a Define your datamodel via PersistenceMapper classes and sql table definitions (see @ref howtotype)@n@n
13  * 3.b Modify config.ini to use your datamodel@n@n
14  * 4. Execute the sql script /application/install/tables.sql to install the
15  * wCMF base tables@n@n
16  * 5. Change passwords in table @em user (for password encryption use /wcmf/tools/password/passowrd.php)@n@n
17  * 6. Create your data tables@n@n
18  * 7. Modify config.ini in /application/include to use your database@n@n
19  * 8. Protect your /application/include directory by using a .htaccess file@n@n
20  * 9. Make sure you have activated JavaScript in your browser@n@n
21  * 10. Run the script @em install.php in the directory /application/install/ to initialize the application@n@n
22  * 11. Point your browser to /application/main.php and log into the application
23  * using admin/admin (or other if you changed it)
24  *
25  * Back to the @ref intro | Previous section @ref howto | Next section @ref credits
26  *
27  */