There was a problem loading the comments.

How can I reactivate modules for legacy reasons?

Support Portal  »  Knowledgebase (FAQ)  »  Viewing Article

  Print
Editions: all
Versions: 6.0.0+

 

With new versions, older plugins may be deactivated as they are no longer required.

 

If you still want to run these plugins for legacy reasons, please proceed as follows.

 

Change to the config directory of the plugin, in our example we choose the WebTV plugin:

 

cd plugins/stWebTVPlugin/config

 

Open the package.yml file:

 

nano package.yml

 

Remove the comments (#) before the lines beginning with “application”:

 

package:
  modules:
    webtv:
#      application:        [frontend, backend]
    mediaWebtv:
#      application:        [frontend, backend]
    swfuploadWebtv:
#      application:        [frontend, backend]
    userWebtv:
#      application:        [frontend, backend]
    webcontentWebtv:
#      application:        [frontend, backend]

 

The code then looks like this:

 

package:
  modules:
    webtv:
      application:        [frontend, backend]
    mediaWebtv:
      application:        [frontend, backend]
    swfuploadWebtv:
      application:        [frontend, backend]
    userWebtv:
      application:        [frontend, backend]
    webcontentWebtv:
      application:        [frontend, backend]

 

Now open the defaults.yml file in the same directory:

 

nano defaults.yml

 

Remove all comments (#) at the beginning of the lines.

 

Finally, update your installation:

 

./vimp update

 

However, please note the following:

We no longer support plugins where the application directives are commented out. This means that if you reactivate them, unpredictable errors may occur in the portal. In this case, you are responsible for the further development of the corresponding plugins.


Share via

Related Articles

© VIMP GmbH