2

我从一个星期开始就一直在尝试这个,当我尝试这个时仍然找不到答案,这个 sudo pecl install id3错误发生了

downloading id3-0.2.tgz ...
Starting to download id3-0.2.tgz (20,693 bytes)
.....done: 20,693 bytes
4 source files, building
running: phpize
Cannot find config.m4.
Make sure that you run '/usr/bin/phpize' in the top level source directory of the module

If the command failed with 'phpize: not found' then you need to install php5-dev     packageYou can do it by running 'apt-get install php5-dev' as a root userERROR: `phpize' failed

请帮忙 !!!我已经安装了 php5-dev。

4

2 回答 2

7

http://php.net/manual/en/id3.installation.php

您需要先使用以下命令下载 id3:

pecl download id3-alpha
tar -zxvf id3*.tgz
vim id3.c 

必须在第 196 行更改:function_entry id3_functions[] = {

进入

zend_function_entry id3_functions[ ] = {

phpize
./configure
make
make test
make install

然后将 id3.so 添加到您的 php.ini 文件中并重新启动 apache

于 2015-08-19T17:42:44.987 回答
3

这是一个已知问题,请参阅https://bugs.php.net/bug.php?id=58650

尝试、测试、确认的解决方法:

pear update-channels
pecl install --force id3
cd /build/buildd/php*/pear-build-download
tar -zxvf id3*.tgz
cd id3*/
phpize
./configure
make
make test
make install

id3.so扩展名添加到您的php.ini文件中:

nano /etc/php5/apache2/php.ini

像:

extension=id3.so

到该Dynamic Extensions部分。

然后,重新启动apache,以便可以加载新配置:

service apache2 restart

通过检查 apache 错误日志文件,确保一切顺利并且没有错误:

tail -25 /var/log/apache2/error.log

成功应该有类似的输出:

[notice] caught SIGTERM, shutting down
[notice] Apache/2.2.22 (Ubuntu) PHP/5.3.10-1ubuntu3.9 with Suhosin-Patch configured -- resuming normal operations
于 2014-02-19T20:05:38.407 回答