
Good content takes time and effort to come up with.
Please consider supporting us by just disabling your AD BLOCKER and reloading this page again.
Sometimes you will encounter ext-intl * is missing while you install PHP applications. You can fix it in the following ways:
Solution 1 - Install the missing extension
Solution 2 - Enable extension=intl in php.ini file
Solution 3 - Install PHP mbstring
Install the missing extension with the following command this should solve 80% of the times
sudo apt-get install php7.4-intl
NOTE: Make sure to observe the php7.4 version in the above command. Replace the php version respectively.
To know which php.ini
configuration file is loaded in your system you can run the following command
php -i | grep Loaded Configuration
The command output will look somewhat the following way
Loaded Configuration File => /etc/php/7.4/cli/php.ini
libXML Loaded Version => 20910
Then go to the respective file /etc/php/7.4/cli/php.ini
and uncomment like the following
Before
;extension=intl
After (Remove the preceding semicolon ;)
extension=intl
Don't forget to restart your PHP server. You can do it with the following command
sudo service php-fpm restart
sudo service php restart
mbstring
It's quite rare to see this issue, but can be easily fixed by running the following command
sudo apt-get install php7.4-mbstring
Composer Install v/s Composer Update
Lazy Load Images In Chrome With This Simple Trick
Free SSL Certificate In cPanel With ZeroSSL & Certbot
Increase Session Timeout In Laravel
Client-Side DataTable, Adding Super Powers To HTML Table
Firebase Cloud Messaging (FCM) Browser Web Push Notifications Using Javascript And PHP
Integrate Google Translate Into Your Website
Client-Side Form Validation With Javascript
Laravel Custom Maintenance Page
Sass or SCSS @mixin vs @extends vs Placeholder (%)
What Is HTTP? Different HTTP Methods And Status Codes Explained With Examples