Ubuntu 16.04 - PHP 7.1.11 to 7.1.3
How can I upgrade my PHP version from PHP 7.1.11 to 7.1.3 on my Ubuntu 16.04 server? I've tried the following:
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install php7.1
But them I'm getting the following response:
php7.1 is already the newest version (7.1.16-1+ubuntu16.04.1+deb.sury.org+1).
Also tried to do the following:
sudo apt-get install php7.1.3
But then I am getting this error:
E: Unable to locate package php7.1.3
E: Couldn't find any package by glob 'php7.1.3'
E: Couldn't find any package by regex 'php7.1.3'
How can I upgrade minor version?
16.04 upgrade php versions php7
add a comment |
How can I upgrade my PHP version from PHP 7.1.11 to 7.1.3 on my Ubuntu 16.04 server? I've tried the following:
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install php7.1
But them I'm getting the following response:
php7.1 is already the newest version (7.1.16-1+ubuntu16.04.1+deb.sury.org+1).
Also tried to do the following:
sudo apt-get install php7.1.3
But then I am getting this error:
E: Unable to locate package php7.1.3
E: Couldn't find any package by glob 'php7.1.3'
E: Couldn't find any package by regex 'php7.1.3'
How can I upgrade minor version?
16.04 upgrade php versions php7
You are not upgrading, in fact, you are degrading your php version.
– Prashant Pokhriyal
Jun 20 at 7:05
add a comment |
How can I upgrade my PHP version from PHP 7.1.11 to 7.1.3 on my Ubuntu 16.04 server? I've tried the following:
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install php7.1
But them I'm getting the following response:
php7.1 is already the newest version (7.1.16-1+ubuntu16.04.1+deb.sury.org+1).
Also tried to do the following:
sudo apt-get install php7.1.3
But then I am getting this error:
E: Unable to locate package php7.1.3
E: Couldn't find any package by glob 'php7.1.3'
E: Couldn't find any package by regex 'php7.1.3'
How can I upgrade minor version?
16.04 upgrade php versions php7
How can I upgrade my PHP version from PHP 7.1.11 to 7.1.3 on my Ubuntu 16.04 server? I've tried the following:
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install php7.1
But them I'm getting the following response:
php7.1 is already the newest version (7.1.16-1+ubuntu16.04.1+deb.sury.org+1).
Also tried to do the following:
sudo apt-get install php7.1.3
But then I am getting this error:
E: Unable to locate package php7.1.3
E: Couldn't find any package by glob 'php7.1.3'
E: Couldn't find any package by regex 'php7.1.3'
How can I upgrade minor version?
16.04 upgrade php versions php7
16.04 upgrade php versions php7
edited Apr 17 at 16:09
asked Apr 17 at 15:42
nielsv
7116
7116
You are not upgrading, in fact, you are degrading your php version.
– Prashant Pokhriyal
Jun 20 at 7:05
add a comment |
You are not upgrading, in fact, you are degrading your php version.
– Prashant Pokhriyal
Jun 20 at 7:05
You are not upgrading, in fact, you are degrading your php version.
– Prashant Pokhriyal
Jun 20 at 7:05
You are not upgrading, in fact, you are degrading your php version.
– Prashant Pokhriyal
Jun 20 at 7:05
add a comment |
1 Answer
1
active
oldest
votes
Since official repo comes with 7.0 version, repo from ondrej/php has 7.1
Add the repository :
sudo add-apt-repository ppa:ondrej/php
Update :
sudo apt-get update
Install 7.1:
sudo apt-get install php7.1 php7.1-common
if needed you can remove old packages:
sudo apt-get purge php7.0 php7.0-common
This only installed 7.1.25 for me
– Harry Bosh
Dec 12 at 1:07
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1025855%2fubuntu-16-04-php-7-1-11-to-7-1-3%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Since official repo comes with 7.0 version, repo from ondrej/php has 7.1
Add the repository :
sudo add-apt-repository ppa:ondrej/php
Update :
sudo apt-get update
Install 7.1:
sudo apt-get install php7.1 php7.1-common
if needed you can remove old packages:
sudo apt-get purge php7.0 php7.0-common
This only installed 7.1.25 for me
– Harry Bosh
Dec 12 at 1:07
add a comment |
Since official repo comes with 7.0 version, repo from ondrej/php has 7.1
Add the repository :
sudo add-apt-repository ppa:ondrej/php
Update :
sudo apt-get update
Install 7.1:
sudo apt-get install php7.1 php7.1-common
if needed you can remove old packages:
sudo apt-get purge php7.0 php7.0-common
This only installed 7.1.25 for me
– Harry Bosh
Dec 12 at 1:07
add a comment |
Since official repo comes with 7.0 version, repo from ondrej/php has 7.1
Add the repository :
sudo add-apt-repository ppa:ondrej/php
Update :
sudo apt-get update
Install 7.1:
sudo apt-get install php7.1 php7.1-common
if needed you can remove old packages:
sudo apt-get purge php7.0 php7.0-common
Since official repo comes with 7.0 version, repo from ondrej/php has 7.1
Add the repository :
sudo add-apt-repository ppa:ondrej/php
Update :
sudo apt-get update
Install 7.1:
sudo apt-get install php7.1 php7.1-common
if needed you can remove old packages:
sudo apt-get purge php7.0 php7.0-common
answered Jul 28 at 3:48
Ruwan Ranganath
1617
1617
This only installed 7.1.25 for me
– Harry Bosh
Dec 12 at 1:07
add a comment |
This only installed 7.1.25 for me
– Harry Bosh
Dec 12 at 1:07
This only installed 7.1.25 for me
– Harry Bosh
Dec 12 at 1:07
This only installed 7.1.25 for me
– Harry Bosh
Dec 12 at 1:07
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1025855%2fubuntu-16-04-php-7-1-11-to-7-1-3%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You are not upgrading, in fact, you are degrading your php version.
– Prashant Pokhriyal
Jun 20 at 7:05