arjilm
arjilm

Reputation: 81

Module 'phalcon' already loaded in Unknown on line 0

I've installed Phalcon and Phalcon devtool in php7.0, when I type 'Phalcon help' I got a warning message:

PHP Warning:  Module 'phalcon' already loaded in Unknown on line 0

I've tried to add 'extension = phalcon.so' in the php.ini file, but I get an error message:

PHP Warning:  Module 'phalcon' already loaded in Unknown on line 0
PHP Warning:  Module 'phalcon' already loaded in Unknown on line 0
PHP Fatal error:  Class 'jsonserializable' not found in Unknown on line 0
Segmentation fault (core dumped)

I would be appreciate it, if you help me

Upvotes: 0

Views: 3069

Answers (2)

Zulyantara
Zulyantara

Reputation: 73

If you use Ubuntu 18.04, check in /etc/php/7.0/apache2/conf.d/

Upvotes: 0

Juri
Juri

Reputation: 1369

Remove not needed extension = phalcon.so. Load phalcon AFTER json.so

Upvotes: 1

Related Questions