0

While upgrading php from php.5.3.25 to php5.6.7. got the below errors:

PHP Warning:  PHP Startup: Unable to load dynamic library '/opt/applications/php/lib/php/extensions/no-debug-non-zts-20131226/memcache.so' - /opt/applications/php/lib/php/extensions/no-debug-non-zts-20131226/memcache.so: cannot open shared object file: No such file or directory in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/opt/applications/php/lib/php/extensions/no-debug-non-zts-20131226/ffmpeg.so' - /opt/applications/php/lib/php/extensions/no-debug-non-zts-20131226/ffmpeg.so: cannot open shared object file: No such file or directory in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/opt/applications/php/lib/php/extensions/no-debug-non-zts-20131226/mcrypt.so' - /opt/applications/php/lib/php/extensions/no-debug-non-zts-20131226/mcrypt.so: cannot open shared object file: No such file or directory in Unknown on line 0
Code Lღver
  • 15,573
  • 16
  • 56
  • 75
uday8486
  • 1,203
  • 2
  • 13
  • 22

1 Answers1

0

The error is because you are trying to load those extensions which are not installed.Try this for installation in Ubuntu

sudo apt-get install memcached
sudo apt-get install mcrypt
sudo apt-get install mysql

FOR MORE REFERENCE

Community
  • 1
  • 1
Priyank
  • 3,778
  • 3
  • 29
  • 48
  • I am using RHEL 5.10. I tried using the sudo app-get, but this does not work. Do I need to install the these extension separately? Secondly I am not able to find any entry made in the php.ini file where it is written to get the extensions from the no-debug-non-zts-20131226 directory. There is one more directory no-debug-non-zts-20001296 which has the .so files for the above extensions. – uday8486 Apr 06 '15 at 04:49