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;
}







1















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?










share|improve this question

























  • 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


















1















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?










share|improve this question

























  • 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














1












1








1








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?










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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



















  • 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










1 Answer
1






active

oldest

votes


















1














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.






share|improve this answer


























  • Far better :) will delete my comment above

    – Videonauth
    Oct 26 '17 at 15:01












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
});


}
});














draft saved

draft discarded


















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









1














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.






share|improve this answer


























  • Far better :) will delete my comment above

    – Videonauth
    Oct 26 '17 at 15:01
















1














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.






share|improve this answer


























  • Far better :) will delete my comment above

    – Videonauth
    Oct 26 '17 at 15:01














1












1








1







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.






share|improve this answer















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.







share|improve this answer














share|improve this answer



share|improve this answer








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



















  • 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


















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

How did Captain America manage to do this?

迪纳利

南乌拉尔铁路局