0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Phalconインストール後、PHP起動時エラー(phalcon.so: undefined symbol: output_globals in Unknown on line 0)でる時の回避方法

Last updated at Posted at 2013-12-11

以下のエラーが出た場合

phalcon.so: undefined symbol: output_globals in Unknown on line 0

※以下は全てルートでやってます

cd cphalcon/build/64bits
make clean
phpize --clean
find / -name phpize
/path/to/phpize
find / -name php-config
./configure --with-php-config=/path/to/php-config
make
make install

インストール成功すると、phalcon.soが生成され、
生成場所も表示されるので、
そのパスをphp.iniに

extension=/path/to/phalcon.so

と追記して、Apache再起動する。

/path/to/php -r "phpinfo();" | grep phalcon

で確認してインストールされてればOK!!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?