Difference between revisions of "Zend"
From OpenEMR Project Wiki
Bradymiller (talk | contribs) |
Bradymiller (talk | contribs) |
||
Line 15: | Line 15: | ||
<br> | <br> | ||
== Configuring Zend == | == Configuring Zend == | ||
This section is to document best way to configure Zend with apache. It appears following two things need to be completed: | This section is to document best way to configure Zend with apache. It appears following two things need to be completed in apache for zend stuff to work: | ||
*enable "rewrite" mod in apache | *enable "rewrite" mod in apache | ||
*allow "AllowOverride" in apache | *allow "AllowOverride" in apache | ||
Line 24: | Line 24: | ||
**Need to test above and if work, then need to place in the setup.php instructions and also set up for the ubuntu/mint/debian package. | **Need to test above and if work, then need to place in the setup.php instructions and also set up for the ubuntu/mint/debian package. | ||
<br> | <br> | ||
== TO DO == | == TO DO == | ||
* Document how to get Zend configured for all OS's. | * Document how to get Zend configured for all OS's. |
Revision as of 06:52, 1 July 2014
Overview
- On 6/28/14, code requiring the Zend library was incorporated into the OpenEMR codebase. This was brought in by ZH Healthcare for a Module feature which is a large part of the Meaningful Use 2 project.
Initial Import
On 6/28/14, imported the following commits (in chronologic order):
- 212e69 - Main Zend Module Commit.
- WhyModulesInstaller.pdf - http://sourceforge.net/p/openemr/code-review/232/attachment/WhyModulesInstaller.pdf
- ModuleInstaller-DeveloperGuide.pdf - http://sourceforge.net/p/openemr/code-review/232/attachment/ModuleInstaller-DeveloperGuide.pdf
- Refer line no.26 in zend_modules/init_autoloader.php for setting up ZF2 Library Path Settings.
- 6e36d2 - Removed a function in prior commit that is dangerous and not used.
- 4befb7 - Set correct permissions for application.config.php file
- Required changes in the installation script and ubuntu/debian scripts
- 88be3c - Zend 2 library
- This is the actual Zend 2 library. This may be only temporary as developers learn to use this and if can figure out way for end users to install as an external dependency.
Configuring Zend
This section is to document best way to configure Zend with apache. It appears following two things need to be completed in apache for zend stuff to work:
- enable "rewrite" mod in apache
- allow "AllowOverride" in apache
- There are some security considerations here(this allows use of .htaccess files). Ideally would have following set up:
- Apache's main config file would turn this off.
- Turn this on in OpenEMR directory
- Turn this off in the OpenEMR directories allow uploaded files (ie. sites/default/documents)
- Need to test above and if work, then need to place in the setup.php instructions and also set up for the ubuntu/mint/debian package.
- There are some security considerations here(this allows use of .htaccess files). Ideally would have following set up:
TO DO
- Document how to get Zend configured for all OS's.
- Discussed in this forum thread.
- Get it working correctly on the ubuntu/debian package.
Related Forum Threads