We were facing some problems in user creation and so asked our server support team to restore the previous backup and after this was done we found that as soon as we login into OpenEMR we get following error
Failed to load module PostCalendar ( At function: “view” )
Can any body help us understand how to do a quick fix for this, or what could be the most probable reasons for this error.
The webserver user (in linux, often is “apache”, “www-data”, or “nobody”) should have write privileges on certain files and directories. The files include
openemr/sites/default/sqlconf.php.
In linux, these can be set by “chmod a+w filename”, command to grant global write permissions to the file.
In linux, if the webserver user name is “apache”, then the command “chown -R apache:apache directory_name” will grant global write permissions
to the directories.
Not sure exactly what had gone wrong. But we got this fixed by re-installing the OpenEMR site on the server by setting the $config = 0; in sites/default/sqlconf.php
After re-installation everything works well.
Thanks for your responses.