Home > Article > Backend Development > How to solve problems encountered during PHP7.2.3 installation
This article mainly shares with you how to solve problems encountered during PHP7.2.3 installation. If fileinfo
is enabled during compilation and installation, the memory must be greater than 1G, and PHP is installed by default. Since I disabled --disable-fileinfo
when compiling, but if I use it in the project, I can install it directly as a module without recompiling and installing the entire PHP.
If an internal compiler error: Killed (program cc1plus)
error occurs when adding fileinfo
, it is caused by insufficient memory. Temporarily use a swap partition to solve it.
sudo dd if=/dev/zero of=/swapfile bs=64M count=16sudo mkswap /swapfilesudo swapon /swapfile#编译完后释放临时空间Code:sudo swapoff /swapfilesudo rm /swapfile
Appears during the installation project
[root@iZwz99qnmldt4n744noo9gZ biyesheji]# composer installDo not run Composer as root/super user! See https://getcomposer.org/root for details Loading composer repositories with package information Installing dependencies (including require-dev) from lock file Your requirements could not be resolved to an installable set of packages. ....
In other words, when executing exec, install, and update
, third-party libraries are allowed to execute in your system. They are "plugins" and "scripts"
in third-party libraries, and Plugins and scripts
will have corresponding user permissions to execute composer. For security reasons, avoid using superuser Or root
permissions.
The official solution is as follows (third-party scripts and plug-ins will not be allowed if you add the following parameters) <br>
composer install --no-plugins --no-scripts ... <br>
composer update --no-plugins --no-scripts ...
If enabled during compilation and installationfileinfo
The memory must be greater than 1G, PHP is installed by default
The above is the detailed content of How to solve problems encountered during PHP7.2.3 installation. For more information, please follow other related articles on the PHP Chinese website!