Topic closed:
Please note this is an old forum thread. Information in this post may be out-to-date and/or erroneous.
Every phpdocx version includes new features and improvements. Previously unsupported features may have been added to newer releases, or past issues may have been corrected.
Hi all,
For anyone having phpdocx java problems creating a PDF, due to having selinux active, try the following approach to create an exception. It worked for us, but YMMV:
# Set SELinux into permissive mode
setenforce permissive
# Run the PDF conversion, it should work, then check to see that new selinux errors have been created.
aureport -a
# Then create an exception for phpdocx
grep httpd_t /var/log/audit/audit.log | audit2allow -M phpdocx
semodule -i phpdocx.pp
# and reactivate SELinux
setenforce enforcing