
Phalcon Ubuntu 14.04 - install extension
Had a bit of trouble getting phalcon to appear in phpinfo() on Ubuntu 14.04 nginx and php-fpm. The compile and ./install put phalcon.so in /usr/lib/php5/20121212+lfs which is fine.
In /etc/php5/mods-available create phalcon.ini containing this:-
; configuration for php phalcon module
; priority=30
extension=phalcon.so
Then in /etc/php5/fpm/conf.d put a symlink to this file, sudo ln -s ../../mods-available/phalcon.ini 30-phalcon.ini
Restart php-fpm and nginx and you should see phalcon in your phpinfo().