DOI settings for Plumx Print Widget

Dear @ctgraham,
Before I did all above, I suspected to plugin Usage Statistics and disable the same. The Widget PlumX work and presented on missing article. Something is problem with these two plugins. Do I need to do more how you can receive more info about this problem or ?
Regards,
Lazar

Very helpful. Can you confirm that you are still using OJS 3.1.1-4? Was this installed from the Full Package download, or from the Git source code?

As I wrote you above, I continue working from previous college. He made upgrade from OJS and they use now OJS 3.1.0.1.
image

Hi Leader and Seisense,
I am using OJS 3.1.1, I do add plugins Plum X in OJS, I have enabled the Plum x but It’s not static. Do you have share plugins using to me. Can you help me. I look forwwar for you.
plum%20x
Thank you very much!
Minh Nhut

Are you concerned that Plum Analytics is not tracking your articles even though the plugin appears to provide the widget successfully?

If so, you will want to contact Plum Analytics to see if they are aware of your article DOIs.

If you are reporting a problem in the plugin itself, can you be more specific?

Thank you Mr.ctgraham :))
Minh Nhut

We use OJS version 3.1.1-2 and PlumX plugin version 1.3.0-0. All articles have DOIs. Even if there is no data, the plugin correctly displays ā€œNo metrics availableā€.
However, in some articles (e.g. https://biocomm.spbu.ru/article/view/3717) the widget is not displayed at all. The error is the same - javascript is not loaded. However, if I disable Recommend Articles by Author plugin, then everything works fine everywhere. Obviously, the plugin Recommend Articles by Author somehow disrupts PlumX plugin :frowning: What could be the solution for us?

Thanks for this detail, @rkhalikov. What theme are you using? I have a theory of what may be going on, but I need to trace it into the specific theme.

We’re using Manuscript theme.

My theory was wrong. It seems like the Recommend Articles by Author is preventing the PlumX script tag from loading for you, but I cannot reproduce this, even when I use the same theme. The hook they share in common is Templates::Article::Footer::PageFooter.

Do you have a development or test server where you can change the PHP code to get some more information? If you are comfortable editing the PHP code, I can suggest a change which will output details into the PHP error log.

What surprises me most is the selectivity of error. After all, it is not found on all articles, although the plugin is always on. I’m not an advanced PHP-specialist and I don’t have a test server. But I have full access to the hosting with OJS and can try something in the code, if it’s not very scary :wink:

I found out that not only Recommend Articles by Author affects the operation of the widget. If you turn off Usage Statistics plugin, the widget normally displays. So the reason is deeper… :frowning:

If you are comfortable making the following change to lib/pkp/class/plugin/HookRegistry.inc.php:

diff --git a/classes/plugins/HookRegistry.inc.php b/classes/plugins/HookRegistry.inc.php
index ed2f764..8986749 100644
--- a/classes/plugins/HookRegistry.inc.php
+++ b/classes/plugins/HookRegistry.inc.php
@@ -104,7 +104,9 @@ class HookRegistry {
                        ksort($hooks[$hookName], SORT_NUMERIC);
                        foreach ($hooks[$hookName] as $priority => $hookList) {
                                foreach ($hookList as $hook) {
-                                       if ($result = call_user_func($hook, $hookName, $args)) return true;
+                                       error_log($hookName.' calls '.get_class($hook[0]).'::'.$hook[1]);
+                                       if ($result = call_user_func($hook, $hookName, $args)) { error_log('returned truish'); return true; }
+                                       error_log('returned falsish');
                                }
                        }
                }

This will capture all of the hook calls.

The one line currently reading:

					if ($result = call_user_func($hook, $hookName, $args)) return true;

becomes:

                                      error_log($hookName.' calls '.get_class($hook[0]).'::'.$hook[1]);
                                      if ($result = call_user_func($hook, $hookName, $args)) { error_log('returned truish'); return true; }
                                      error_log('returned falsish');

Reload an article page where the widget does not display, then undo the change.

You will then see something like this in your error log:

[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::themeRegistered, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::initAfter, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] LoadHandler calls OJS\\Services\\NavigationMenuService::_callbackHandleCustomNavigationMenuItems, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] LoadHandler calls StaticPagesPlugin::callbackHandleContent, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] LoadHandler calls UsageStatsPlugin::callbackLoadHandler, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] LoadHandler calls SushiLiteGenericPlugin::setupPublicHandler, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP Warning:  Declaration of SubmissionKeywordEntryDAO::getByControlledVocabId($controlledVocabId, $rangeInfo = NULL) should be compatible with ControlledVocabEntryDAO::getByControlledVocabId($controlledVocabId, $rangeInfo = NULL, $filter = NULL) in ./lib/pkp/classes/submission/SubmissionKeywordEntryDAO.inc.php on line 20, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP Stack trace:, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   1. {main}() ./index.php:0, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   2. Application->execute() ./index.php:68, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   3. Dispatcher->dispatch() ./lib/pkp/classes/core/PKPApplication.inc.php:252, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   4. PageRouter->route() ./lib/pkp/classes/core/Dispatcher.inc.php:134, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   5. PageRouter->_authorizeInitializeAndCallRequest() ./lib/pkp/classes/core/PKPPageRouter.inc.php:231, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   6. ArticleHandler->view() ./lib/pkp/classes/core/PKPRouter.inc.php:390, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   7. SubmissionKeywordDAO->getKeywords() ./pages/article/ArticleHandler.inc.php:174, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   8. DAORegistry::getDAO() ./lib/pkp/classes/submission/SubmissionKeywordDAO.inc.php:53, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   9. instantiate() ./lib/pkp/classes/db/DAORegistry.inc.php:68, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP  10. import() ./lib/pkp/includes/functions.inc.php:203, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP  11. require_once() ./lib/pkp/includes/functions.inc.php:25, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] ArticleHandler::view calls DublinCoreMetaPlugin::articleView, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] ArticleHandler::view calls GoogleScholarPlugin::articleView, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateManager::display calls WebFeedPlugin::callbackAddLinks, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateManager::display calls TinyMCEPlugin::registerJS, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateManager::display calls UsageEventPlugin::getUsageEvent, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] UsageEventPlugin::getUsageEvent calls UsageStatsPlugin::logUsageEvent, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] Templates::Article::Main calls UsageStatsPlugin::displayReaderArticleGraph, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] Templates::Article::Main calls PlumAnalyticsPlugin::insertWidget, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] Templates::Article::Details calls PlumAnalyticsPlugin::insertWidget, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] Templates::Article::Footer::PageFooter calls RecommendByAuthorPlugin::callbackTemplateArticlePageFooter, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP Warning:  Use of undefined constant STATISTICS_DIMENSION_ARTICLE_ID - assumed 'STATISTICS_DIMENSION_ARTICLE_ID' (this will throw an Error in a future version of PHP) in ./plugins/generic/recommendByAuthor/RecommendByAuthorPlugin.inc.php on line 90, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP Stack trace:, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   1. {main}() ./index.php:0, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   2. Application->execute() ./index.php:68, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   3. Dispatcher->dispatch() ./lib/pkp/classes/core/PKPApplication.inc.php:252, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   4. PageRouter->route() ./lib/pkp/classes/core/Dispatcher.inc.php:134, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   5. PageRouter->_authorizeInitializeAndCallRequest() ./lib/pkp/classes/core/PKPPageRouter.inc.php:231, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   6. ArticleHandler->view() ./lib/pkp/classes/core/PKPRouter.inc.php:390, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   7. TemplateManager->display() ./pages/article/ArticleHandler.inc.php:209, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   8. TemplateManager->display() ./lib/pkp/classes/template/PKPTemplateManager.inc.php:843, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP   9. TemplateManager->_execute() ./lib/pkp/lib/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:134, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP  10. Smarty_Internal_Template->render() ./lib/pkp/lib/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP  11. Smarty_Template_Compiled->render() ./lib/pkp/lib/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP  12. Smarty_Template_Compiled->getRenderedTemplateCode() ./lib/pkp/lib/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP  13. content_5dade07c87d411_18472605() ./lib/pkp/lib/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP  14. TemplateManager->smartyCallHook() ./cache/t_compile/a4fc84a2d9d2a85c011fcc528f09577e88e2fcff^1c372c95cd85572e0fbc9a53d0323a0b229cfc78_0.app.frontendpagesarticle.tpl.php:43, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP  15. HookRegistry::call() ./lib/pkp/classes/template/PKPTemplateManager.inc.php:1116, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP  16. RecommendByAuthorPlugin->callbackTemplateArticlePageFooter() ./lib/pkp/classes/plugins/HookRegistry.inc.php:108, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PHP Warning:  Use of undefined constant STATISTICS_DIMENSION_ARTICLE_ID - assumed 'STATISTICS_DIMENSION_ARTICLE_ID' (this will throw an Error in a future version of PHP) in ./plugins/generic/recommendByAuthor/RecommendByAuthorPlugin.inc.php on line 93, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] Templates::Article::Footer::PageFooter calls PlumAnalyticsPlugin::insertWidget, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] Templates::Common::Sidebar calls LanguageToggleBlockPlugin::callback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] Templates::Common::Sidebar calls WebFeedBlockPlugin::callback, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/issue/view/9
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::themeRegistered, referer http://host/article/view/151
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/article/view/151
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::initAfter, referer http://host/article/view/151
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/article/view/151
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] LoadComponentHandler calls StaticPagesPlugin::setupGridHandler, referer http://host/article/view/151
[Mon Oct 21 14:31 2019] [php7:notice] [pid 42] [client *:534] returned falsish, referer http://host/article/view/151

You will probably not be able to paste the full except of the log into this forum (due to a 32,000 character limit). If you can easily trim the output, the part that is helpful will be:

...
PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::themeRegistered
returned falsish
PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::initAfter
returned falsish
LoadHandler calls OJS\\Services\\NavigationMenuService::_callbackHandleCustomNavigationMenuItems
returned falsish
...

Or, you can post it to a temporary Gist or Google Doc and link to it.

I’m not sure that I was able to correctly cut a piece of the log, but somehow…

PHP Warning:  Declaration of PKPUsageEventPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in ***/lib/pkp/plugins/generic/usageEvent/PKPUsageEventPlugin.inc.php on line 386, referer: https://biocomm.spbu.ru/article/view/3717
PHP Warning:  Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in ***/plugins/generic/coins/CoinsPlugin.inc.php on line 131, referer: https://biocomm.spbu.ru/article/view/3717
PHP Warning:  Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in ***/plugins/generic/addThis/AddThisPlugin.inc.php on line 175, referer: https://biocomm.spbu.ru/article/view/3717
PHP Warning:  Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in ***/plugins/generic/driver/DRIVERDAO.inc.php on line 19, referer: https://biocomm.spbu.ru/article/view/3717
PHP Warning:  Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in ***/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 134, referer: https://biocomm.spbu.ru/article/view/3717
PHP Warning:  Declaration of CustomBlockPlugin::getEnabled() should be compatible with BlockPlugin::getEnabled($contextId = NULL) in ***/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 134, referer: https://biocomm.spbu.ru/article/view/3717
PHP Notice:  Only variables should be passed by reference in ***/plugins/generic/customBlockManager/CustomBlockManagerPlugin.inc.php on line 65, referer: https://biocomm.spbu.ru/article/view/3717
PHP Warning:  Declaration of OpenAIREDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in ***/plugins/generic/openAIRE/OpenAIREDAO.inc.php on line 100, referer: https://biocomm.spbu.ru/article/view/3717
PHP Notice:  Only variables should be passed by reference in ***/plugins/generic/plumAnalytics/PlumAnalyticsPlugin.inc.php on line 81, referer: https://biocomm.spbu.ru/article/view/3717
PHP Warning:  Declaration of PKPUsageEventPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in ***/lib/pkp/plugins/generic/usageEvent/PKPUsageEventPlugin.inc.php on line 386
PHP Warning:  Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in ***/plugins/generic/coins/CoinsPlugin.inc.php on line 131
PHP Warning:  Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in ***/plugins/generic/addThis/AddThisPlugin.inc.php on line 175
PHP Warning:  Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in ***/plugins/generic/driver/DRIVERDAO.inc.php on line 19
PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::themeRegistered
returned falsish
PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::initAfter
returned falsish
PHP Warning:  Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in ***/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 134
PHP Warning:  Declaration of CustomBlockPlugin::getEnabled() should be compatible with BlockPlugin::getEnabled($contextId = NULL) in ***/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 134
PHP Notice:  Only variables should be passed by reference in ***/plugins/generic/customBlockManager/CustomBlockManagerPlugin.inc.php on line 65
PHP Warning:  Declaration of OpenAIREDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in ***/plugins/generic/openAIRE/OpenAIREDAO.inc.php on line 100
PHP Notice:  Only variables should be passed by reference in ***/plugins/generic/plumAnalytics/PlumAnalyticsPlugin.inc.php on line 81
LoadHandler calls OJS\\Services\\NavigationMenuService::_callbackHandleCustomNavigationMenuItems
returned falsish
LoadHandler calls StaticPagesPlugin::callbackHandleContent
returned falsish
LoadHandler calls UsageStatsPlugin::callbackLoadHandler
returned falsish
LoadHandler calls OrcidProfilePlugin::setupCallbackHandler
returned falsish
LoadHandler calls AcronPlugin::callbackLoadHandler
returned falsish
LoadHandler calls CitationStyleLanguagePlugin::setPageHandler
returned falsish
PHP Warning:  Declaration of ArticleHandler::initialize($request, $args) should be compatible with PKPHandler::initialize($request) in ***/pages/article/ArticleHandler.inc.php on line 395
PHP Warning:  Declaration of SubmissionFileDAO::fromRow($row) should be compatible with PKPSubmissionFileDAO::fromRow($row, $fileImplementation) in ***/classes/article/SubmissionFileDAO.inc.php on line 23
PHP Warning:  Declaration of SubmissionKeywordEntryDAO::getByControlledVocabId($controlledVocabId, $rangeInfo = NULL) should be compatible with ControlledVocabEntryDAO::getByControlledVocabId($controlledVocabId, $rangeInfo = NULL, $filter = NULL) in ***/lib/pkp/classes/submission/SubmissionKeywordEntryDAO.inc.php on line 20
ArticleHandler::view calls DublinCoreMetaPlugin::articleView
returned falsish
ArticleHandler::view calls GoogleScholarPlugin::articleView
returned falsish
ArticleHandler::view calls CitationStyleLanguagePlugin::getArticleTemplateData
CitationStyleLanguage::citation calls DOIPubIdPlugin::getCitationData
returned falsish
returned falsish
TemplateManager::display calls GoogleAnalyticsPlugin::registerScript
returned falsish
TemplateManager::display calls TinyMCEPlugin::registerJS
returned falsish
TemplateManager::display calls UsageEventPlugin::getUsageEvent
UsageEventPlugin::getUsageEvent calls UsageStatsPlugin::logUsageEvent
returned falsish
returned falsish
TemplateManager::display calls WebFeedPlugin::callbackAddLinks
returned falsish
TemplateManager::display calls OrcidProfilePlugin::handleTemplateDisplay
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
returned falsish
Templates::Article::Main calls UsageStatsPlugin::displayReaderArticleGraph
returned falsish
Templates::Article::Main calls PlumAnalyticsPlugin::insertWidget
returned falsish
Templates::Article::Details calls AddThisPlugin::callbackSharingDisplay
TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates
returned falsish
returned falsish
Templates::Article::Details calls PlumAnalyticsPlugin::insertWidget
returned falsish
Templates::Article::Footer::PageFooter calls RecommendByAuthorPlugin::callbackTemplateArticlePageFooter
PHP Warning:  Declaration of PKPUsageEventPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in ***/lib/pkp/plugins/generic/usageEvent/PKPUsageEventPlugin.inc.php on line 386, referer: https://biocomm.spbu.ru/article/view/3717
PHP Warning:  Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in ***/plugins/generic/coins/CoinsPlugin.inc.php on line 131, referer: https://biocomm.spbu.ru/article/view/3717
PHP Warning:  Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in ***/plugins/generic/addThis/AddThisPlugin.inc.php on line 175, referer: https://biocomm.spbu.ru/article/view/3717
PHP Warning:  Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in ***/plugins/generic/driver/DRIVERDAO.inc.php on line 19, referer: https://biocomm.spbu.ru/article/view/3717
PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::themeRegistered, referer: https://biocomm.spbu.ru/article/view/3717
returned falsish, referer: https://biocomm.spbu.ru/article/view/3717
PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::initAfter, referer: https://biocomm.spbu.ru/article/view/3717
returned falsish, referer: https://biocomm.spbu.ru/article/view/3717
PHP Warning:  Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in ***/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 134, referer: https://biocomm.spbu.ru/article/view/3717
PHP Warning:  Declaration of CustomBlockPlugin::getEnabled() should be compatible with BlockPlugin::getEnabled($contextId = NULL) in ***/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 134, referer: https://biocomm.spbu.ru/article/view/3717
PHP Notice:  Only variables should be passed by reference in ***/plugins/generic/customBlockManager/CustomBlockManagerPlugin.inc.php on line 65, referer: https://biocomm.spbu.ru/article/view/3717
PHP Warning:  Declaration of OpenAIREDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in ***/plugins/generic/openAIRE/OpenAIREDAO.inc.php on line 100, referer: https://biocomm.spbu.ru/article/view/3717
PHP Notice:  Only variables should be passed by reference in ***/plugins/generic/plumAnalytics/PlumAnalyticsPlugin.inc.php on line 81, referer: https://biocomm.spbu.ru/article/view/3717
LoadComponentHandler calls StaticPagesPlugin::setupGridHandler, referer: https://biocomm.spbu.ru/article/view/3717
returned falsish, referer: https://biocomm.spbu.ru/article/view/3717
LoadComponentHandler calls CustomBlockManagerPlugin::setupGridHandler, referer: https://biocomm.spbu.ru/article/view/3717
returned falsish, referer: https://biocomm.spbu.ru/article/view/3717
LoadComponentHandler calls AddThisPlugin::setupGridHandler, referer: https://biocomm.spbu.ru/article/view/3717
returned falsish, referer: https://biocomm.spbu.ru/article/view/3717
LoadComponentHandler calls TranslatorPlugin::setupComponentHandlers, referer: https://biocomm.spbu.ru/article/view/3717
returned falsish, referer: https://biocomm.spbu.ru/article/view/3717
returned falsish
Templates::Article::Footer::PageFooter calls PlumAnalyticsPlugin::insertWidget
returned falsish
Templates::Common::Sidebar calls InformationBlockPlugin::callback
TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates
returned falsish
returned falsish
Templates::Common::Sidebar calls SubscriptionBlockPlugin::callback
returned falsish
Templates::Common::Sidebar calls WebFeedBlockPlugin::callback
TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates
returned falsish
returned falsish
Templates::Common::Footer::PageFooter calls CoinsPlugin::insertFooter
returned falsish

Can you share the raw, unmodified log near this snippet? I’m curious about the ā€œreturned falsishā€ line just before the PlumAnalyticsPlugin line for Templates::Article::Footer::PageFooter. It is odd to see what seems to be two returns in a row.

Here is a complete error log from one visit to the article with widget problem. I just replaced IP address and path on the hosting with ***.

[error] [client ***] PHP Warning:  Declaration of PKPUsageEventPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in ***/lib/pkp/plugins/generic/usageEvent/PKPUsageEventPlugin.inc.php on line 386
[error] [client ***] PHP Warning:  Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in ***/plugins/generic/coins/CoinsPlugin.inc.php on line 131
[error] [client ***] PHP Warning:  Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in ***/plugins/generic/addThis/AddThisPlugin.inc.php on line 175
[error] [client ***] PHP Warning:  Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in ***/plugins/generic/driver/DRIVERDAO.inc.php on line 19
[error] [client ***] PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::themeRegistered
[error] [client ***] returned falsish
[error] [client ***] PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::initAfter
[error] [client ***] returned falsish
[error] [client ***] PHP Warning:  Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in ***/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 134
[error] [client ***] PHP Warning:  Declaration of CustomBlockPlugin::getEnabled() should be compatible with BlockPlugin::getEnabled($contextId = NULL) in ***/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 134
[error] [client ***] PHP Notice:  Only variables should be passed by reference in ***/plugins/generic/customBlockManager/CustomBlockManagerPlugin.inc.php on line 65
[error] [client ***] PHP Warning:  Declaration of OpenAIREDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in ***/plugins/generic/openAIRE/OpenAIREDAO.inc.php on line 100
[error] [client ***] PHP Notice:  Only variables should be passed by reference in ***/plugins/generic/plumAnalytics/PlumAnalyticsPlugin.inc.php on line 81
[error] [client ***] LoadHandler calls OJS\\Services\\NavigationMenuService::_callbackHandleCustomNavigationMenuItems
[error] [client ***] returned falsish
[error] [client ***] LoadHandler calls StaticPagesPlugin::callbackHandleContent
[error] [client ***] returned falsish
[error] [client ***] LoadHandler calls UsageStatsPlugin::callbackLoadHandler
[error] [client ***] returned falsish
[error] [client ***] LoadHandler calls OrcidProfilePlugin::setupCallbackHandler
[error] [client ***] returned falsish
[error] [client ***] LoadHandler calls AcronPlugin::callbackLoadHandler
[error] [client ***] returned falsish
[error] [client ***] LoadHandler calls CitationStyleLanguagePlugin::setPageHandler
[error] [client ***] returned falsish
[error] [client ***] PHP Warning:  Declaration of ArticleHandler::initialize($request, $args) should be compatible with PKPHandler::initialize($request) in ***/pages/article/ArticleHandler.inc.php on line 395
[error] [client ***] PHP Warning:  Declaration of SubmissionFileDAO::fromRow($row) should be compatible with PKPSubmissionFileDAO::fromRow($row, $fileImplementation) in ***/classes/article/SubmissionFileDAO.inc.php on line 23
[error] [client ***] PHP Warning:  Declaration of SubmissionKeywordEntryDAO::getByControlledVocabId($controlledVocabId, $rangeInfo = NULL) should be compatible with ControlledVocabEntryDAO::getByControlledVocabId($controlledVocabId, $rangeInfo = NULL, $filter = NULL) in ***/lib/pkp/classes/submission/SubmissionKeywordEntryDAO.inc.php on line 20
[error] [client ***] ArticleHandler::view calls DublinCoreMetaPlugin::articleView
[error] [client ***] returned falsish
[error] [client ***] ArticleHandler::view calls GoogleScholarPlugin::articleView
[error] [client ***] returned falsish
[error] [client ***] ArticleHandler::view calls CitationStyleLanguagePlugin::getArticleTemplateData
[error] [client ***] CitationStyleLanguage::citation calls DOIPubIdPlugin::getCitationData
[error] [client ***] returned falsish
[error] [client ***] returned falsish
[error] [client ***] TemplateManager::display calls GoogleAnalyticsPlugin::registerScript
[error] [client ***] returned falsish
[error] [client ***] TemplateManager::display calls TinyMCEPlugin::registerJS
[error] [client ***] returned falsish
[error] [client ***] TemplateManager::display calls UsageEventPlugin::getUsageEvent
[error] [client ***] UsageEventPlugin::getUsageEvent calls UsageStatsPlugin::logUsageEvent
[error] [client ***] returned falsish
[error] [client ***] returned falsish
[error] [client ***] TemplateManager::display calls WebFeedPlugin::callbackAddLinks
[error] [client ***] returned falsish
[error] [client ***] TemplateManager::display calls OrcidProfilePlugin::handleTemplateDisplay
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Main calls UsageStatsPlugin::displayReaderArticleGraph
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Main calls PlumAnalyticsPlugin::insertWidget
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Details calls AddThisPlugin::callbackSharingDisplay
[error] [client ***] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates
[error] [client ***] returned falsish
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Details calls PlumAnalyticsPlugin::insertWidget
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Footer::PageFooter calls RecommendByAuthorPlugin::callbackTemplateArticlePageFooter
[error] [client ***] PHP Warning:  Declaration of PKPUsageEventPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in ***/lib/pkp/plugins/generic/usageEvent/PKPUsageEventPlugin.inc.php on line 386, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] PHP Warning:  Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in ***/plugins/generic/coins/CoinsPlugin.inc.php on line 131, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] PHP Warning:  Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in ***/plugins/generic/addThis/AddThisPlugin.inc.php on line 175, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] PHP Warning:  Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in ***/plugins/generic/driver/DRIVERDAO.inc.php on line 19, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::themeRegistered, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] returned falsish, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::initAfter, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] returned falsish, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] PHP Warning:  Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in ***/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 134, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] PHP Warning:  Declaration of CustomBlockPlugin::getEnabled() should be compatible with BlockPlugin::getEnabled($contextId = NULL) in ***/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 134, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] PHP Notice:  Only variables should be passed by reference in ***/plugins/generic/customBlockManager/CustomBlockManagerPlugin.inc.php on line 65, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] PHP Warning:  Declaration of OpenAIREDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in ***/plugins/generic/openAIRE/OpenAIREDAO.inc.php on line 100, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] PHP Notice:  Only variables should be passed by reference in ***/plugins/generic/plumAnalytics/PlumAnalyticsPlugin.inc.php on line 81, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] LoadComponentHandler calls StaticPagesPlugin::setupGridHandler, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] returned falsish, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] LoadComponentHandler calls CustomBlockManagerPlugin::setupGridHandler, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] returned falsish, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] LoadComponentHandler calls AddThisPlugin::setupGridHandler, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] returned falsish, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] LoadComponentHandler calls TranslatorPlugin::setupComponentHandlers, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] returned falsish, referer: https://biocomm.spbu.ru/article/view/3717
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Footer::PageFooter calls PlumAnalyticsPlugin::insertWidget
[error] [client ***] returned falsish
[error] [client ***] Templates::Common::Sidebar calls InformationBlockPlugin::callback
[error] [client ***] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates
[error] [client ***] returned falsish
[error] [client ***] returned falsish
[error] [client ***] Templates::Common::Sidebar calls SubscriptionBlockPlugin::callback
[error] [client ***] returned falsish
[error] [client ***] Templates::Common::Sidebar calls WebFeedBlockPlugin::callback
[error] [client ***] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates
[error] [client ***] returned falsish
[error] [client ***] returned falsish
[error] [client ***] Templates::Common::Footer::PageFooter calls CoinsPlugin::insertFooter
[error] [client ***] returned falsish

I’m not sure why there are sometimes second ā€œreturned falsishā€ lines, but the correct call seems to be occurring:

[error] [client ***] Templates::Article::Footer::PageFooter calls PlumAnalyticsPlugin::insertWidget
[error] [client ***] returned falsish

Can you modify plugins/generic/plumAnalytics/PlumAnalyticsPlugin.inc.php to spit out some more information? (We should be able to remove the changes to HookRegistry.inc.php).

diff --git a/PlumAnalyticsPlugin.inc.php b/PlumAnalyticsPlugin.inc.php
index 9fefb0c..7dca775 100644
--- a/PlumAnalyticsPlugin.inc.php
+++ b/PlumAnalyticsPlugin.inc.php
@@ -134,22 +134,29 @@ class PlumAnalyticsPlugin extends GenericPlugin {
         * @return boolean
         */
        function insertWidget($hookName, $params) {
+               error_log('Called insertWidget from '.$hookName);
                $output =& $params[2];
+               error_log('$output is '.strlen($output).' bytes');
                $templateMgr = TemplateManager::getManager();

                $request = $this->getRequest();
                $context = $request->getContext();
                $doi = $this->getSubmissionDOI($templateMgr, $context->getId(), $hookName);
+               error_log('DOI is '.$doi);
                if ($doi) {
                        if ($hookName == 'Templates::Article::Footer::PageFooter') {
                                if (method_exists($this, 'getTemplateResource')) {
+                                       error_log('getTemplateResource is available');
                                        // OJS 3.1.2+
                                        $target = $this->getTemplateResource('pageTagPlumScript.tpl');
                                } else {
+                                       error_log('fallback to getTemplatePath');
                                        // before OJS 3.1.2
                                        $target = $this->getTemplatePath() . 'pageTagPlumScript.tpl';
                                }
+                               error_log('$target is '.var_export($target, true));
                                $output .= $templateMgr->fetch($target);
+                               error_log('$output is now '.strlen($output).' bytes');
                        }
                        if ($this->availableHooks[$this->getSetting($context->getId(), 'hook')] == $hookName) {
                                $this->setupTemplateManager($context->getId(), $doi, $templateMgr);
@@ -161,6 +168,7 @@ class PlumAnalyticsPlugin extends GenericPlugin {
                                        $target = $this->getTemplatePath() . 'pageTagPlumWidget.tpl';
                                }
                                $output .= $templateMgr->fetch($target);
+                               error_log('$output is now '.strlen($output).' bytes');
                        }
                }
                return false;

This adds error_log statements near each of the interesting lines in this function.

Well, here is the result after PlumAnalyticsPlugin.inc.php modification:

[error] [client ***] PHP Warning:  Declaration of PKPUsageEventPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in ***/lib/pkp/plugins/generic/usageEvent/PKPUsageEventPlugin.inc.php on line 386
[error] [client ***] PHP Warning:  Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in ***/plugins/generic/coins/CoinsPlugin.inc.php on line 131
[error] [client ***] PHP Warning:  Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in ***/plugins/generic/addThis/AddThisPlugin.inc.php on line 175
[error] [client ***] PHP Warning:  Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in ***/plugins/generic/driver/DRIVERDAO.inc.php on line 19
[error] [client ***] PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::themeRegistered
[error] [client ***] returned falsish
[error] [client ***] PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::initAfter
[error] [client ***] returned falsish
[error] [client ***] PHP Warning:  Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in ***/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 134
[error] [client ***] PHP Warning:  Declaration of CustomBlockPlugin::getEnabled() should be compatible with BlockPlugin::getEnabled($contextId = NULL) in ***/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 134
[error] [client ***] PHP Notice:  Only variables should be passed by reference in ***/plugins/generic/customBlockManager/CustomBlockManagerPlugin.inc.php on line 65
[error] [client ***] PHP Warning:  Declaration of OpenAIREDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in ***/plugins/generic/openAIRE/OpenAIREDAO.inc.php on line 100
[error] [client ***] PHP Notice:  Only variables should be passed by reference in ***/plugins/generic/plumAnalytics/PlumAnalyticsPlugin.inc.php on line 81
[error] [client ***] LoadHandler calls OJS\\Services\\NavigationMenuService::_callbackHandleCustomNavigationMenuItems
[error] [client ***] returned falsish
[error] [client ***] LoadHandler calls StaticPagesPlugin::callbackHandleContent
[error] [client ***] returned falsish
[error] [client ***] LoadHandler calls UsageStatsPlugin::callbackLoadHandler
[error] [client ***] returned falsish
[error] [client ***] LoadHandler calls OrcidProfilePlugin::setupCallbackHandler
[error] [client ***] returned falsish
[error] [client ***] LoadHandler calls AcronPlugin::callbackLoadHandler
[error] [client ***] returned falsish
[error] [client ***] LoadHandler calls CitationStyleLanguagePlugin::setPageHandler
[error] [client ***] returned falsish
[error] [client ***] PHP Warning:  Declaration of ArticleHandler::initialize($request, $args) should be compatible with PKPHandler::initialize($request) in ***/pages/article/ArticleHandler.inc.php on line 395
[error] [client ***] PHP Warning:  Declaration of SubmissionFileDAO::fromRow($row) should be compatible with PKPSubmissionFileDAO::fromRow($row, $fileImplementation) in ***/classes/article/SubmissionFileDAO.inc.php on line 23
[error] [client ***] PHP Warning:  Declaration of SubmissionKeywordEntryDAO::getByControlledVocabId($controlledVocabId, $rangeInfo = NULL) should be compatible with ControlledVocabEntryDAO::getByControlledVocabId($controlledVocabId, $rangeInfo = NULL, $filter = NULL) in ***/lib/pkp/classes/submission/SubmissionKeywordEntryDAO.inc.php on line 20
[error] [client ***] ArticleHandler::view calls DublinCoreMetaPlugin::articleView
[error] [client ***] returned falsish
[error] [client ***] ArticleHandler::view calls GoogleScholarPlugin::articleView
[error] [client ***] returned falsish
[error] [client ***] ArticleHandler::view calls CitationStyleLanguagePlugin::getArticleTemplateData
[error] [client ***] CitationStyleLanguage::citation calls DOIPubIdPlugin::getCitationData
[error] [client ***] returned falsish
[error] [client ***] returned falsish
[error] [client ***] TemplateManager::display calls GoogleAnalyticsPlugin::registerScript
[error] [client ***] returned falsish
[error] [client ***] TemplateManager::display calls TinyMCEPlugin::registerJS
[error] [client ***] returned falsish
[error] [client ***] TemplateManager::display calls UsageEventPlugin::getUsageEvent
[error] [client ***] UsageEventPlugin::getUsageEvent calls UsageStatsPlugin::logUsageEvent
[error] [client ***] returned falsish
[error] [client ***] returned falsish
[error] [client ***] TemplateManager::display calls WebFeedPlugin::callbackAddLinks
[error] [client ***] returned falsish
[error] [client ***] TemplateManager::display calls OrcidProfilePlugin::handleTemplateDisplay
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Main calls UsageStatsPlugin::displayReaderArticleGraph
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Main calls PlumAnalyticsPlugin::insertWidget
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Details calls AddThisPlugin::callbackSharingDisplay
[error] [client ***] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates
[error] [client ***] returned falsish
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Details calls PlumAnalyticsPlugin::insertWidget
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Footer::PageFooter calls RecommendByAuthorPlugin::callbackTemplateArticlePageFooter
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Footer::PageFooter calls PlumAnalyticsPlugin::insertWidget
[error] [client ***] returned falsish
[error] [client ***] Templates::Common::Sidebar calls InformationBlockPlugin::callback
[error] [client ***] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates
[error] [client ***] returned falsish
[error] [client ***] returned falsish
[error] [client ***] Templates::Common::Sidebar calls SubscriptionBlockPlugin::callback
[error] [client ***] returned falsish
[error] [client ***] Templates::Common::Sidebar calls WebFeedBlockPlugin::callback
[error] [client ***] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates
[error] [client ***] returned falsish
[error] [client ***] returned falsish
[error] [client ***] Templates::Common::Footer::PageFooter calls CoinsPlugin::insertFooter
[error] [client ***] returned falsish

And this is the result of opening the article page where the widget is displayed absolutely normal:

[error] [client ***] PHP Warning:  Declaration of PKPUsageEventPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in ***/lib/pkp/plugins/generic/usageEvent/PKPUsageEventPlugin.inc.php on line 386
[error] [client ***] PHP Warning:  Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in ***/plugins/generic/coins/CoinsPlugin.inc.php on line 131
[error] [client ***] PHP Warning:  Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in ***/plugins/generic/addThis/AddThisPlugin.inc.php on line 175
[error] [client ***] PHP Warning:  Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in ***/plugins/generic/driver/DRIVERDAO.inc.php on line 19
[error] [client ***] PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::themeRegistered
[error] [client ***] returned falsish
[error] [client ***] PluginRegistry::categoryLoaded::themes calls DefaultManuscriptChildThemePlugin::initAfter
[error] [client ***] returned falsish
[error] [client ***] PHP Warning:  Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in ***/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 134
[error] [client ***] PHP Warning:  Declaration of CustomBlockPlugin::getEnabled() should be compatible with BlockPlugin::getEnabled($contextId = NULL) in ***/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 134
[error] [client ***] PHP Notice:  Only variables should be passed by reference in ***/plugins/generic/customBlockManager/CustomBlockManagerPlugin.inc.php on line 65
[error] [client ***] PHP Warning:  Declaration of OpenAIREDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in ***/plugins/generic/openAIRE/OpenAIREDAO.inc.php on line 100
[error] [client ***] PHP Notice:  Only variables should be passed by reference in ***/plugins/generic/plumAnalytics/PlumAnalyticsPlugin.inc.php on line 81
[error] [client ***] LoadHandler calls OJS\\Services\\NavigationMenuService::_callbackHandleCustomNavigationMenuItems
[error] [client ***] returned falsish
[error] [client ***] LoadHandler calls StaticPagesPlugin::callbackHandleContent
[error] [client ***] returned falsish
[error] [client ***] LoadHandler calls UsageStatsPlugin::callbackLoadHandler
[error] [client ***] returned falsish
[error] [client ***] LoadHandler calls OrcidProfilePlugin::setupCallbackHandler
[error] [client ***] returned falsish
[error] [client ***] LoadHandler calls AcronPlugin::callbackLoadHandler
[error] [client ***] returned falsish
[error] [client ***] LoadHandler calls CitationStyleLanguagePlugin::setPageHandler
[error] [client ***] returned falsish
[error] [client ***] PHP Warning:  Declaration of ArticleHandler::initialize($request, $args) should be compatible with PKPHandler::initialize($request) in ***/pages/article/ArticleHandler.inc.php on line 395
[error] [client ***] PHP Warning:  Declaration of SubmissionFileDAO::fromRow($row) should be compatible with PKPSubmissionFileDAO::fromRow($row, $fileImplementation) in ***/classes/article/SubmissionFileDAO.inc.php on line 23
[error] [client ***] PHP Warning:  Declaration of SubmissionKeywordEntryDAO::getByControlledVocabId($controlledVocabId, $rangeInfo = NULL) should be compatible with ControlledVocabEntryDAO::getByControlledVocabId($controlledVocabId, $rangeInfo = NULL, $filter = NULL) in ***/lib/pkp/classes/submission/SubmissionKeywordEntryDAO.inc.php on line 20
[error] [client ***] ArticleHandler::view calls DublinCoreMetaPlugin::articleView
[error] [client ***] returned falsish
[error] [client ***] ArticleHandler::view calls GoogleScholarPlugin::articleView
[error] [client ***] returned falsish
[error] [client ***] ArticleHandler::view calls CitationStyleLanguagePlugin::getArticleTemplateData
[error] [client ***] CitationStyleLanguage::citation calls DOIPubIdPlugin::getCitationData
[error] [client ***] returned falsish
[error] [client ***] returned falsish
[error] [client ***] TemplateManager::display calls GoogleAnalyticsPlugin::registerScript
[error] [client ***] returned falsish
[error] [client ***] TemplateManager::display calls TinyMCEPlugin::registerJS
[error] [client ***] returned falsish
[error] [client ***] TemplateManager::display calls UsageEventPlugin::getUsageEvent
[error] [client ***] UsageEventPlugin::getUsageEvent calls UsageStatsPlugin::logUsageEvent
[error] [client ***] returned falsish
[error] [client ***] returned falsish
[error] [client ***] TemplateManager::display calls WebFeedPlugin::callbackAddLinks
[error] [client ***] returned falsish
[error] [client ***] TemplateManager::display calls OrcidProfilePlugin::handleTemplateDisplay
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] NavigationMenus::displaySettings calls OJS\\Services\\NavigationMenuService::getDisplayStatusCallback
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Main calls UsageStatsPlugin::displayReaderArticleGraph
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Main calls PlumAnalyticsPlugin::insertWidget
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Details calls AddThisPlugin::callbackSharingDisplay
[error] [client ***] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates
[error] [client ***] returned falsish
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Details calls PlumAnalyticsPlugin::insertWidget
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Footer::PageFooter calls RecommendByAuthorPlugin::callbackTemplateArticlePageFooter
[error] [client ***] returned falsish
[error] [client ***] Templates::Article::Footer::PageFooter calls PlumAnalyticsPlugin::insertWidget
[error] [client ***] returned falsish
[error] [client ***] Templates::Common::Sidebar calls InformationBlockPlugin::callback
[error] [client ***] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates
[error] [client ***] returned falsish
[error] [client ***] returned falsish
[error] [client ***] Templates::Common::Sidebar calls SubscriptionBlockPlugin::callback
[error] [client ***] returned falsish
[error] [client ***] Templates::Common::Sidebar calls WebFeedBlockPlugin::callback
[error] [client ***] TemplateResource::getFilename calls DefaultManuscriptChildThemePlugin::_overridePluginTemplates
[error] [client ***] returned falsish
[error] [client ***] returned falsish
[error] [client ***] Templates::Common::Footer::PageFooter calls CoinsPlugin::insertFooter
[error] [client ***] returned falsish