Solved Enable enableDeveloperExperiments
-
In the Cloundron Ghost app docs
https://docs.cloudron.io/apps/ghost/#gravatar
It is mentioned that you can enable Gravatar in the config.production.json, save the file and restart.
I tried adding enableDeveloperExperiments as follows
"privacy": { "useUpdateCheck": false, "useGravatar": true, "useRpcPing": false, "useStructuredData": true, "enableDeveloperExperiments": true }
This did nothing even after a few restarts. So I removed the enableDeveloperExperiments and left Gravatar = true but did not see any changes from that either.
Is there another area that needs to be updated/compiled to enable the Labs area via enableDeveloperExperiments
-
what is the full path of the file you edited?
-
@robi It was edited via the File Manager as described in the Cloudron Documentation for Ghost App.
from what I can see in the File Manager windows, the file is
/app/data/config.production.json
-
@briankb-0 good, that should work and the file permissions/owner look good.
The configs persist, now can you take a look at the logs while the settings are enabled and see if any errors pop up?
-
@briankb-0 Per https://github.com/TryGhost/Ghost/blob/main/config.development.json, looks like
enableDeveloperExperiments
must not be inside privacy. So,{ "enableDeveloperExperiments": true, "privacy": { "useUpdateCheck": false, "useGravatar": true, "useRpcPing": false, "useStructuredData": true } }
-
@girish said in Enable enableDeveloperExperiments:
enableDeveloperExperiments
moving it outside privacy worked, thank you!
-
nebulon
-
nebulon