|
I'm installing a Q&A script, and it gives me the following error during installation: > "Zend Optimizer" extension status FAILED I'm not sure if it's installed our not, But I find the following information in my phpinfo(), it says: ->This program makes use of the Zend Scripting Language Engine Is "Zend Optimizer" part of "Zend Engine"? If so, is there a path to it, so I can tell my script where to find it? If it's not installed, is there a way to install Zend Optimizer? |
|
Zend Optimizer is installed, as phpinfo states. You should not need to define its path, and as it is plugin associated with the shared apache server's PHP, its path can't be configured and should not need to be defined. Can you post the code which is failing? If not you may want to submit a support ticket so we can look directly. There's an "installer" that comes with the script. In the source code I find the following code where it seems to fail: //checking the various php extensions, required to run script Actually, Zend Optimizer is not installed according to those phpinfo() results - sorry about that. Please try creating a PHP5.2 or PHP5.3 app type and check if it's installed in it. Otherwise, you'd have to install it yourself. You can do this by building the extension in your home directory and then including it in php.ini, similar to this. |