Home > Article > Backend Development > What to do if there is no config when installing php
The solution to the problem that php config does not exist: first execute the command "phpize"; then install it through the command "yum -y install automake"; finally re-execute phpize.
Recommended: "PHP Tutorial"
When installing the php extension under linux, it cannot be found configure
When we have executed phpize, but configure has not been generated. At this time, we install yum -y install automake and re-execute phpize. See if configure has been generated.
The above is the detailed content of What to do if there is no config when installing php. For more information, please follow other related articles on the PHP Chinese website!