1

I recently transferred my magento website from an old server to a new one, and when I opened the home page, it gives me Internal Server Error 500. In the server error log, i can see the following error:

PHP Fatal error: Class 'IntlDateFormatter' not found in /home/evonengc/public_html/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php on line 93

How can I solve this error?

Philipp Maurer
  • 2,480
  • 6
  • 18
  • 25
Collins Unue
  • 11
  • 1
  • 3

1 Answers1

2

go to php.ini and enable the extension

;extension=php_intl.dll 

to

extension=php_intl.dll

and restart Apache

akaamil
  • 51
  • 10