Vanilla 1.1.8 is a product of Lussumo. More Information: Documentation, Community Support.
I’m not familiar enough with the packages, try using “aptitude search PACKAGE” – this might turn up some hits for the packages you are looking for. My gut tells me you’ll probably have to compile though.
I've successfully downloaded the packages already, my problem is that running apt-get install php-5 does not seem to build php with those downloaded extensions configured into it. From what I've read I need to do some ./configure --with-gd and whatever else (depending on the features I'm trying to add).
How do you know they're not? If you apt-get install php5-gd for instance, it should configure it for you and add it to the extensions section of your php.ini. Make a php file called info.php in your webroot, and put this in it: <? phpinfo(); ?>, then visit yourdomain.com/info.php and check it out. Do the extensions you added with apt-get show up? Then they're installed. Do they not show up? Better check /etc/php5/cgi/php.ini and make sure there's a line that reads extension=whatever.so
Also remember that you need to restart apache after adding php modules. At least, i don’t think that apt does that for you.
try:
/etc/init.d/apache2 restart
Then see if the modules are loaded.
1 to 10 of 10