Hello Henning,
Error comes from the plugin.
/** Loads the settings.xml file if it has not already been loaded. Creates it if it doesn't exist. */ bool readSettingsFile() { DWORD lastErr; tXmlError xmlErr; LPCWSTR settingsFile; if (!_xmlDocument) { settingsFile = sys_getSettingsFile(); if (!pth::fileExists(settingsFile)) { pth::createFileIfMissing(settingsFile, INITIAL_CONTENTS); _isDirty = true; } _xmlDocument = new tinyxml2::XMLDocument(); xmlErr = _xmlDocument->LoadFile(settingsFile); if (xmlErr != kXmlSuccess) { lastErr = ::GetLastError(); msg::error(lastErr, L"%s: Error %u loading the settings file.", _W(__FUNCTION__), xmlErr); return false; } } return true; }Seems that plugin can’t find settings.xml file.
Do you know whether the author of sessionmanager is active in this board ?
No, I don’t know.
Cheers
Claudia