Skip to content
sjarvela edited this page Feb 11, 2015 · 13 revisions

Introduction

Mollify app has two configurations

  • Client configuration
  • Backend configuration

Client configuration

Backend configuration

Backend configuration file is located under folder "backend". Example configuration files can be found from "backend/examples".

Syntax of the configuration file is following: $CONFIGURATION = array( "name" => "value", "name2" => "value2" );

All possible configuration options, coming.

At minimum, define option "db" for database configuration, and "plugins" to configure plugins.

For example: ` $CONFIGURATION = array( "db" => array( "type" => "mysql", "database" => "mollify", "user" => "mollify", "password" => "mollify", "charset" => "utf8" ), // OTHER CONFIGURATION OPTIONS HERE...

"plugins" => array(
	// PLUGIN CONFIGURATION HERE
)

); `

Database

Mollify supports MySQL and SQLite databases, either directly or via PDO interface.

Follow instructions based on configuration type (instructions for PDO is included in these pages): MySQL Database SQLite Database For additional options, see additional settings on client and backend.

Clone this wiki locally