How to php upgrade i-mscp 1.5.1 on ubuntu 16.04.4 lts from php 5.7.0 shown to php 7.0 and change php max limit from 16 MB for to 123 MB for customer?
Have allready deinstalled PHP 5.7 from ubuntu 16.04.4 lts and installed PHP 7.0 like this:
sudo apt-get remove php5-common -y
Or directly purge it including configuration files:
sudo apt-get purge php5-common -y
And finally install PHP 7:
sudo apt-get install php7.0 php7.0-fpm php7.0-mysql -y
Optionally clean up unneeded packages afterwards:
sudo apt-get --purge autoremove -y
What further more to do, that customer got php max limit 128 MB and PHP 7.0?