Howto Start
The directory blank of the framework contains an application template, which can be used as entry point for the development of customized applications.
Please follow these steps for building your own application:
- Copy the directory named blank to the directory ../application
- Create a database (e.g. wcmf)
- Define your wCMF application model and create the application using wCMFGenerator
or
3.a Define your datamodel via PersistenceMapper classes and sql table definitions (see Definition of the data model)
3.b Modify config.ini to use your datamodel
- Execute the sql script /application/install/tables.sql to install the wCMF base tables
- Change passwords in table user (for password encryption use /wcmf/tools/password/passowrd.php)
- Create your data tables
- Modify config.ini in /application/include to use your database
- Protect your /application/include directory by using a .htaccess file
- Make sure you have activated JavaScript in your browser
- Run the script install.php in the directory /application/install/ to initialize the application
- Point your browser to /application/main.php and log into the application using admin/admin (or other if you changed it)
Back to the Overview | Previous section HowTos | Next section Thanks