Skip to content

Instantly share code, notes, and snippets.

@kaidesu
Forked from 13i/install_php_excel.sh
Last active August 29, 2015 14:16
Show Gist options
  • Save kaidesu/e2df2a31835f53f55803 to your computer and use it in GitHub Desktop.
Save kaidesu/e2df2a31835f53f55803 to your computer and use it in GitHub Desktop.
sudo su --
cd /src
wget http://www.libxl.com/download/libxl.tar.gz
tar -zxvf libxl.tar.gz
cd libxl-3.4.1.4
ln -s include_c include
ln -s libxl.so /usr/lib/libxl.so
wget https://github.com/iliaal/php_excel/archive/master.zip master.zip
unzip master.zip
rm php_excel-master
cd php_excel-master
phpize
./configure --with-excel --with-libxl-incdir=../libxl-3.4.1.4/ --with-libxl-libdir=../libxl-3.4.1.4/lib64
make
make test
make install
service apache2 restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment