I apologise if it's trivial, but the phalcon.so 3.3.2 extension is shown as present in a command line phpinfo(), but is absent in the web phpinfo().. ?!? WHY ?
Any project perfectly created with phalcon tools 3.2.12 does not run in the apache server which complains with "I don't found Phalcon\Loader, Phalcon\Config" and so on.. Worst, the extensions is absent in a web phpinfo()
The site is created as a simple project with phalcon tools version 3.2.12, this one : phalcon tools : PHP Version: 7.0.25-0ubuntu0.16.04.1 | PHP SAPI: cli | PHP Bin: /usr/bin/php7.0 | PHP Extension Dir: /usr/lib/php/20151012 | PHP Bin Dir: /usr/bin | Loaded PHP config: /etc/php/7.0/cli/php.ini | Versions: | Phalcon DevTools Version: 3.2.12 | Phalcon Version: 3.3.2 | AdminLTE Version: 2.3.6
The apache server has an extension "phalcon.so" build by cloning the last github, build the .install.sh file etc. To verify the presence of the extension, a command line php -r 'phpinfo();' or php -r 'print_r(get_loaded_extensions());'
shows THE EXTENSION PRESENT as this :
phalcon
Web framework delivered as a C-extension for PHP phalcon => enabled Author => Phalcon Team and contributors Version => 3.3.2 Build Date => Mar 9 2018 20:00:07 Powered by Zephir => Version 0.10.7-2917ebe8ae etc..
but if I use the same phpinfo() in a webssite <?php phpinfo()
the extension disapears.. and I agree with this last verdict..
any idea, Phalconists ?