hi, I try to follow the official installation guide. I launch a bitnami LAMP virtual machine on Amazon AWS (ubuntu 12 kernel, php 5.4.24). I do have gcc and git. I did: 1. sudo apt-get install php5-dev libpcre3-dev gcc make php5-mysql 2. git clone --depth=1 git://github.com/phalcon/cphalcon.git cd cphalcon/build sudo ./install
- create a file 30-phalcon.ini under /etc/php.d/, with content: extension=phalcon.so
- restart web server by: sudo /opt/bitnami/ctlscript.sh restart apache
Then I tried a php file simply echo phpinfo(); I saw PHP Version 5.4.24, but no Phalcon in the extensions.
Second, I tried: 5. cd cphalon/build sudo ./install 64bits 6. cd cphalon/build/64bits export CFLAGS="-O2 --fvisibility=hidden" ./configure --enable-phalcon make && sudo make install
Then restart apache same as above, but it won't work either. Any hint? Any trouble shooting procedures?