
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
Laravel Custom Maintenance Page
Client-Side Form Validation With Javascript
Send Email In PHP With PHPMailer
Free SSL Certificate With Lets Encrypt/Certbot In Linux (Single / Multiple Domains)
GitHub Login With PHP Laravel Socialite
Composer Install v/s Composer Update
Simple Way To Create Resourceful API Controller In Laravel
Test Your Local Developing Laravel Web Application From Phone Browser Without Any Software
Firebase Cloud Messaging (FCM) Browser Web Push Notifications Using Javascript And PHP
Lazy Load Images In Chrome With This Simple Trick
PHP file_put_contents failed to open stream: Permission denied
Free SSL Certificate For CPanel
Route Model Binding In Laravel & Change Default Column id To Another Column
Install Letsencrypt SSL Certificate for RabbitMQ Server and RabbitMQ Management Tool
Custom Validation Rules In PHP Laravel (Using Artisan Command)