I am very pleased. I have loaded OpenEMR on a Synology DS241+ NAS. I am completely new to server technology. It has been a journey because DSM is not Umpuntu or a typical Linux but it is similar. Things fall in slightly different places so there needed to be some changes in where some lines were pointing. And now it is running–almost.
I am able to use phpMyAdmin from the DSM console, openemr file structure is there, and it integrates with OpenEMR but not within OpenEMR through the Database button. When I hit that button I get:
phpMyAdmin - Error
Wrong permissions on configuration file, should not be world writable!
and
chmod o-w /volume1/web/phpMyAdmin/config.inc.php
all did not work
I have checked that the permissions are accurate with ls -l and it appears to be. I have tried turning off phpMyAdmin and starting in between each change and no effect.
I am wondering if the problem is in Config.class.php
Around here:
* verifies the permissions on config file (if asked by configuration)
* (must be called after config.inc.php has been merged)
*
* @return void
*/
function checkPermissions()
{
// Check for permissions (on platforms that support it):
if ($this->get('CheckConfigurationPermissions')) {
$perms = @fileperms($this->getSource());
if (!($perms === false) && ($perms & 2)) {
// This check is normally done after loading configuration
$this->checkWebServerOs();
if ($this->get('PMA_IS_WINDOWS') == 0) {
$this->source_mtime = 0;
PMA_fatalError(
__(
'Wrong permissions on configuration file, '
. 'should not be world writable!'
)
);
}
}
}
}