Zend Guard Loader or opCache?

Marcosi

Verified User
Joined
Apr 14, 2012
Messages
40
Location
Cyprus / Sweden
I'm updating using /usr/local/directadmin/custombuild and now I got the message:

Zend Guard Loader is not compatible with opCache. Please disable one of them.

We are running Magento e-commerce on this server and I don't know which one I need to disable, and where/how to do it. Any help appreciated!
 
Hopefully he'll write here and explain what he did; specifically they now can coexist.

Jeff
 
I wonder, why don't you ask smtalk then? He maintains CustomBuild and the both Zend Guard Loader and opCache can be installed with CB. So if it's not fixed yet, please feel free to ask him. Or is it a TOP secret :cool: ?
 
ZendGuard loader is for running encoded sites with zend.
Opcache is an opcode cacher.

So if there are no sites that are encoded with zendguard - disable Zend.
If there is a site encoded with Zend - disable opcache and if needed choose a different opcode cacher like apc, apcu, xcache etc.
Simple as that.

You may disable any of those by:
Code:
./build set zend no
OR
Code:
./build set opcache no
After that remove line with opcache or Zend from directadmin.ini file.
You may find all .ini file locations with command:
Code:
php --ini
 
Back
Top