php.ini updating

2 posts / 0 new
Last post
#1 Mon, 04/20/2015 - 07:35
siteXmedia

php.ini updating

I have updated my /etc/php.ini settings and would like to update all sites with the same, is there an easy way of doing this?

I tried using the solution offered in - https://www.virtualmin.com/node/32034

"Jamie tells me that one way to re-copy the php.ini file would be to change the PHP Execution Mode to something else, then change it back. You could do that from within the GUI, or using the command line."

- but this did not work on a test with one site, after changing the settings - diff /etc/php.ini /home/dummy/etc/php.ini - still showed a difference

I have about 70 sites installed, so doing it manually will take a while.

Thanks

Update....

I found - https://www.virtualmin.com/documentation/id,php_and_virtualmin - and used the command -

find /home -name php.ini | xargs sed -i "s/memory_limit =.*/memory_limit = 32M/"

Changing each variable in turn, but got an error message when using

find /home -name php.ini | xargs sed -i "s/date.timezone =.*/date.timezone = Europe/London/"
sed: -e expression #1, char 44: unknown option to `s'

Would this be the / in the Europe/London causing the problem?

Mon, 04/27/2015 - 09:59
obus18

find /home -name php.ini | xargs sed -i "s/date.timezone =.*/date.timezone = Europe\/London/"

(add \ before /London )

Topic locked