PHP cannot load shared libraries

后端 未结 1 837
伪装坚强ぢ
伪装坚强ぢ 2020-12-06 23:20

I\'m new to posting on this forum. Hopefully I don\'t make any social mistakes here.

I have:

  1. Linux system (64 bit)
  2. php compiled and installed
相关标签:
1条回答
  • 2020-12-07 00:03

    The PHP extensions are not compiled for this version of your PHP.

    Same for missing symbols, because not linked against the correct PHP version.

    Example from your errors: mcrypt

    • Module compiled with module API=20090626
    • PHP compiled with module API=20131226
    • These options need to match

    Solution: Update the PHP extensions using your package management system to be in sync with PHP or compile them manually using PHP, the SDK and the extensions you want.

    You find the Mongo Extension here: http://pecl.php.net/package/mongo

    0 讨论(0)
提交回复
热议问题