Hi there,
I installed PHP 7.3 ZTS like this documentation says:
https://stackoverflow.com/questions/34969325/how-to-install-php7-zts-pthreads-on-ubuntu-14-04
After that, I installed phalcon like this:
git clone git://github.com/phalcon/cphalcon.git
cd cphalcon/build
sudo ./install
Then I manually copied the created "phalcon.so" file to my shared extension folder:
/etc/php7/lib/php/extensions/debug-zts-20170718/
I restartet the server. When I run "php --version" now, I get the following output:
PHP Warning: PHP Startup: Unable to load dynamic library 'phalcon.so' (tried: /etc/php7/lib/php/extensions/debug-zts-20170718/phalcon.so (/etc/php7/lib/php/extensions/debug-zts-20170718/phalcon.so: undefined symbol: compiler_globals), /etc/php7/lib/php/extensions/debug-zts-20170718/phalcon.so.so (/etc/php7/lib/php/extensions/debug-zts-20170718/phalcon.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
PHP 7.3.0-dev (cli) (built: Nov 24 2017 06:53:57) ( ZTS DEBUG )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.3.0-dev, Copyright (c) 1998-2017 Zend Technologies
Do anybody know what I did wrong?
Thanks a lot!
Best