0

I was getting this error using xampp to run an apache server and wanted to explain how I solved it. The error is pretty self explanatory once you know the solution.

Austin Poulson
  • 685
  • 7
  • 22

1 Answers1

0

Here's the solution:

Enable the intl extension in the php.ini file.

Under Apache, click config.

xampp apache

Click php.ini.

menu

ctrl + f to search intl to find the extension.

extension in file, disabled

Remove the semi-colon to enable the extension. (This is something that wasn't self explanatory to me at first).

extension in file, enabled

Save the file. Restart your apache server in xampp. The error should now be resolved.

Austin Poulson
  • 685
  • 7
  • 22
  • 2
    It's good that you want to help, but if you google "enable intl extension xampp", you'll find several answers for this already (including questions/answers here in SO). No need for another duplicate. – M. Eriksson Oct 05 '22 at 21:33