Tiny Tiny RSS - How to enable readability plugin?
-
I'm trying to enable the (built-in) readability plugin as per https://docs.cloudron.io/apps/tinytinyrss/ (BTW, I fixed a few links, I hope you see my commit in the git)
I've enabled it in
config.php
define('PLUGINS', 'auth_ldap, mailer_smtp, note, readability');
and in
env.sh
export TTRSS_PLUGINS="$CLOUDRON_BUILTIN_PLUGINS, note, readability"
but it doesn't show up?
-
Hmmmm.
I have an
af-readability
folder inplugins.local
:
My
env.sh
looks like this nowexport TTRSS_PLUGINS="$CLOUDRON_BUILTIN_PLUGINS, note, af_readability"
I have removed
af-readability
inconfig.php
in linedefine('PLUGINS', 'auth_ldap, mailer_smtp, note');
and restarted the app - but it doesn't show up?
BTW there's also
- what's the difference?
-
@necrevistonnezr The
/app/data/plugins
can be deleted entirely, I think it's left over cruft from a very old package.The directory in
/app/data/plugins.local
is where plugins reside. That directory should be renamedaf_readability
(yours has a hyphen instead of underscore). -
@girish said in Tiny Tiny RSS - How to enable readability plugin?:
The directory in
/app/data/plugins.local
is where plugins reside. That directory should be renamedaf_readability
(yours has a hyphen instead of underscore).Sh*t, didn't see that. Thanks!
-
-