On a Ubuntu 10.10 vm I installed PHP 5.3 via package manager (installed the whole lamp stack via tasksel install lamp
) for quickly testing some project.
Now I need a newer version, PHP 5.4 beta, compiled from source. I downloaded the source, compiled and installed via configure --prefix=/usr && sudo make install
That worked for the cli version that is now using the PHP 5.4 binary, but as I expected it didnt replace the version apache is using, so apache still uses PHP 5.3.
How can I find out how the via tasksel
installed version was compiled/what do I need to do in order to also upgrade the PHP version used with apache?