System administrators

Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. 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
  2. Run the

    translate5

    database updater

    Activate the plug-

    in the php container

    Code Block
    t5 database:update


  3. Then activate the plug-in in the php container - see: Plugin installation and activation

    Code Block
    t5 plugin:enable PLUGIN_NAME
    in the configuration of translate5:
  4. Open the table Zf_configuration in your translate5 database for editing
  5. Search for the correct entry by using this SQL query: SELECT * FROM `Zf_configuration` WHERE `name` LIKE 'runtimeOptions.plugins.active';
  6. Edit the field "value" and add your plugin in the existing listing:
  7.  Your existing listing may look like this:
    ["editor_Plugins_Transit_Bootstrap","editor_Plugins_TermTagger_Bootstrap","editor_Plugins_MatchResource_Init","editor_Plugins_ChangeLog_Init"] 

  8. 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"] 
  9. Your new plug-in is active now.