Skip to content

Instantly share code, notes, and snippets.

@armnosn
armnosn / gist:5203930
Last active December 15, 2015 04:49
Installing LAMP stack manually on Ubuntu 12.04
- `sudo apt-get install apache2`
- `sudo apt-get build-dep php5`
- `sudo apt-get install libxml2-dev`
- `sudo apt-get install libcurl4-openssl-dev pkg-config`
- `sudo apt-get install libjpeg-dev`
- `sudo apt-get install libpng12-dev`
- `sudo apt-get install libt1-dev`
- `sudo apt-get install libib-util`
- `sudo apt-get install libfbclient2`
- install `freetype2` http://www.freetype.org/download.html
@armnosn
armnosn / gist:5202883
Last active December 15, 2015 04:39
PHP Configurations - Just to install Firebird SQL. This makes me sick.
./configure \
--enable-fpm \
--with-fpm-user=www-data \
--with-fpm-group=www-data \
--with-config-file-path=/usr/local/php/conf \
--with-config-file-scan-dir=/usr/local/php/conf.d \
--enable-debug \
--with-openssl \
--with-kerberos \
--with-zlib \