Warning: DOMDocument::save(generatedXml/ccrDebug.xml) : failed to open stream: No such file or directory in /var/www/openemr/ccr/createCCR.php on line 131
Fatal error: Class ‘XSLTProcessor’ not found in /var/www/openemr/ccr/createCCR.php on line 139
-Tony
Create the directory openemr/generatedXml to save the ccrDebug.xml file. Set the permissions of the directory writable by the webserver ( www-data or whatever the openemr instance runs as ).
Check to see if the following php modules are loaded by apache, They are needed to run the xml code:
libxml
SimpleXML
xml
xmlreader
xmlwriter
xsl
Check the php modules loaded by Apache by creating a file info.php in the base directory of your webserver (i.e. /var/www/info.php)
Check to see if the xslt modules is available.
The contents of info.php should be
<?php
phpinfo();
?>
hey,
This is because the Temporary demo doesn’t have the required php modules. We need to remember to ask Julia to add this to the list of things to do for the Temporary demo (since plan for the Temporary demo to become the primary demo at some point in the future).
-brady