Skip to content

Instantly share code, notes, and snippets.

@quanengineering
Last active February 10, 2016 15:47
Show Gist options
  • Save quanengineering/59ed8e1b4bef117ff886 to your computer and use it in GitHub Desktop.
Save quanengineering/59ed8e1b4bef117ff886 to your computer and use it in GitHub Desktop.
Requirement to use PHPExcel
use this script to check:
<?php
echo "GD: ", extension_loaded('gd') ? 'OK' : 'MISSING', '<br>';
echo "XML: ", extension_loaded('xml') ? 'OK' : 'MISSING', '<br>';
echo "zip: ", extension_loaded('zip') ? 'OK' : 'MISSING', '<br>';
?>
by default XML and ZIP is OK, GD have to install manually: `sudo apt-get install php5-gd`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment