Cannot compile PHP 5.3.29 on Ubuntu 16.04
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I am having issues in compiling the PHP 5.3.29 on Ubuntu 16.04
My question:
Say if I compile PHP on earlier version of ubuntu and copy it over to Ubuntu 16.04.
Will it work as expected or it will fail?
server php compiling
add a comment |
I am having issues in compiling the PHP 5.3.29 on Ubuntu 16.04
My question:
Say if I compile PHP on earlier version of ubuntu and copy it over to Ubuntu 16.04.
Will it work as expected or it will fail?
server php compiling
The libraries it's expecting will be different. You can't safely just 'copy' data over. Also keep in mind that 5.3.29 is ancient and probably won't compile with the latest libraries lying around.
– Thomas Ward♦
Aug 28 '17 at 18:34
I think you will not get succesfully to install php 5.3.29, Ondrej (launchpad.net/~ondrej/+archive/ubuntu/php) has older PHP repositories, but the earlier he has is 5.6
– Redbob
Aug 28 '17 at 18:39
add a comment |
I am having issues in compiling the PHP 5.3.29 on Ubuntu 16.04
My question:
Say if I compile PHP on earlier version of ubuntu and copy it over to Ubuntu 16.04.
Will it work as expected or it will fail?
server php compiling
I am having issues in compiling the PHP 5.3.29 on Ubuntu 16.04
My question:
Say if I compile PHP on earlier version of ubuntu and copy it over to Ubuntu 16.04.
Will it work as expected or it will fail?
server php compiling
server php compiling
edited Mar 23 at 20:40
Joshi
asked Aug 28 '17 at 18:27
JoshiJoshi
138113
138113
The libraries it's expecting will be different. You can't safely just 'copy' data over. Also keep in mind that 5.3.29 is ancient and probably won't compile with the latest libraries lying around.
– Thomas Ward♦
Aug 28 '17 at 18:34
I think you will not get succesfully to install php 5.3.29, Ondrej (launchpad.net/~ondrej/+archive/ubuntu/php) has older PHP repositories, but the earlier he has is 5.6
– Redbob
Aug 28 '17 at 18:39
add a comment |
The libraries it's expecting will be different. You can't safely just 'copy' data over. Also keep in mind that 5.3.29 is ancient and probably won't compile with the latest libraries lying around.
– Thomas Ward♦
Aug 28 '17 at 18:34
I think you will not get succesfully to install php 5.3.29, Ondrej (launchpad.net/~ondrej/+archive/ubuntu/php) has older PHP repositories, but the earlier he has is 5.6
– Redbob
Aug 28 '17 at 18:39
The libraries it's expecting will be different. You can't safely just 'copy' data over. Also keep in mind that 5.3.29 is ancient and probably won't compile with the latest libraries lying around.
– Thomas Ward♦
Aug 28 '17 at 18:34
The libraries it's expecting will be different. You can't safely just 'copy' data over. Also keep in mind that 5.3.29 is ancient and probably won't compile with the latest libraries lying around.
– Thomas Ward♦
Aug 28 '17 at 18:34
I think you will not get succesfully to install php 5.3.29, Ondrej (launchpad.net/~ondrej/+archive/ubuntu/php) has older PHP repositories, but the earlier he has is 5.6
– Redbob
Aug 28 '17 at 18:39
I think you will not get succesfully to install php 5.3.29, Ondrej (launchpad.net/~ondrej/+archive/ubuntu/php) has older PHP repositories, but the earlier he has is 5.6
– Redbob
Aug 28 '17 at 18:39
add a comment |
1 Answer
1
active
oldest
votes
I use ubuntu 16.04, and all work's fine.
Here example how install php5.x.x link
Pre-requisites
You will need these two extra packages if you don't have them:
sudo apt-get install build-essential libxml2-dev
Install PHP
In terminal:
wget http://in1.php.net/distributions/php-5.3.29.tar.bz2
tar -xvf php-5.3.29.tar.bz2
cd php-5.3.29
./configure
make
make test # Neither mandatory nor a bad idea.
sudo make install
The instructions will untar the source build and they will install php in your system.
Far better :) will delete my comment above
– Videonauth
Oct 26 '17 at 15:01
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%2f950683%2fcannot-compile-php-5-3-29-on-ubuntu-16-04%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
I use ubuntu 16.04, and all work's fine.
Here example how install php5.x.x link
Pre-requisites
You will need these two extra packages if you don't have them:
sudo apt-get install build-essential libxml2-dev
Install PHP
In terminal:
wget http://in1.php.net/distributions/php-5.3.29.tar.bz2
tar -xvf php-5.3.29.tar.bz2
cd php-5.3.29
./configure
make
make test # Neither mandatory nor a bad idea.
sudo make install
The instructions will untar the source build and they will install php in your system.
Far better :) will delete my comment above
– Videonauth
Oct 26 '17 at 15:01
add a comment |
I use ubuntu 16.04, and all work's fine.
Here example how install php5.x.x link
Pre-requisites
You will need these two extra packages if you don't have them:
sudo apt-get install build-essential libxml2-dev
Install PHP
In terminal:
wget http://in1.php.net/distributions/php-5.3.29.tar.bz2
tar -xvf php-5.3.29.tar.bz2
cd php-5.3.29
./configure
make
make test # Neither mandatory nor a bad idea.
sudo make install
The instructions will untar the source build and they will install php in your system.
Far better :) will delete my comment above
– Videonauth
Oct 26 '17 at 15:01
add a comment |
I use ubuntu 16.04, and all work's fine.
Here example how install php5.x.x link
Pre-requisites
You will need these two extra packages if you don't have them:
sudo apt-get install build-essential libxml2-dev
Install PHP
In terminal:
wget http://in1.php.net/distributions/php-5.3.29.tar.bz2
tar -xvf php-5.3.29.tar.bz2
cd php-5.3.29
./configure
make
make test # Neither mandatory nor a bad idea.
sudo make install
The instructions will untar the source build and they will install php in your system.
I use ubuntu 16.04, and all work's fine.
Here example how install php5.x.x link
Pre-requisites
You will need these two extra packages if you don't have them:
sudo apt-get install build-essential libxml2-dev
Install PHP
In terminal:
wget http://in1.php.net/distributions/php-5.3.29.tar.bz2
tar -xvf php-5.3.29.tar.bz2
cd php-5.3.29
./configure
make
make test # Neither mandatory nor a bad idea.
sudo make install
The instructions will untar the source build and they will install php in your system.
edited Oct 26 '17 at 14:51
answered Oct 26 '17 at 14:00
Maxim StrutinskiyMaxim Strutinskiy
1113
1113
Far better :) will delete my comment above
– Videonauth
Oct 26 '17 at 15:01
add a comment |
Far better :) will delete my comment above
– Videonauth
Oct 26 '17 at 15:01
Far better :) will delete my comment above
– Videonauth
Oct 26 '17 at 15:01
Far better :) will delete my comment above
– Videonauth
Oct 26 '17 at 15:01
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.
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%2f950683%2fcannot-compile-php-5-3-29-on-ubuntu-16-04%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
The libraries it's expecting will be different. You can't safely just 'copy' data over. Also keep in mind that 5.3.29 is ancient and probably won't compile with the latest libraries lying around.
– Thomas Ward♦
Aug 28 '17 at 18:34
I think you will not get succesfully to install php 5.3.29, Ondrej (launchpad.net/~ondrej/+archive/ubuntu/php) has older PHP repositories, but the earlier he has is 5.6
– Redbob
Aug 28 '17 at 18:39