Home > PHP Framework > Swoole > What to do if swoole installation fails

What to do if swoole installation fails

藏色散人
Release: 2019-12-14 11:09:17
Original
3407 people have browsed it

What to do if swoole installation fails

What should I do if the swoole installation fails?

Common errors

make or make install cannot be executed or compile error

NOTICE: PHP message: PHP Warning: PHP Startup: swoole: Unable to initialize module
Module compiled with module API=20090626
PHP compiled with module API=20121212
These options need to match
in Unknown on line 0
Copy after login

php version It does not correspond to phpize and php-config used during compilation, needs to use absolute paths for compilation. Use absolute paths to execute PHP.

/usr/local/php-5.4.17/bin/phpize
./configure --with-php-config=/usr/local/php-5.4.17/bin/php-config
/usr/local/php-5.4.17/bin/php server.php
Copy after login

Missing mysql header file

php_mysqli_structs.h:64:23: fatal error: my_global.h: No such file or directory
Copy after login

The header file of mysqlclient is not found, you need to install mysqlclient-dev

It is recommended to compile php by yourself, do not use Linux The php version that comes with the package management system

is missing the pcre.h header file

fatal error: pcre.h: No such file or directory
Copy after login

The reason is that pcre is missing and the libpcre

Cannot find autoconf
Copy after login

phpize command needs to be installed The autoconf tool is required, please install it first.

make install failed

make install requires root permissions. If you are not logged in as the root user, please use sudo or su and then install.

After modifying php.ini, there is no swoole in php -m or phpinfo

Please move to this document

Missing hiredis.h

Enable --enable-async-redis when compiling the configuration, but the hiredis library is not installed. Fatal error: 'hiredis/hiredis.h' file not will be reported during compilation. found, please install the hiredis library or remove the --enable-async-redis option.

error: too many arguments to function 'zend_exception_error'
Copy after login
Your PHP version is lower than PHP-5.3.10, please upgrade the PHP version.

Recommended learning:

swoole tutorial

The above is the detailed content of What to do if swoole installation fails. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template