Last active
February 10, 2016 15:47
-
-
Save quanengineering/59ed8e1b4bef117ff886 to your computer and use it in GitHub Desktop.
Requirement to use PHPExcel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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