You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "; priority=99" | sudo tee /etc/php/7.1/mods-available/common.ini > /dev/null
58
-
echo "date.timezone=Europe/Minsk" | sudo tee -a /etc/php/7.1/mods-available/common.ini > /dev/null
59
-
echo "short_open_tag=0" | sudo tee -a /etc/php/7.1/mods-available/common.ini > /dev/null
60
-
echo "xdebug.max_nesting_level=250" | sudo tee -a /etc/php/7.1/mods-available/xdebug.ini > /dev/null
61
-
echo "xdebug.var_display_max_depth=5" | sudo tee -a /etc/php/7.1/mods-available/xdebug.ini > /dev/null
57
+
echo "; priority=99" | sudo tee /etc/php/7.3/mods-available/common.ini > /dev/null
58
+
echo "date.timezone=Europe/Minsk" | sudo tee -a /etc/php/7.3/mods-available/common.ini > /dev/null
59
+
echo "short_open_tag=0" | sudo tee -a /etc/php/7.3/mods-available/common.ini > /dev/null
60
+
echo "xdebug.max_nesting_level=250" | sudo tee -a /etc/php/7.3/mods-available/xdebug.ini > /dev/null
61
+
echo "xdebug.var_display_max_depth=5" | sudo tee -a /etc/php/7.3/mods-available/xdebug.ini > /dev/null
62
+
echo "opcache.optimization_level=0x7FFFBBFF ; Remove some optimisations, otherwise php with xdebug will fail" | sudo tee -a /etc/php/7.3/mods-available/xdebug.ini > /dev/null
62
63
sudo phpenmod common
63
64
64
65
65
-
Open php fpm config file ``sudo mcedit /etc/php/7.1/fpm/pool.d/www.conf``, find ``listen = /run/php/php7.1-fpm.sock`` and replace with ``listen = 127.0.0.1:9000``.
66
+
Open php fpm config file ``sudo mcedit /etc/php/7.3/fpm/pool.d/www.conf``, find ``listen = /run/php/php7.3-fpm.sock`` and replace with ``listen = 127.0.0.1:9000``.
66
67
67
-
Restart ``php-fpm`` using command ``sudo service php7.1-fpm restart``.
68
+
Restart ``php-fpm`` using command ``sudo service php7.3-fpm restart``.
0 commit comments