If I run phpize -v
then I get
Configuring for:
PHP Api Version: 20170718
Zend Module Api No: 20170718
Zend Extension Api No: 320170718
If I open phpinfo then it shows a newer date
so my phpize is outdated.
This is the output of php -v
:
PHP 7.4.21 (cli) (built: Jul 1 2021 16:09:41) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
with Zend OPcache v7.4.21, Copyright (c), by Zend Technologies
If I create a php info page and show it, then it shows PHP Version 7.4.21 too
How can I get phpize for php 7.4 ?
cli
is a different version than what you have running under your web server. You should be able to find the correct version ofphpize
was installed with the different version of PHP, but you have not described how PHP was installed so I am unable to point you to where it would be. – GracefulRestart Sep 01 '21 at 16:25php -v
then I getPHP 7.4.21
, if I open a phpinfo site then I getPHP 7.4.21
too, see my updated question please. – Black Sep 02 '21 at 08:48