Hi, thank you for your time, here is the deal:
I using an amazon ec2 with Ubuntu 14.04 where I installed apache, php and of course phalcon.
I used this instructions to install phalcon:
sudo apt-add-repository ppa:phalcon/stable sudo apt-get update sudo apt-get install php5-phalcon
Seems the extension is installed here: /usr/lib/php5/20121212/phalcon.so but is no loaded if I run a php with:
<?php print_r(get_loaded_extensions()); ?>
The output is:
Array ( [0] => Core [1] => date [2] => ereg [3] => libxml [4] => openssl [5] => pcre [6] => zlib [7] => filter [8] => hash [9] => Reflection [10] => SPL [11] => session [12] => standard [13] => apache2handler [14] => PDO [15] => calendar [16] => ctype [17] => exif [18] => fileinfo [19] => ftp [20] => gettext [21] => iconv [22] => json [23] => Phar [24] => posix [25] => readline [26] => shmop [27] => sockets [28] => sysvmsg [29] => sysvsem [30] => sysvshm [31] => tokenizer [32] => mhash [33] => Zend OPcache )
I already added the 30-phalcon.ini on /etc/php/5.6/apache2/conf.d but seems not work either.
My set up: Ubuntu 14.04, Apache2, PHP 5.6
Thank you for your help in advance.