Details of the configuration of Mapbender

Configuration steps

In the following, we will describe the configurational steps of Mapbender a bit further. Configuring your Mapbender installation consists of the following six steps:

  • Creating the database

  • Creating the database schema

  • Copying the bundles’ assets into the public directory

  • Creating the “root” user

  • Initializing the database

  • Loading the demo applications to your database

All that can be done using the console utility provided by Symfony, on which the Mapbender framework is built upon. There’s some mayor caveats though you should understand before continuing:

Note

The console utility will write files in the var/cache and var/log directories. These operations are made using the user permissions of whatever user you’re logged in with. This is also true for the var/db directory and the SQLite database within. When you open the application from within the browser, the SQLite database with its server PHP process will try to access/write all these files with other permissions. So make sure you give the PHP process write access to these files. See last step below.

Note

Important: The following steps assume that you are in the directory above the app directory (notice that for git installation that means mapbender/application/, else mapbender/).

cd mapbender/
or for git based installation
cd mapbender/application

Adapting the configuration file

Database connection parameters are stored together in the file .env.local. Other configuration parameters are defined in the file application/config/parameters.yaml and other files in the config directory.

More Information: YAML Configuration (Configuration and Application files).

Creating the database

Hint

In general, it is recommended to create the database using a graphical database tool such as, for example, pgAdmin.

Alternatively, Symfony can attempt to create your database, this works of course only if the configured database user is allowed to do so. Call the console utility like this:

bin/console doctrine:database:create

Creating the database schema

Symfony will create the database schema for you:

bin/console doctrine:schema:create

Copying the assets bundles

Each bundle has its own assets - CSS files, JavaScript files, images and more - these must be copied into the public folder:

bin/console assets:install public

Alternatively, as a developer, you might want to use the symlink switch on that command to symlink instead of copy. This will make editing assets inside the bundle directories way easier.

bin/console assets:install public --symlink --relative

Creating the administrative user

The first user - which has all privileges - must be created using the command:

bin/console fom:user:resetroot

This will interactively ask all information needed and create the user in the database.

Alternatively, there is a silent mode you can use, if you want to use a script to install Mapbender and don’t want to be asked for all parameters:

bin/console fom:user:resetroot --username="root" --password="root" --email="root@example.com" --silent

Initialize the database

Initializing the database can be done using the command:

bin/console mapbender:database:init

Importing applications from application/config/applications

It is possible to (re-)import applications from the applications folder into the database with the command:

bin/composer run reimport-example-apps

Configuration files

The configuration files are located under application/config.

Find more information in: YAML Configuration (Configuration and Application files).

Also have a look at the .env.local file at application.

Production and Development environment and Caching

Mapbender provides two environments: a production environment for the general operation and a development environment in which the application can be tested. This concept follows the Configuration Environments in the Symfony framework.

The production environment is called with the URL http://localhost/index.php, the development environment with the URL http://localhost/index_dev.php. The call with index_dev.php is restricted and should only be available from localhost. You can modify the index_dev.php file and add IP addresses to be able to access the development environment from other locations.

There are differences in the behaviour of the production and development environment:

  • The cache mechanism of the development environment behaves differently: Not all files are cached, thus code changes are directly visible. Therefore, the usage of index_dev.php is always slower than the production environment.

    In detail, the development environment of Mapbender does not cache the CSS, JavaScript and Translation files, among others.

    The production environment caches all these files and puts them into the var/cache folder.

  • The development environment gives out error messages and stack traces to the user interface. The production environment logs them into the file var/log/prod.log.

  • The development environment shows the Symfony Profiler. This tool logs things that are important for developers but are not supposed to be visible for common users.

The directory var/cache contains the cache files. It contains directories for each environment (prod and dev). But the mechanism of the dev cache, as described before, behaves differently.

If changes of the Mapbender interface or the code are made, the cache directory (var/cache) has to be cleared to see the changes in the application.

The environment can be set via the APP_ENV variable. Make sure to change this to prod when deploying your application for the public. The value can be changed in several ways:

  • by editing the APP_ENV variable in the .env file,

  • by overriding the value in an .env.local file,

  • by setting an environment variable in your Apache2 vHost configuration: SetEnv APP_ENV prod,

  • by explicitly setting it when starting the local webserver:

APP_ENV=prod symfony server:start --no-tls