Zend Guard loader

jdn1976

Verified User
Joined
Mar 30, 2020
Messages
107
Hello, I go to custombuild to build Zend Guard loader, and when I click on the green bottom Build shows the message:

  • Executing /usr/local/directadmin/plugins/custombuild/admin/build php_zend...
  • Can't open /usr/local/php56/lib/php.ini: No such file or directory.
  • Zend Guard loader is now installed for PHP 5.6.
  • Zend guard loader not supported for PHP version (7.2) set in configuration file
  • Zend guard loader not supported for PHP version (7.3) set in configuration file
  • Restarting php-fpm56.
  • Restarting php-fpm72.
  • Restarting php-fpm73.

  • Done!
what I am missing? Why is Zend is not supported on php 7.2/7.3?
I left my default php version 5.6 because I have there some clients with some old scripts.
 
It seems to only go as high as 7.2
No it goes as high as 7.3, or at least Zend engine does if that's the same:

Code:
# php -v
PHP 7.2.31 (cli) (built: May 17 2020 17:44:56) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
    with the ionCube PHP Loader + ionCube24 v10.3.9, Copyright (c) 2002-2019, by ionCube Ltd.

There is no Zen on 7.4 though.

Edit: Sorry, Zend Engine is something different. No Zend Guard loader indeed anymore. We just switched to Zend Engine.
 
Last edited:
No it goes as high as 7.3, or at least Zend engine does if that's the same:

Code:
# php -v
PHP 7.2.31 (cli) (built: May 17 2020 17:44:56) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
    with the ionCube PHP Loader + ionCube24 v10.3.9, Copyright (c) 2002-2019, by ionCube Ltd.

There is no Zen on 7.4 though.

Edit: Sorry, Zend Engine is something different. No Zend Guard loader indeed anymore. We just switched to Zend Engine.
Honestly I cant tell. in the option conf its just zend..

lets see

this doesnt say
zend - install/update Zend Optimizer using "./build zend" or "./build all". Possible values: yes/no (default: no).
 
No I am agreeing. I just don't know how we know which zend is which and what is being installed. Mostly because I don't have zend enabled.
 
Zend Guard loader is outdated and not supported on PHP 7.x :)
 
I just don't know how we know which zend is which and what is being installed.
Like smtalk said you can see what is installed.

For checking if you might forgit this, you can also see it by using the php -v command. When Zend guard loader is enabled (like possible in php 5.6) it will show "Zend guard loader" en when Zend Engine is installed (in php 7.x) you can see from my output, it will show "Zend engine".
 
I see Zend Engine is just on in version 7.x
yes just did php -v
I don't use any 5.x anymore.
 
Back
Top