Configuration

Target group: Administrators

Extension configuration

To configure the extension, go to Admin Tools > Settings > Extension Configuration and click on the Configure extension button. Open the jobrouter_connector configuration:

Extension configuration of jobrouter_connector

Extension configuration

basic.keyPath

The extension stores credentials in the database, the password will be encrypted. With this configuration setting you define the path and name of the key file relative to the project directory.

Key Generation

An encryption key is required to encrypt and decrypt the password. The extension provides a console command for creating a key. So log on to your server and go to the project path. To generate the key, you need write permissions for this path. Run the following command in the project directory for a composer installation:

vendor/bin/typo3 jobrouter:connector:generatekey
Copied!

In a non-Composer (legacy) installation execute:

php typo3/sysext/core/bin/typo3 jobrouter:connector:generatekey
Copied!

Hopefully you will receive a successful response:

[OK] Key was generated and stored into "/your/project/path/.jobrouterkey"
Copied!