PHP is not recompiling properly.
I have PHP 7.2 installed on Nginx using php-fpm on Centos 7. I am recompiling php with more options using ./configure, make clean, make, make test and make install.
Everything works well and no errors are thrown, except the updated php compile is not being reflected on the phpinfo(); table. If you see the "Build Date" it is not changing. The "Configure Command" is also not updating after recompiling.
Why could php not be recompiling and the "Build Date" not updating, and the "Configure Command" also not reflecting my changes?
I have restarted nginx, restarted php-fpm, and still no change. I can edit the php.ini file without problems as well and they do update, but the php itself is not updating after I recompile and add more options (--with-openssl). I even restarted the server. PHP files are served fine.
Can anybody help?