Author |
Message |
4arter
Joined: 16 Jan 2015 Posts: 2
|
Posted: Fri Jan 16, 2015 1:20 am Post subject: Is co-existing with Zend possible |
|
|
A site has a calendar app installed >4 years ago that uses Zend encoding. A new app purchased wants to use Ioncube only. Both are competing for space in php5.ini.
Their line:
Code: | zend_extension=/home/content/a/l/b/OURSITE/html/zend/ZendOptimizer.so |
Ioncube line:
Code: | zend_extension = /home/content/a/l/b/OURSITE/html/ioncube/ioncube_loader_lin_5.2.so |
Is there a way to make both run?
Sorry, this is a classic GoDaddy shared server site, but it's what the client has. 32 bit Linux, php 5.2.17. No root access. |
|
Back to top |
|
 |
alastair
Joined: 23 Feb 2010 Posts: 407
|
Posted: Fri Jan 16, 2015 10:41 am Post subject: |
|
|
Hi,
Yes, there are many servers that have the ionCube Loader installed along with ZendOptimizer (or ZendGuardLoader as it is called from PHP 5.3 onwards).
The most important thing is that the zend_extension line for the ionCube Loader *must* come before the one for ZendOptimiser in the php5.ini file.
So the lines must be in the following order:
zend_extension = /home/content/a/l/b/OURSITE/html/ioncube/ioncube_loader_lin_5.2.so
zend_extension=/home/content/a/l/b/OURSITE/html/zend/ZendOptimizer.so
If in doubt please use either the ionCube Loader Installer (a Windows desktop application) or the ionCube Loader Wizard (a PHP script) to assist with installation. They are both available from our Loaders page at http://www.ioncube.com/loaders.php and both can create tickets in our Support Help Desk should you get stuck. _________________ Alastair
ionCube |
|
Back to top |
|
 |
4arter
Joined: 16 Jan 2015 Posts: 2
|
Posted: Fri Jan 16, 2015 11:07 am Post subject: |
|
|
Thanks for your quick reply. The first attempt a few days ago overwrote php5.ini, and the existing app stopped working. I'll manually edit and try again with Ioncube first. I'll report back in after I get results. |
|
Back to top |
|
 |
|