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.
            Asked
            
        
        
            Active
            
        
            Viewed 758 times
        
    1 Answers
0
            Here's the solution:
Enable the intl extension in the php.ini file.
Under Apache, click config.
Click php.ini.
ctrl + f to search intl to find the extension.
Remove the semi-colon to enable the extension. (This is something that wasn't self explanatory to me at first).
Save the file. Restart your apache server in xampp. The error should now be resolved.
        Austin Poulson
        
- 685
 - 7
 - 22
 
- 
                    2It'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
 



