web-dev-qa-db-fra.com

Erreur fatale: erreur non interceptée: appel à la fonction non définie bcadd ()

Après avoir installé "eduTrac SIS" et avoir accédé au "tableau de bord", j'ai eu cette erreur

Ubuntu 16.4, PHP 7.0 (php7.0-fpm), Apache2, Nginx,

L'URL affiche les erreurs 500 et nginx/error.log,

FastCGI envoyé dans stderr: "Message PHP: PHP Erreur fatale: Erreur non détectée: Appel à la fonction non définie PHPBenchmark\bcadd () dans/var/www/html/eduTrac-SIS/app/src/vendeur/phpbenchmark/phpbenchmark/lib/PHPBenchmark/Utils.php: 18

7
Isanka Wijerathne

PHP ne reconnaît pas "bcadd ()" donne l'erreur. La fonction "bcadd ()" est incluse dans "bcmath" PHP extention.

L'installation de l'extension bcmath appropriée résoudrait le problème.

Sudo apt-get install php7.0-bcmath

Veuillez noter que vous devriez trouver la version correcte de l'extension bcmath en fonction de votre version PHP. Et redémarrez Apache

Sudo service Apache2 restart
17
Isanka Wijerathne