1 Answer
This error probably occurs when there is any php-json module is missing which is required by your website to load its content.
Hence install
yum install php7.2-json
(or php7.1-json or php5-json depending on the PHP version you're running)
Then of course make sure you restart Apache:
systemctl restart httpd
it will resolve the error.
Your Answer
x