Hi my new php scripts requires Zend Optimizer. How to install it.

LinuxTechie

Well-Known Member
Jan 22, 2011
502
14
68
cPanel Access Level
Root Administrator
Hello,

Can you run this cpanel script from SSH /scripts/installzendopt. This will install zend optimizer in the server. Between which PHP version are you using? If you are in 5.3+ , you need to install Zend Guard Loader for proper working of scripts.
 

JaredR.

Well-Known Member
Feb 25, 2010
1,834
27
143
Houston, TX
cPanel Access Level
Root Administrator
You can install several PHP extensions using /scripts/phpextensionmgr:

Code:
# /scripts/phpextensionmgr list
Available Extensions:
EAccelerator
IonCubeLoader
Zendopt
SourceGuardian
PHPSuHosin
All of the extensions above can also be installed using EasyApache, but using /scripts/phpextensionmgr takes much less time and reduces the risk of something going wrong while rebuilding Apache and PHP. The usage information is as follows:

Code:
# /scripts/phpextensionmgr --help
Invalid action specified
Usage:
    phpextensionmgr [options] [action] [extension]

        Options:
          --help       Help message
          --prefix     Installation prefix for PHP (normally /usr/local or /usr/local/php4)

        Actions:
          install      Install or update the extension
          uninstall    Uninstall the extension
          status       Display the installation status of the extension
          list         Show available extensions
To install Zend Optimizer, us the following syntax:

Code:
# /scripts/phpextensionmgr install Zendopt