By Brennen Bearnes and Brennen Bearnes
PHP 7, which was released on December 3, 2015, promises substantial speed improvements over previous versions of the language, along with new features like scalar type hinting. This guide explains how to quickly upgrade an Apache or Nginx web server running PHP 5.x (any release) to PHP 7.
Warning: As with most major-version language releases, it’s best to wait a little while before switching to PHP 7 in production. In the meanwhile, it’s a good time to test your applications for compatibility with the new release, perform benchmarks, and familiarize yourself with new language features.
If you’re running any services or applications with active users, it is safest to first test this process in a staging environment.
This guide assumes that you are running PHP 5.x on an Ubuntu 14.04 machine, using either mod_php
in conjunction with Apache, or PHP-FPM in conjunction with Nginx. It also assumes that you have a non-root user configured with sudo
privileges for administrative tasks.
A Personal Package Archive, or PPA, is an Apt repository hosted on Launchpad. PPAs allow third-party developers to build and distribute packages for Ubuntu outside of the official channels. They’re often useful sources of beta software, modified builds, and backports to older releases of the operating system.
Ondřej Surý maintains the PHP packages for Debian, and offers a PPA for PHP 7.0 on Ubuntu. Before doing anything else, log in to your system, and add Ondřej’s PPA to the system’s Apt sources:
You’ll see a description of the PPA, followed by a prompt to continue. Press Enter to proceed.
Note: If your system’s locale is set to anything other than UTF-8, adding the PPA may fail due to a bug handling characters in the author’s name. As a workaround, you can install language-pack-en-base
to make sure that locales are generated, and override system-wide locale settings while adding the PPA:
Once the PPA is installed, update the local package cache to include its contents:
Now that we have access to packages for PHP 7.0, we can replace the existing PHP installation.
mod_php
with ApacheThis section describes the upgrade process for a system using Apache as the web server and mod_php
to execute PHP code. If, instead, you are running Nginx and PHP-FPM, skip ahead to the next section.
First, install the new packages. This will upgrade all of the important PHP packages, with the exception of php5-mysql
, which will be removed.
Note: If you have made substantial modifications to any configuration files in /etc/php5/
, those files are still in place, and can be referenced. Configuration files for PHP 7.0 now live in /etc/php/7.0
.
If you are using MySQL, make sure to re-add the updated PHP MySQL bindings:
This section describes the upgrade process for a system using Nginx as the web server and PHP-FPM to execute PHP code.
First, install the new PHP-FPM package and its dependencies:
You’ll be prompted to continue. Press Enter to complete the installation.
If you are using MySQL, be sure to re-install the PHP MySQL bindings:
Note: If you have made substantial modifications to any configuration files in /etc/php5/
, those files are still in place, and can be referenced. Configuration files for PHP 7.0 now live in /etc/php/7.0
.
Nginx communicates with PHP-FPM using a Unix domain socket. Sockets map to a path on the filesystem, and our PHP 7 installation uses a new path by default:
PHP 5 | PHP 7 |
---|---|
/var/run/php5-fpm.sock | /var/run/php/php7.0-fpm.sock |
Open the default
site configuration file with nano
(or your editor of choice):
Your configuration may differ somewhat. Look for a block beginning with location ~ \.php$ {
, and a line that looks something like fastcgi_pass unix:/var/run/php5-fpm.sock;
. Change this to use unix:/var/run/php/php7.0-fpm.sock
.
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /var/www/html;
index index.php index.html index.htm;
server_name server_domain_name_or_IP;
location / {
try_files $uri $uri/ =404;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
Exit and save the file. In nano
, you can accomplish this by pressing Ctrl-X to exit, y to confirm, and Enter to confirm the filename to overwrite.
You should repeat this process for any other virtual sites defined in /etc/nginx/sites-enabled
which need to support PHP.
Now we can restart nginx
:
With a web server configured and the new packages installed, we should be able to verify that PHP is up and running. Begin by checking the installed version of PHP at the command line:
OutputPHP 7.0.0-5+deb.sury.org~trusty+1 (cli) ( NTS )
Copyright (c) 1997-2015 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2015 Zend Technologies
with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2015, by Zend Technologies
You can also create a test file in the web server’s document root. Depending on your server and configuration, this may be one of:
/var/www/html
/var/www/
/usr/share/nginx/html
Using nano
, open a new file called info.php
in the document root. By default, on Apache, this would be:
On Nginx, you might instead use:
Paste the following code:
<?php
phpinfo();
?>
Exit the editor, saving info.php
. Now, load the following address in your browser:
http://server_domain_name_or_IP/info.php
You should see PHP version and configuration info for PHP 7. Once you’ve double-checked this, it’s safest to to delete info.php
:
You now have a working PHP 7 installation. From here, you may want to check out Erika Heidi’s Getting Ready for PHP 7 blog post, and look over the official migration guide.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Doesn’t work for me on Ubuntu 14.04.3 & Nginx 1.9.7…
I’ve added the PPA and updated the package cache, but got this when trying to install php7.0-fpm:
I tried to install them all, but I keep getting more dependencies and conflicts
@bojanrnr I received similar messages. I ran
sudo apt-get remove php5-common
and then ran from the top of this page againHave you tried this? http://askubuntu.com/questions/705880/how-to-install-php-7 Purging first, then installing all the PHP packages
@bojanrnr i had same issue but i used the following command to remove PHP 5.6 first
I can get PHP 7 running on Ubuntu 14.04 with Nginx, but I can’t get phpmyadmin installed even using the latest version because php-gettext and php-seclib are missing from the PHP 7 install. HAs anyone gotten phpmyadmin to work and willing to post directions?
See my comment here.
thank’s
Got the following error after installing php7.0-mcrypt. Anyone have a solution?
This rings a bell. I suspect that mcrypt is already compiled in.
You can kill the error by commenting
extension=mcrypt.so
in/etc/php/mods-available/mcrypt.ini
(which should cover both the CLI and FPM SAPIs), like so:Even after doing this, it shows up in the list of compiled modules:
That said, there’s obviously still a problem here if code doesn’t work. I do notice that some
mcrypt_*
functions seem to have been deprecated in this release.@bpb Thanks Brennen
Thank you for writing this article.
I’m getting a 500 error code after following the tutorial with a LAMP on Ubuntu 14.04. Replicated every step perfectly but it seems like PHP7 and MySQL won’t work together. Any ideas?
You mention MySQL, so I’m guessing you have some log output pointing that direction? Could you paste any specific errors you’re seeing from
/var/log/apache2/error.log
?I thought the socket path was like this:
Interesting. Looks like
/var/run
symlinks to/run
. I confess I haven’t really followed this change, but it sounds like/run
has been canonical (or headed that way) for the major distros for a while now.Thanks for the note. I’ll do a bit of further reading and update the instructions.
I saw that when I was looking into the
/etc/php/7.0/fpm/pool.d/www.conf
file.I have just tested this and it refuses to work for me and just goes around in circles with unmet dependencies.
Trying to run this:
Results in:
So then I try to install libapache2-mod-php7.0 and get a different unmet dependency:
Then finally I try to go back one more stage and install php7.0-cli but this also doesn’t work due to unmet dependencies:
If I instead try to purge PHP5 first then it removes Roundcube and PHPMyAdmin and they refuse to install again afterwards due to missing modules.
Is there anything else I can try?
Thanks Robin
Ok I’ve figured out how to get PHP 7.0 installed which involved doing these steps instead (on my server):
Then remove a few extra things that were left behind:
Then install PHP 7.0:
Then as PHPMyAdmin was removed Apache2 wouldn’t start so I had to remove the config file (I could have moved it instead):
Then I had to restart Apache2:
PHP 7.0 was then running
However I can’t now figure out how to get PHPMyAdmin installed again as it just says there are unmet dependencies with PHP 5 even though 7.0 is loaded and running (confirmed with PHPINFO();
Thanks for the detailed breakdown. I’ll see what I can figure out with regards to PHPMyAdmin.
I am also having an issue with phpMyAdmin…seems the package still relies on php5 packages so you can’t install through apt-get
For upgrading by way of APT, this PPA looks promising; a quick run-through on an Apache installation appears to work:
It’s somewhat iffier for Nginx, and it’s possible that installing PHPMyAdmin directly from upstream sources is a better idea. I’m still en route home from a holiday visit to family, but I’ll do a bit of digging and a more complete writeup this coming weekend.
Thanks bpb (replying to the post above as there is no option to reply to your post for some reason!)
I have now tested this repository and can confirm it does indeed update to a much newer version of PHPMyAdmin.
I did encounter an issue where it ran an SQL update script which failed but I worked around it by running the .sql update afterwards.
Here are my steps in case it is of use to others:
First I installed the package and tried to upgrade the package:
However this said the package had been held back and didn’t update to it but running this forced it to update:
Unfortunately during the upgrade it failed with an error as the PHPMyAdmin SQL upgrade script (upgrade_column_info_4_3_0+.sql) tries to add the following two columns to pma__column_info but they already exist:
This generates the following error:
I chose to ignore the warning and then went to /usr/share/phpmyadmin/sql after install and ran the upgrade_column_info_4_3_0+.sql script manually removing this offending part:
Finally I had to edit the config file at /etc/phpmyadmin/config.inc.php and add the following two lines:
The errors about the extended features then went away.
The next step is to try PHP7 again!
Nice… i will try it when there is time
Kingsley, better chill.
Let Ubuntu release a major update and we will see if it will have provisions for php7
lol,
i hope it will be included in ubuntu 16.04
I am getting on Apache installation
service apache2 restart
It looks like the upgrade process left
/etc/apache2/mods-enabled/php5.load
in place, which refers to a no-longer-installed shared library. Give this a shot:On my test system, I get:
Your output might be missing the
ServerName
warning. As long as you seeSyntax OK
, you can restart Apache:This comment has been deleted