Hi Harlow,
The cause of the issue is because PHP is not restarted. Changes to "php.ini" only takes effect when PHP is restarted.
I have just tried it myself. The type of PHP in dnf remi is FPM/FastCGI. This type of PHP runs its own service independent of Apache. That means restarting the httpd service will not restart PHP. You would to restart the FPM PHP itself.
sudo service php-fpm restart
Hope this can help.
Regards
Peter Kwan |