After much head-scratching, I have tracked this down (I think) to the custom implementation of get_home_path() function, used in wp-admin\includes\file.php (line 84).
By switching off the SYNO customisations - commenting out the following line (82 in my installation) in wp-config.php, the plug-in now appears to be working...
- Code: Select all
define('SYNOWORDPRESS', 'Synology Inc.');
to
- Code: Select all
/* define('SYNOWORDPRESS', 'Synology Inc.'); */
... but what are the other consequences/risks of doing this? Anyone know?

