...
- Place the plug-in folder inside of the plug-in directory of translate5, which is /application/modules/editor/Plugins - for many translate5 plug-ins this is already the case after installing translate5
Run the
translate5database updater
Activate the plug-in the php container
Code Block t5 database:updateThen activate the plug-in in the php container - see: Plugin installation and activation
in the configuration of translate5:Code Block t5 plugin:enable PLUGIN_NAME- Open the table Zf_configuration in your translate5 database for editing
- Search for the correct entry by using this SQL query: SELECT * FROM `Zf_configuration` WHERE `name` LIKE 'runtimeOptions.plugins.active'; Edit the field "value" and add your plugin in the existing listing:
- Your existing listing may look like this:
["editor_Plugins_Transit_Bootstrap","editor_Plugins_TermTagger_Bootstrap","editor_Plugins_MatchResource_Init","editor_Plugins_ChangeLog_Init"] - And after adding e. g. the Okapi plugin it will look like this
["editor_Plugins_Transit_Bootstrap","editor_Plugins_TermTagger_Bootstrap","editor_Plugins_MatchResource_Init","editor_Plugins_ChangeLog_Init","editor_Plugins_Okapi_Init"] Your new plug-in is active now.