I am trying to download the ioncube bootloader via the php-fpm.conf file.
I know that you are probably wondering why I did not use php.ini, but it is a bit complicated, and you can see more reasons why here ( Is there every PHP-FPM Worker individually loads php.ini? ).
In any case, I load my other extensions from this file (php-fpm.conf) using the following directive in php-fpm.conf:
php_admin_value[extension]=<extension_name>.so
So, for example, php_admin_value[extension]=apc.so loads APC from extension_dir (which is defined in my php.ini). It works fine and solves several problems that I encountered when defining extensions through php.ini.
However, using the zend_extension directive does not work. So the following does not work
php_admin_value[zend_extension]=/usr/lib/php5/20090626/ioncube_loader_lin_5.3.so
Is there something I am missing? I would appreciate help.
Thanks in advance.
source share