BTB
BTB

Reputation: 392

php.ini not reloaded on Ubuntu 16.04.3 LTS

Im trying to change something in php.ini - but after editing, saving the file and restarting apache no changes is updated.

I'm on Ubuntu 16.04.3 LTS

But no changes is updated. From phpinfo I can still see that short_open_tag is Off.

What am I missing here?

Upvotes: 0

Views: 106

Answers (1)

fab2s
fab2s

Reputation: 868

since you mention fpm, you need to restart fpm not apache, on debian based should be close to :

sudo service php7.0-fpm restart

or just

sudo service php-fpm restart

reload can also do it instead or restart.

Upvotes: 1

Related Questions