after install suPhp, Zend Optimizer not working

it show this error. But Zend previously is working fine.
 

Attachments

  • FireShot capture #006 - '' - xiaoouou_com.png
    FireShot capture #006 - '' - xiaoouou_com.png
    45.1 KB · Views: 136
check to see if its really installed by phpinfo()

Code:
<?php phpinfo(); ?>

note the php.ini path aswell.
 
In php info, it seen like Zend is installed.

I have attached the screenshot. Do you have any idea?
 

Attachments

its not installed

Mine looks like:
This program makes use of the Zend Scripting Language Engine:
Zend Engine v2.2.0, Copyright (c) 1998-2010 Zend Technologies
with the ionCube PHP Loader v3.3.14, Copyright (c) 2002-2010, by ionCube Ltd., and
with Zend Optimizer v3.3.9, Copyright (c) 1998-2009, by Zend Technologies
So, it looks like you need to manually copy the settings from the cli php.ini to the cgi php.ini
 
/usr/local/lib/php.ini (cli)
or
/usr/local/etc/php5/php.ini (cli)

and

/usr/loca/etc/php5/cgi/php.ini (cgi)

or do updatedb; locate php.ini


find [Zend] in the cli php.ini then copy everything under that to the cgi php.ini..... restart apache and everything should be ok.
 
Last edited:
Back
Top