Reputation: 2838
I installed Symfony with composer and when I did environment check it told me to install APC and to turn off short open tags in php.ini. But after I've done all this steps and restarted apache2 I run tests again and imagine my confusion when symfony gave me the same warnings again.
I'm 100% sure I installed APC, since I can see it is enabled in phpinfo
and I can see it's status on apc.php
page. In order to disable short open tags I edited php.ini
which I found in /etc/php5/apache2/
. And again phpinfo says that short open tags are indeed disabled but why check.php
still gives me warnings about it?
BTW Symfony also told me to instal intl extension and it noticed that I installed intl, but failed to notice APC and short open tags. What can be the reason? Should I ignore these warnings or what??
Upvotes: 0
Views: 105
Reputation: 21600
Well, apache2 and cli uses two different php interpreter, and each one has its own php.ini file. So, .. maybe there are two different configurations. What do you mean with "symfony told me". Are you in console mode or in your web browser?
Upvotes: 3