Advertisement
dedeanshi

PHP 7.3 Ubuntu

May 22nd, 2020
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. apt install software-properties-common
  2. LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php
  3. apt update
  4. apt install php7.3 php7.3-cli php7.3-common
  5. php -v
  6. a2dismod php7.0
  7. update-alternatives --set php /usr/bin/php7.3
  8. a2enmod php7.3
  9. systemctl restart apache2
  10.  
  11.  
  12.  
  13. nano /var/www/html/phpinfo.php
  14. <?php phpinfo(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement