If you encounter this error message on a Symfony2 project, you just have to install php5-intl module
apt-get install php5-intl
And don’t forget to restart apache
service apache2 restart
If you encounter this error message on a Symfony2 project, you just have to install php5-intl module
apt-get install php5-intl
And don’t forget to restart apache
service apache2 restart
After installing Symfony 2 instead of viewing your website, you see this error message :
You need to enable either the SQLite3 or PDO_SQLite extension for the profiler to run properly.
It probably means you need to install the sqlite extension for php
apt-get install php5-sqlite
restart apache and that should to the tricks.