Reputation: 127
Our team is using php zend frame work for the development of websites
every time we deployed it takes lot of memory in server
using zend we developed almost 9 sites.
what my Question is it possible to place the zend frame work in server as a centralized one to all my websites
please help us....
Upvotes: 0
Views: 50
Reputation: 8519
If I understand you correctly you want to have the Zend Framework Library in one location but available to multiple applications (websites).
If this is your question: the answers is yes. Adjust your php.ini include_path
to reflect the location of the Zend Framework Library:
include_path=".;C:\Zend\ZendServer\bin\pear;C:\Zend\ZendServer\share\ZendFramework\library;"
This is a windows example but a *nix example would be very similar.
Upvotes: 2