su8898
su8898

Reputation: 1713

Symfony2 php.ini

When checking with app/check.php Symfony2 says this Configuration file used by PHP : /etc/php5/cli/php.ini however phpinfo(); displays that Apache is using /etc/php5/apache2/php.ini.

I tried searching but couldn't find a solution. Could someone explain how do I tell my Symfony2 app to use Apache2's php.ini? Or is there something obvious I am missing here?

I am new to Symfony

Upvotes: 1

Views: 5878

Answers (2)

Wouter J
Wouter J

Reputation: 41934

PHP cli uses another ini than PHP apache. That happends quite often (you often also want other configuration).

When you use Symfony from both console (the commands) and apache (the app), you should make sure both ini files are correctly configured for Symfony.

In the browser, you can go to web/config.php to see a report of Symfony about your PHP settings and such.

Upvotes: 2

dan-klasson
dan-klasson

Reputation: 14190

On Ubuntu Apache uses /etc/php5/apache2/php.ini and the command line uses /etc/php5/cli/php.ini. This is related to your OS and not Symfony2.

Upvotes: 2

Related Questions