Duboux
Verified User
- Joined
- Apr 20, 2007
- Messages
- 244
btw, for people having trouble loading pages a few seconds after Apache's restart...
Comment the ZEND-lines in php.ini to turn that off..
Seems that the two don't work well together.
edit:
Unless you turn off the file-caching part in APC, then you can run Zend next to it
To do so, set apc.cache_by_default=0
(and keep the filtering part default, so no match and therewith file-caching will occur by APC)
This means you can keep Zend and use APC for string/array/script caching, which I think Zend doesn't support.
Comment the ZEND-lines in php.ini to turn that off..
Seems that the two don't work well together.
edit:
Unless you turn off the file-caching part in APC, then you can run Zend next to it

To do so, set apc.cache_by_default=0
(and keep the filtering part default, so no match and therewith file-caching will occur by APC)
This means you can keep Zend and use APC for string/array/script caching, which I think Zend doesn't support.
Last edited: