I\'m using Ubuntu Linux 12.04 LTS on my local machine. I\'ve installed LAMP long ago on my machine. Now I want to enable following PHP extensions:
To check if this extensions are enabled or not, you can create a php file i.e. info.php and write the following code there:
info.php
'; echo "XML: ", extension_loaded('xml') ? 'OK' : 'MISSING', ''; echo "zip: ", extension_loaded('zip') ? 'OK' : 'MISSING', ''; ?>
That's it.