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….
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_pathto 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.